├── README.md ├── addons ├── BattleEssential.py ├── CharsEssential.py ├── JT82.py ├── __init__.py ├── allChars.py ├── fakeGacha.py ├── gachaSimulation.py ├── graduateChars.py ├── moreChars.py ├── unlockSkins.py └── userStatus.py ├── capturedData ├── FriendAssest.txt ├── battleFinish.txt └── crisisBattle.txt ├── data ├── arkhack_data.json ├── arkhack_pool.json ├── arkhack_troop.json ├── character_table.json └── skin_table.json ├── dataProcess.py ├── frida_hooks └── keyivhook_1280.js ├── main.py ├── model ├── __init__.py └── troopBuilder.py ├── script └── allCharPlus.py └── troopEditor.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aynakeya/Arknights-Dolos/HEAD/README.md -------------------------------------------------------------------------------- /addons/BattleEssential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aynakeya/Arknights-Dolos/HEAD/addons/BattleEssential.py -------------------------------------------------------------------------------- /addons/CharsEssential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aynakeya/Arknights-Dolos/HEAD/addons/CharsEssential.py -------------------------------------------------------------------------------- /addons/JT82.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aynakeya/Arknights-Dolos/HEAD/addons/JT82.py -------------------------------------------------------------------------------- /addons/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aynakeya/Arknights-Dolos/HEAD/addons/__init__.py -------------------------------------------------------------------------------- /addons/allChars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aynakeya/Arknights-Dolos/HEAD/addons/allChars.py -------------------------------------------------------------------------------- /addons/fakeGacha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aynakeya/Arknights-Dolos/HEAD/addons/fakeGacha.py -------------------------------------------------------------------------------- /addons/gachaSimulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aynakeya/Arknights-Dolos/HEAD/addons/gachaSimulation.py -------------------------------------------------------------------------------- /addons/graduateChars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aynakeya/Arknights-Dolos/HEAD/addons/graduateChars.py -------------------------------------------------------------------------------- /addons/moreChars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aynakeya/Arknights-Dolos/HEAD/addons/moreChars.py -------------------------------------------------------------------------------- /addons/unlockSkins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aynakeya/Arknights-Dolos/HEAD/addons/unlockSkins.py -------------------------------------------------------------------------------- /addons/userStatus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aynakeya/Arknights-Dolos/HEAD/addons/userStatus.py -------------------------------------------------------------------------------- /capturedData/FriendAssest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aynakeya/Arknights-Dolos/HEAD/capturedData/FriendAssest.txt -------------------------------------------------------------------------------- /capturedData/battleFinish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aynakeya/Arknights-Dolos/HEAD/capturedData/battleFinish.txt -------------------------------------------------------------------------------- /capturedData/crisisBattle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aynakeya/Arknights-Dolos/HEAD/capturedData/crisisBattle.txt -------------------------------------------------------------------------------- /data/arkhack_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aynakeya/Arknights-Dolos/HEAD/data/arkhack_data.json -------------------------------------------------------------------------------- /data/arkhack_pool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aynakeya/Arknights-Dolos/HEAD/data/arkhack_pool.json -------------------------------------------------------------------------------- /data/arkhack_troop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aynakeya/Arknights-Dolos/HEAD/data/arkhack_troop.json -------------------------------------------------------------------------------- /data/character_table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aynakeya/Arknights-Dolos/HEAD/data/character_table.json -------------------------------------------------------------------------------- /data/skin_table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aynakeya/Arknights-Dolos/HEAD/data/skin_table.json -------------------------------------------------------------------------------- /dataProcess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aynakeya/Arknights-Dolos/HEAD/dataProcess.py -------------------------------------------------------------------------------- /frida_hooks/keyivhook_1280.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aynakeya/Arknights-Dolos/HEAD/frida_hooks/keyivhook_1280.js -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aynakeya/Arknights-Dolos/HEAD/main.py -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/troopBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aynakeya/Arknights-Dolos/HEAD/model/troopBuilder.py -------------------------------------------------------------------------------- /script/allCharPlus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aynakeya/Arknights-Dolos/HEAD/script/allCharPlus.py -------------------------------------------------------------------------------- /troopEditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aynakeya/Arknights-Dolos/HEAD/troopEditor.py --------------------------------------------------------------------------------