python-genshin-artifact/python_genshin_artifact/enka/artifacts.py
2023-08-11 16:29:15 +08:00

58 lines
1.5 KiB
Python

from typing import Dict
equip_type_map: Dict[str, str] = {
"EQUIP_BRACER": "Flower",
"EQUIP_NECKLACE": "Feather",
"EQUIP_SHOES": "Sand",
"EQUIP_RING": "Goblet",
"EQUIP_DRESS": "Head",
}
artifacts_name_map: Dict[int, str] = {
10001: "ResolutionOfSojourner",
10002: "BraveHeart",
10003: "DefenderSWill",
10004: "TinyMiracle",
10005: "Berserker",
10006: "MartialArtist",
10007: "Instructor",
10008: "Gambler",
10009: "TheExile",
10010: "Adventurer",
10011: "LuckyDog",
10012: "Scholar",
10013: "TravelingDoctor",
14001: "BlizzardStrayer",
14002: "Thundersoother",
14003: "Lavawalker",
14004: "MaidenBeloved",
15001: "GladiatorSFinale",
15002: "ViridescentVenerer",
15003: "WandererSTroupe",
15005: "ThunderingFury",
15006: "CrimsonWitchOfFlames",
15007: "NoblesseOblige",
15008: "BloodstainedChivalry",
15009: "PrayersForIllumination",
15010: "PrayersForDestiny",
15011: "PrayersForWisdom",
15013: "PrayersToSpringtime",
15014: "ArchaicPetra",
15015: "RetracingBolide",
15016: "HeartOfDepth",
15017: "TenacityOfTheMillelith",
15018: "PaleFlame",
15019: "ShimenawasReminiscence",
15020: "EmblemOfSeveredFate",
15021: "HuskOfOpulentDreams",
15022: "Ocean-HuedClam",
15023: "VermillionHereafter",
15024: "EchoesOfAnOffering",
15025: "DeepwoodMemories",
15026: "GildedDreams",
15027: "DesertPavilionChronicle",
15028: "FlowerOfParadiseLost",
15029: "NymphSDream",
15030: "VourukashaSGlow",
}