mirror of
https://github.com/PaiGramTeam/python-genshin-artifact.git
synced 2024-11-22 06:57:55 +00:00
159 lines
4.4 KiB
Python
159 lines
4.4 KiB
Python
from typing import Dict
|
|
|
|
weapon_name_map: Dict[int, str] = {
|
|
11101: "DullBlade",
|
|
11201: "SilverSword",
|
|
11301: "CoolSteel",
|
|
11302: "HarbingerOfDawn",
|
|
11303: "TravelerSHandySword",
|
|
11305: "FilletBlade",
|
|
11306: "SkyriderSword",
|
|
11401: "FavoniusSword",
|
|
11402: "TheFlute",
|
|
11403: "SacrificialSword",
|
|
11404: "RoyalLongsword",
|
|
11405: "LionSRoar",
|
|
11406: "PrototypeRancour",
|
|
11407: "IronSting",
|
|
11408: "BlackcliffLongsword",
|
|
11409: "TheBlackSword",
|
|
11410: "TheAlleyFlash",
|
|
11412: "SwordOfDescension",
|
|
11413: "FesteringDesire",
|
|
11414: "AmenomaKageuchi",
|
|
11415: "CinnabarSpindle",
|
|
11416: "KagotsurubeIsshin",
|
|
11417: "SapwoodBlade",
|
|
11418: "XiphosMoonlight",
|
|
11422: "ToukabouShigure",
|
|
11501: "AquilaFavonia",
|
|
11502: "SkywardBlade",
|
|
11503: "Freedom-Sworn",
|
|
11504: "SummitShaper",
|
|
11505: "PrimordialJadeCutter",
|
|
11509: "MistsplitterReforged",
|
|
11510: "HaranGeppakuFutsu",
|
|
11511: "KeyOfKhaj-Nisut",
|
|
11512: "LightOfFoliarIncision",
|
|
12101: "WasterGreatsword",
|
|
12201: "OldMercSPal",
|
|
12301: "FerrousShadow",
|
|
12302: "BloodtaintedGreatsword",
|
|
12303: "WhiteIronGreatsword",
|
|
12305: "DebateClub",
|
|
12306: "SkyriderGreatsword",
|
|
12401: "FavoniusGreatsword",
|
|
12402: "TheBell",
|
|
12403: "SacrificialGreatsword",
|
|
12404: "RoyalGreatsword",
|
|
12405: "Rainslasher",
|
|
12406: "PrototypeArchaic",
|
|
12407: "Whiteblind",
|
|
12408: "BlackcliffSlasher",
|
|
12409: "SerpentSpine",
|
|
12410: "LithicBlade",
|
|
12411: "Snow-TombedStarsilver",
|
|
12412: "LuxuriousSea-Lord",
|
|
12414: "KatsuragikiriNagamasa",
|
|
12415: "MakhairaAquamarine",
|
|
12416: "Akuoumaru",
|
|
12417: "ForestRegalia",
|
|
12418: "MailedFlower",
|
|
12501: "SkywardPride",
|
|
12502: "WolfSGravestone",
|
|
12503: "SongOfBrokenPines",
|
|
12504: "TheUnforged",
|
|
12510: "RedhornStonethresher",
|
|
12511: "BeaconOfTheReedSea",
|
|
13101: "BeginnerSProtector",
|
|
13201: "IronPoint",
|
|
13301: "WhiteTassel",
|
|
13302: "Halberd",
|
|
13303: "BlackTassel",
|
|
13401: "DragonSBane",
|
|
13402: "PrototypeStarglitter",
|
|
13403: "CrescentPike",
|
|
13404: "BlackcliffPole",
|
|
13405: "Deathmatch",
|
|
13406: "LithicSpear",
|
|
13407: "FavoniusLance",
|
|
13408: "RoyalSpear",
|
|
13409: "DragonspineSpear",
|
|
13414: "KitainCrossSpear",
|
|
13415: '"TheCatch"',
|
|
13416: "WavebreakerSFin",
|
|
13417: "Moonpiercer",
|
|
13419: "MissiveWindspear",
|
|
13501: "StaffOfHoma",
|
|
13502: "SkywardSpine",
|
|
13504: "VortexVanquisher",
|
|
13505: "PrimordialJadeWinged-Spear",
|
|
13507: "CalamityQueller",
|
|
13509: "EngulfingLightning",
|
|
13511: "StaffOfTheScarletSands",
|
|
14101: "ApprenticeSNotes",
|
|
14201: "PocketGrimoire",
|
|
14301: "MagicGuide",
|
|
14302: "ThrillingTalesOfDragonSlayers",
|
|
14303: "OtherworldlyStory",
|
|
14304: "EmeraldOrb",
|
|
14305: "TwinNephrite",
|
|
14401: "FavoniusCodex",
|
|
14402: "TheWidsith",
|
|
14403: "SacrificialFragments",
|
|
14404: "RoyalGrimoire",
|
|
14405: "SolarPearl",
|
|
14406: "PrototypeAmber",
|
|
14407: "MappaMare",
|
|
14408: "BlackcliffAgate",
|
|
14409: "EyeOfPerception",
|
|
14410: "WineAndSong",
|
|
14412: "Frostbearer",
|
|
14413: "DodocoTales",
|
|
14414: "HakushinRing",
|
|
14415: "OathswornEye",
|
|
14416: "WanderingEvenstar",
|
|
14417: "FruitOfFulfillment",
|
|
14501: "SkywardAtlas",
|
|
14502: "LostPrayerToTheSacredWinds",
|
|
14504: "MemoryOfDust",
|
|
14505: "JadefallSSplendor",
|
|
14506: "EverlastingMoonglow",
|
|
14509: "KaguraSVerity",
|
|
14511: "AThousandFloatingDreams",
|
|
14512: "TulaytullahSRemembrance",
|
|
15101: "HunterSBow",
|
|
15201: "SeasonedHunterSBow",
|
|
15301: "RavenBow",
|
|
15302: "SharpshooterSOath",
|
|
15303: "RecurveBow",
|
|
15304: "Slingshot",
|
|
15305: "Messenger",
|
|
15401: "FavoniusWarbow",
|
|
15402: "TheStringless",
|
|
15403: "SacrificialBow",
|
|
15404: "RoyalBow",
|
|
15405: "Rust",
|
|
15406: "PrototypeCrescent",
|
|
15407: "CompoundBow",
|
|
15408: "BlackcliffWarbow",
|
|
15409: "TheViridescentHunt",
|
|
15410: "AlleyHunter",
|
|
15411: "FadingTwilight",
|
|
15412: "MitternachtsWaltz",
|
|
15413: "WindblumeOde",
|
|
15414: "Hamayumi",
|
|
15415: "Predator",
|
|
15416: "MouunSMoon",
|
|
15417: "KingSSquire",
|
|
15418: "EndOfTheLine",
|
|
15419: "IbisPiercer",
|
|
15501: "SkywardHarp",
|
|
15502: "AmosBow",
|
|
15503: "ElegyForTheEnd",
|
|
15507: "PolarStar",
|
|
15508: "AquaSimulacra",
|
|
15509: "ThunderingPulse",
|
|
15511: "HunterSPath",
|
|
}
|