Repository containing the game data for the game Genshin Impact.
This repository is a work between Falzar and I. Use it for whatever you want as long as you don't put words in our mouth.
BinOutput had a lot of useless content manually stripped by me, which also includes unreleased content to prevent misinformation. If you feel something should be there and it isn't, please let me know.
Can't wait until a certain group of people tries to leech of this then beg for stuff like they already did to some of our members. :)
A collection of scripts to be used with the data from https://github.com/Dimbreath/GenshinData (huge thanks to them btw)
- Quests (Daily commissions and World Quests) and Chapters (Archon, Story and Event Quests) (.txt)
- Cooking recipes (.txt)
- Achievements (.txt)
- Characters (.json with textmap IDs)
- Weapons (.json with textmap IDs)
And more to come...
- Python 3.9+
- Python 3.9+ should be installed
- Download the data from https://github.com/Dimbreath/GenshinData and extract it in a data/ folder at the root of the project.
- The files structure should look like this :
GenshinScripts/ (main folder)
├── data/ (from Dimbreath/GenshinData)
├── ExcelBinOutput/
│ ├── _.json
│ ...
├── Readable/ (books and items descriptions)
│ ├── {lang}/...
│ ...
├── TextMap/
│ ├──text_.json
│ ...
├── res/ (folder containing the generated files)
├── utils/
│ ├── _.py
│ ...
├── main.py
└── README.md
main.py
can be used with the parameter--lang EN|FR|JA|....
to change the language of the files generated (with EN being the default language)main.py --lang EN --all
will generate all the files in English (--all
flag can only be used alone)
To extract specific files, it's possible to use the subcommands {achievement,chapter,weapon,recipe,quest,character}
followed by specific IDs :
achievement
requires an order ID of the achievement category (OrderId
inAchievementGoalExcelConfigData.json
)chapter
requires a chapter ID (Id
inChapterExcelConfigData.json
)weapon
requires a weapon ID (Id
inWeaponExcelConfigData.json
)recipe
only uses theall
argument, since all the recipes are written in a single filequest
requires a quest ID (Id
inMainQuestExcelConfigData.json
)character
requires a character ID (Id
inAvatarExcelConfigData.json
)
It's also possible to use the all
keyword to extract every possible files for a subcommand.
Complete example :
main.py --lang JA achievement 1 2 3 chapters 1001 weapon all
will generate the files in Japanese, for the achievements withOrderId
s 1, 2 and 3, the chapter with theId
1001 and files for every weapon.