| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <ui:UXML xmlns:ui="UnityEngine.UIElements" xmlns:uie="UnityEditor.UIElements" editor-extension-mode="False">
- <Style src="project://database/Assets/Resources/UI/Town/AdventurersGuildUI_Fixed.uss?fileID=7433441132597879392&guid=ca62cbec92fc7a242abcad3f897439c1&type=3#AdventurersGuildUI_Fixed" />
- <ui:VisualElement name="GuildContainer" class="guild-container">
- <ui:VisualElement name="GuildHeader" class="guild-header backgroundOpacity">
- <ui:Label text="⚔️ Adventurer's Guild" name="GuildTitle" class="guild-title" />
- <ui:Label text="Renown: 0" name="RenownLabel" class="renown-label" />
- <ui:Button text="✕" name="CloseButton" class="close-button" />
- </ui:VisualElement>
- <ui:VisualElement name="TabContainer" class="tab-container backgroundOpacity">
- <ui:Button text="Quest Board" name="QuestBoardTab" class="tab-button active-tab" />
- <ui:Button text="Active Quests" name="ActiveQuestsTab" class="tab-button" />
- <ui:Button text="Quest History" name="QuestHistoryTab" class="tab-button" />
- </ui:VisualElement>
- <ui:VisualElement name="QuestBoardPanel" class="content-panel backgroundOpacity">
- <ui:VisualElement name="QuestBoardHeader" class="panel-header">
- <ui:Label text="Available Quests" class="panel-title" />
- <ui:Button text="🔄 Refresh Board" name="RefreshBoardButton" class="refresh-button" />
- </ui:VisualElement>
- <ui:ScrollView name="QuestBoardList" class="quest-list">
- <ui:Label text="Loading quests..." class="placeholder-text" />
- </ui:ScrollView>
- </ui:VisualElement>
- <ui:VisualElement name="ActiveQuestsPanel" class="content-panel hidden backgroundOpacity">
- <ui:VisualElement name="ActiveQuestsHeader" class="panel-header">
- <ui:Label text="Your Active Quests" class="panel-title" />
- <ui:Label text="0/5 Quests" name="QuestCountLabel" class="quest-count" />
- </ui:VisualElement>
- <ui:ScrollView name="ActiveQuestsList" class="quest-list">
- <ui:Label text="No active quests." class="placeholder-text" />
- </ui:ScrollView>
- </ui:VisualElement>
- <ui:VisualElement name="QuestHistoryPanel" class="content-panel hidden backgroundOpacity">
- <ui:VisualElement name="HistoryHeader" class="panel-header">
- <ui:Label text="Quest History" class="panel-title" />
- <ui:Label text="Completed: 0 | Failed: 0" name="HistoryStatsLabel" class="history-stats" />
- </ui:VisualElement>
- <ui:ScrollView name="QuestHistoryList" class="quest-list">
- <ui:Label text="No completed quests yet." class="placeholder-text" />
- </ui:ScrollView>
- </ui:VisualElement>
- <ui:VisualElement name="QuestDetailsPanel" class="quest-details hidden backgroundOpacity">
- <ui:VisualElement name="DetailsHeader" class="details-header">
- <ui:Label text="Quest Details" name="DetailsTitle" class="details-title" />
- <ui:Button text="×" name="CloseDetailsButton" class="close-details-button" />
- </ui:VisualElement>
- <ui:ScrollView name="DetailsContent" class="details-content">
- <ui:Label text="Quest Title" name="QuestTitle" class="quest-title-large" />
- <ui:Label text="Difficulty: Normal" name="QuestDifficulty" class="quest-difficulty" />
- <ui:Label text="Time Limit: 5 days" name="QuestTimeLimit" class="quest-time-limit" />
- <ui:VisualElement name="DescriptionSection" class="details-section">
- <ui:Label text="Description" class="section-header" />
- <ui:Label text="Quest description goes here..." name="QuestDescription" class="quest-description" />
- </ui:VisualElement>
- <ui:VisualElement name="ObjectivesSection" class="details-section">
- <ui:Label text="Objectives" class="section-header" />
- <ui:VisualElement name="ObjectivesList" class="objectives-list" />
- </ui:VisualElement>
- <ui:VisualElement name="LocationSection" class="details-section">
- <ui:Label text="Location" class="section-header" />
- <ui:Label text="Target Area: Unknown" name="QuestLocation" class="quest-location" />
- <ui:Label text="Travel Time: ~2 hours" name="TravelTime" class="travel-time" />
- </ui:VisualElement>
- <ui:VisualElement name="RewardsSection" class="details-section">
- <ui:Label text="Rewards" class="section-header" />
- <ui:VisualElement name="RewardsList" class="rewards-list">
- <ui:Label text="💰 Gold: 0" name="GoldReward" class="reward-item" />
- <ui:Label text="⭐ Renown: +0" name="RenownReward" class="reward-item" />
- <ui:VisualElement name="ItemRewardsList" class="item-rewards" />
- </ui:VisualElement>
- </ui:VisualElement>
- <ui:VisualElement name="ActionButtons" class="action-buttons">
- <ui:Button text="Accept Quest" name="AcceptQuestButton" class="accept-button" />
- <ui:Button text="Abandon Quest" name="AbandonQuestButton" class="abandon-button hidden" />
- <ui:Button text="Track Quest" name="TrackQuestButton" class="track-button hidden" />
- </ui:VisualElement>
- </ui:ScrollView>
- </ui:VisualElement>
- <ui:VisualElement name="GuildFooter" class="guild-footer backgroundOpacity">
- <ui:Label text="Welcome to the Adventurer's Guild! Accept quests to gain renown and rewards." class="guild-message" />
- </ui:VisualElement>
- </ui:VisualElement>
- </ui:UXML>
|