mirror of
https://github.com/PaiGramTeam/python-genshin-artifact.git
synced 2024-11-16 12:51:26 +00:00
396c150cf6
Co-authored-by: kotoriのねこ <minamiktr@outlook.com>
62 lines
1.6 KiB
Python
62 lines
1.6 KiB
Python
from typing import Dict, Final
|
|
|
|
__version__: Final[str] = "4.1"
|
|
|
|
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: "OceanHuedClam",
|
|
15023: "VermillionHereafter",
|
|
15024: "EchoesOfAnOffering",
|
|
15025: "DeepwoodMemories",
|
|
15026: "GildedDreams",
|
|
15027: "DesertPavilionChronicle",
|
|
15028: "FlowerOfParadiseLost",
|
|
15029: "NymphsDream",
|
|
15030: "VourukashasGlow",
|
|
15031: "MarechausseeHunter",
|
|
15032: "GoldenTroupe",
|
|
}
|