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
|
import json
import requests
import os
outputJson = {}
weapons = set()
armor = set()
rarities = set()
special = set()
armorToID = {}
children = {}
maxValues = {}
itemToXp = {}
armorSets = {}
mappedIds = {}
def fetchJson(apiUrl):
try:
response = requests.get(apiUrl)
response.raise_for_status()
return response.json()
except requests.RequestException as e:
raise requests.RequestException(f"Error fetching data from {apiUrl}: {e}")
def processMuseumData(internalName, data):
itemType = data.get('type')
if 'parent' in data:
parentData = data['parent']
if parentData:
for parent in parentData:
children[parentData[parent]] = parent
if 'mapped_item_ids' in data:
for mappedId in data['mapped_item_ids']:
mappedIds[mappedId] = internalName
if itemType == 'ARMOR_SETS':
donationXpInfo = data.get('armor_set_donation_xp', {})
for armorSet in donationXpInfo:
itemToXp[armorSet] = donationXpInfo[armorSet]
armor.add(armorSet)
addPieceToSet(internalName, armorSet)
else:
donationXp = data.get('donation_xp', 0)
itemToXp[internalName] = donationXp
if itemType == 'WEAPONS':
weapons.add(internalName)
elif itemType == 'RARITIES':
rarities.add(internalName)
def addPieceToSet(piece, setName):
if setName not in armorSets:
armorSets[setName] = set()
armorSets[setName].add(piece)
priorityExceptions = {
"PERFECT_TIER_12": "PERFECT_HELMET_12",
"PERFECT_TIER_13": "PERFECT_HELMET_13",
"ARMOR_OF_THE_PACK": "HELMET_OF_THE_PACK",
"SALMON_NEW": "SALMON_HELMET_NEW",
}
setPriorityList = [
"HELMET",
"NECKLACE",
"HOOD",
"HAT",
"CHESTPLATE",
"CLOAK",
]
def findAppropriateId(setName):
if setName in priorityExceptions:
armorToID[setName] = priorityExceptions[setName]
return
partsMap = {}
for part in armorSets[setName]:
partsMap[part] = part.split("_")[-1]
priorityMap = {part: index for index, part in enumerate(setPriorityList)}
sortedParts = sorted(partsMap.keys(), key=lambda part: priorityMap.get(partsMap[part], float('inf')))
highestPriorityPart = sortedParts[0] if sortedParts else None
if highestPriorityPart and partsMap[highestPriorityPart] not in priorityMap:
print(f"Highest priority part for set {setName} was not found in setPriorityList. Parts: {partsMap}")
armorToID[setName] = highestPriorityPart
setExceptions= {
"FLAMEBREAKER": "FLAME_BREAKER",
"ENDER": "END",
"SEYMOUR_SPECIAL": "SEYMOUR",
"MAXOR": "SPEED_WITHER",
"NECRON": "POWER_WITHER",
"STORM": "WISE_WITHER",
"GOLDOR": "TANK_WITHER",
"SALMON": "SALMON_NEW",
"ARMOR_OF_GROWTH": "GROWTH",
"PROSPECTOR_OUTFIT": "MINER_OUTFIT",
"MINER": "TANK_MINER",
"PERFECT_ARMOR_TIER_XII": "PERFECT_TIER_12",
"PERFECT_ARMOR_TIER_XIII": "PERFECT_TIER_13",
"VANQUISHER": "VANQUISHED",
}
if __name__ == '__main__':
url = "https://api.hypixel.net/v2/resources/skyblock/items"
fetchedJson = fetchJson(url)
items = fetchedJson['items']
for item in items:
itemId = item['id']
if 'museum' in item:
special.add(itemId)
if 'museum_data' in item:
processMuseumData(itemId, item['museum_data'])
for armorSet in armorSets:
findAppropriateId(armorSet)
maxValues['weapons'] = len(weapons)
maxValues['armor'] = len(armor)
maxValues['rarities'] = len(rarities)
maxValues['special'] = 48
maxValues['total'] = maxValues['weapons'] + maxValues['armor'] + maxValues['rarities']
outputJson = {
"weapons": sorted(list(weapons), key=lambda item: (itemToXp.get(item, 0), item)),
"armor": sorted(list(armor), key=lambda item: (itemToXp.get(item, 0), item)),
"rarities": sorted(list(rarities), key=lambda item: (itemToXp.get(item, 0), item)),
"special": sorted(list(special)),
"armor_to_id": dict(sorted(armorToID.items())),
"children": dict(sorted(children.items())),
"max_values": maxValues,
"itemToXp": dict(sorted(itemToXp.items())),
"mapped_ids": dict(sorted(mappedIds.items())),
"sets_to_items": {k: sorted(v) for k, v in sorted(armorSets.items())},
"set_exceptions": setExceptions,
}
os.makedirs(os.path.dirname("constants/museum.json"), exist_ok=True)
with open("constants/museum.json", "w") as json_file:
json.dump(outputJson, json_file, indent=2)
print(f"Saved {maxValues['total']} items to museum.json")
|