1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 |
ZO_ANTIQUITY_UNKNOWN_ICON_TEXTURE = "EsoUI/Art/Icons/U26_Unknown_Antiquity_QuestionMark.dds"
ZO_DIGSITE_UNKNOWN_ICON_TEXTURE = "EsoUI/Art/Antiquities/digsite_unknown.dds"
ZO_DIGSITE_COMPLETE_ICON_TEXTURE = "EsoUI/Art/Antiquities/digsite_complete.dds"
ZO_LEAD_EXPIRATION_WARNING_DAYS = 7
ZO_SCRYABLE_ANTIQUITY_CATEGORY_ID = 0
ZO_SCRYABLE_ANTIQUITY_CATEGORY_DATA = g_scryableAntiquityCategoryData
g_scryableAntiquityCategoryData . GetGamepadIcon = function ( ) return "EsoUI/Art/TreeIcons/gamepad/GP_antiquities_indexIcon_scryable.dds" end
g_scryableAntiquityCategoryData . GetKeyboardIcons = function ( ) return "EsoUI/Art/TreeIcons/antiquities_indexIcon_scryable_UP.dds" , "EsoUI/Art/TreeIcons/antiquities_indexIcon_scryable_DOWN.dds" , "EsoUI/Art/TreeIcons/antiquities_indexIcon_scryable_OVER.dds" end
return object
end
end
if collectibleId == antiquarianGuildZoneCollectibleId or collectibleId == scryingToolCollectibleId then
end
end
if collectible : GetId ( ) == antiquarianGuildZoneCollectibleId or collectible : GetId ( ) == scryingToolCollectibleId then
return
end
end
end
end
end
end
end
end
if antiquarianGuildZoneCollectibleData then
local antiquarianGuildZoneCollectibleCategory = antiquarianGuildZoneCollectibleData : GetCategoryTypeDisplayName ( )
return zo_strformat ( SI_ANTIQUITY_GUILD_ZONE_LOCKED , antiquarianGuildZoneName , antiquarianGuildZoneCollectibleName , antiquarianGuildZoneCollectibleCategory )
end
end
end
if scryingSkillLineData then
return zo_strformat ( SI_ANTIQUITY_SCRYING_TOOL_LOCKED , scryingToolCollectibleName , scryingToolCollectibleCategory , scryingSkillLineName , antiquarianGuildCityName , antiquarianGuildZoneName )
end
return zo_strformat ( SI_ANTIQUITY_SCRYING_SKILL_LINE_MISSING , scryingSkillLineName , antiquarianGuildCityName , antiquarianGuildZoneName )
end
end
end
-- Global Helper Functions
if collectibleData then
end
end
if collectibleData then
end
end
return AreAntiquitySkillLinesDiscovered ( ) and ZO_IsScryingToolUnlocked ( ) and ZO_IsAntiquarianGuildUnlocked ( )
end
local antiquarianGuildZoneCollectibleData = ANTIQUITY_MANAGER : GetAntiquarianGuildZoneCollectibleData ( )
local antiquarianGuildZoneCollectibleCategoryType = antiquarianGuildZoneCollectibleData : GetCategoryType ( )
if antiquarianGuildZoneCollectibleCategoryType == COLLECTIBLE_CATEGORY_TYPE_CHAPTER then
else
local searchTerm = zo_strformat ( SI_CROWN_STORE_SEARCH_FORMAT_STRING , antiquarianGuildZoneCollectibleData : GetName ( ) )
end
end
end
end
if skillLineData then
local scryingPassiveSkillIndex = GetScryingPassiveSkillIndex ( SCRYING_PASSIVE_SKILL_ANTIQUARIAN_INSIGHT )
if skillData then
if skillRankData then
end
end
end
end
function ZO_LayoutAntiquityRewardTooltip_Keyboard ( antiquityOrSetData , control , anchorPoint , anchorPointRelativeTo , anchorOffsetX , anchorOffsetY )
ZO_Rewards_Shared_OnMouseEnter ( control , anchorPoint , anchorPointRelativeTo , anchorOffsetX , anchorOffsetY )
local addedPadding = false
if zoneName ~= "" then
if not addedPadding then
addedPadding = true
end
ItemTooltip : AddLine ( ZO_NORMAL_TEXT : Colorize ( zo_strformat ( SI_ANTIQUITY_TOOLTIP_ZONE , ZO_SELECTED_TEXT : Colorize ( zoneName ) ) ) , "ZoFontGameMedium" , ZO_NORMAL_TEXT : UnpackRGB ( ) )
end
if nearExpiration then
if not addedPadding then
addedPadding = true
end
ItemTooltip : AddLine ( ZO_NORMAL_TEXT : Colorize ( zo_strformat ( SI_ANTIQUITY_TOOLTIP_LEAD_EXPIRATION , ZO_SELECTED_TEXT : Colorize ( timeRemaining ) ) ) , "ZoFontGameMedium" , ZO_SELECTED_TEXT : UnpackRGB ( ) )
end
end
end
end
|