mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-07-16 08:27:05 -05:00
78 lines
2.6 KiB
Python
78 lines
2.6 KiB
Python
import urllib.request, json
|
|
|
|
with open("lang_dict_EUen.json") as f:
|
|
lang_dict = json.load(f)
|
|
|
|
inverted_dict = {v: k for k, v in lang_dict.items()} # english -> internal
|
|
|
|
ability_jsons = [
|
|
"BombDamage_Reduction",
|
|
"BombDistance_Up",
|
|
"HumanMove_Up",
|
|
"InkRecovery_Up",
|
|
"JumpTime_Save",
|
|
"MainInk_Save",
|
|
"MarkingTime_Reduction",
|
|
"OpInkEffect_Reduction",
|
|
"RespawnSpecialGauge_Save",
|
|
"RespawnTime_Save",
|
|
"SpecialIncrease_Up",
|
|
"SpecialTime_Up",
|
|
"SquidMove_Up",
|
|
"SubInk_Save",
|
|
]
|
|
|
|
print_dict = {}
|
|
|
|
for code in ability_jsons:
|
|
with urllib.request.urlopen(
|
|
f"https://raw.githubusercontent.com/Leanny/leanny.github.io/master/data/Parameter/latest/Player/Player_Spec_{code}.json"
|
|
) as url:
|
|
data = json.loads(url.read().decode())
|
|
print_dict[lang_dict[code]] = data[code]
|
|
|
|
weapon_dict = {}
|
|
|
|
with urllib.request.urlopen(
|
|
"https://raw.githubusercontent.com/Leanny/leanny.github.io/master/data/Mush/latest/WeaponInfo_Main.json"
|
|
) as url:
|
|
data = json.loads(url.read().decode())
|
|
for weapon_obj in data:
|
|
weapon_dict[lang_dict[weapon_obj["Name"]].strip()] = weapon_obj
|
|
|
|
with urllib.request.urlopen(
|
|
"https://raw.githubusercontent.com/Leanny/leanny.github.io/master/data/Mush/latest/WeaponInfo_Sub.json"
|
|
) as url:
|
|
data = json.loads(url.read().decode())
|
|
for weapon_obj in data:
|
|
name = weapon_obj["Name"]
|
|
if (
|
|
name in lang_dict
|
|
and "Rival" not in name
|
|
and "LastBoss" not in name
|
|
and "VictoryClam" != name
|
|
and "Mission" not in name
|
|
):
|
|
normalized_name = name.replace("_", "")
|
|
if normalized_name == "TimerTrap":
|
|
normalized_name = "Trap"
|
|
elif normalized_name == "PoisonFog":
|
|
normalized_name = "BombPoisonFog"
|
|
elif normalized_name == "PointSensor":
|
|
normalized_name = "BombPointSensor"
|
|
elif normalized_name == "Flag":
|
|
normalized_name = "JumpBeacon"
|
|
with urllib.request.urlopen(
|
|
f"https://raw.githubusercontent.com/Leanny/leanny.github.io/master/data/Parameter/latest/WeaponBullet/{normalized_name}.json"
|
|
) as url2:
|
|
data2 = json.loads(url2.read().decode())
|
|
mInkConsume = data2["param"]["mInkConsume"]
|
|
weapon_obj["mInkConsume"] = mInkConsume
|
|
weapon_dict[lang_dict[weapon_obj["Name"]]] = weapon_obj
|
|
|
|
with open("ability_jsons_output/ability_data.json", "w") as fp:
|
|
json.dump(print_dict, fp)
|
|
|
|
with open("ability_jsons_output/weapon_data.json", "w") as fp:
|
|
json.dump(weapon_dict, fp)
|