@@ -96,6 +96,7 @@ type DecodedInventory struct {
9696type ProcessedItem struct {
9797 Item
9898 Texture string `json:"texture_path,omitempty"`
99+ TexturePack string `json:"texture_pack,omitempty"`
99100 DisplayName string `json:"display_name,omitempty"`
100101 Lore []string `json:"lore,omitempty"`
101102 Rarity string `json:"rarity,omitempty"`
@@ -106,6 +107,12 @@ type ProcessedItem struct {
106107 Id string `json:"id,omitempty"`
107108 IsInactive * bool `json:"isInactive,omitempty"`
108109 Shiny bool `json:"shiny,omitempty"`
110+ Wiki * WikipediaLinks `json:"wiki,omitempty"`
111+ }
112+
113+ type WikipediaLinks struct {
114+ Official string `json:"official,omitempty"`
115+ Fandom string `json:"fandom,omitempty"`
109116}
110117
111118type SkillToolsResult struct {
@@ -126,14 +133,16 @@ type EquipmentResult struct {
126133}
127134
128135type StrippedItem struct {
129- DisplayName string `json:"display_name,omitempty"`
130- Lore []string `json:"lore,omitempty"`
131- Rarity string `json:"rarity,omitempty"`
132- Recombobulated bool `json:"recombobulated,omitempty"`
133- ContainsItems []StrippedItem `json:"containsItems,omitempty"`
134- Source string `json:"source,omitempty"`
135- Texture string `json:"texture_path,omitempty"`
136- IsInactive * bool `json:"isInactive,omitempty"`
137- Count * int `json:"Count,omitempty"`
138- Shiny bool `json:"shiny,omitempty"`
136+ DisplayName string `json:"display_name,omitempty"`
137+ Lore []string `json:"lore,omitempty"`
138+ Rarity string `json:"rarity,omitempty"`
139+ Recombobulated bool `json:"recombobulated,omitempty"`
140+ ContainsItems []StrippedItem `json:"containsItems,omitempty"`
141+ Source string `json:"source,omitempty"`
142+ Texture string `json:"texture_path,omitempty"`
143+ IsInactive * bool `json:"isInactive,omitempty"`
144+ Count * int `json:"Count,omitempty"`
145+ Shiny bool `json:"shiny,omitempty"`
146+ Wiki * WikipediaLinks `json:"wiki,omitempty"`
147+ TexturePack string `json:"texture_pack,omitempty"`
139148}
0 commit comments