├── .gitattributes ├── .gitignore ├── PythonScripts ├── 7day-signin.py ├── _FileUpload.py ├── _SharecfgLookup.py ├── _UpdateAugmentConverter.py ├── _UpdateEquipConverter.py ├── _UpdateEquipWikidata.py ├── _UpdateShipsConverter.py ├── _UpdateSkinsWikidata.py ├── augment.py ├── data │ └── static │ │ ├── item_name_convert.json │ │ ├── settings_default.toml │ │ └── shipid_overrides.json ├── equip.py ├── equipskin.py ├── furniture.py ├── lib │ ├── Constants.py │ ├── Utility.py │ ├── WikiConstants.py │ ├── WikiHelper.py │ ├── __init__.py │ ├── api.py │ ├── apiclasses.py │ ├── apimodules.py │ ├── converter │ │ ├── __init__.py │ │ ├── augments.py │ │ ├── augments_updater.py │ │ ├── equips.py │ │ ├── equips_updater.py │ │ ├── ships.py │ │ ├── ships_updater.py │ │ ├── skins.py │ │ └── skins_updater.py │ ├── settings.py │ └── sharecfgmodules.py ├── map.py ├── milestone.py ├── quotes.py ├── ship.py ├── shop.py ├── skins.py ├── story.py └── templates │ ├── Equipment.json │ ├── EventShop.json │ ├── Juustagram.json │ ├── Map.json │ ├── Mission.json │ ├── MissionDouble.json │ ├── Ship.json │ ├── ShipQuote.json │ ├── ShipQuoteEN.json │ ├── ShipSkin.json │ ├── ShipSkin0.json │ ├── Story.json │ └── Template.json ├── README.md ├── lua_convert.py ├── lua_converter.py ├── lua_converter_v2.py ├── serializer.lua └── serializer2.lua /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | .vscode 3 | Src* 4 | -------------------------------------------------------------------------------- /PythonScripts/7day-signin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/7day-signin.py -------------------------------------------------------------------------------- /PythonScripts/_FileUpload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/_FileUpload.py -------------------------------------------------------------------------------- /PythonScripts/_SharecfgLookup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/_SharecfgLookup.py -------------------------------------------------------------------------------- /PythonScripts/_UpdateAugmentConverter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/_UpdateAugmentConverter.py -------------------------------------------------------------------------------- /PythonScripts/_UpdateEquipConverter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/_UpdateEquipConverter.py -------------------------------------------------------------------------------- /PythonScripts/_UpdateEquipWikidata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/_UpdateEquipWikidata.py -------------------------------------------------------------------------------- /PythonScripts/_UpdateShipsConverter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/_UpdateShipsConverter.py -------------------------------------------------------------------------------- /PythonScripts/_UpdateSkinsWikidata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/_UpdateSkinsWikidata.py -------------------------------------------------------------------------------- /PythonScripts/augment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/augment.py -------------------------------------------------------------------------------- /PythonScripts/data/static/item_name_convert.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/data/static/item_name_convert.json -------------------------------------------------------------------------------- /PythonScripts/data/static/settings_default.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/data/static/settings_default.toml -------------------------------------------------------------------------------- /PythonScripts/data/static/shipid_overrides.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/data/static/shipid_overrides.json -------------------------------------------------------------------------------- /PythonScripts/equip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/equip.py -------------------------------------------------------------------------------- /PythonScripts/equipskin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/equipskin.py -------------------------------------------------------------------------------- /PythonScripts/furniture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/furniture.py -------------------------------------------------------------------------------- /PythonScripts/lib/Constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/lib/Constants.py -------------------------------------------------------------------------------- /PythonScripts/lib/Utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/lib/Utility.py -------------------------------------------------------------------------------- /PythonScripts/lib/WikiConstants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/lib/WikiConstants.py -------------------------------------------------------------------------------- /PythonScripts/lib/WikiHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/lib/WikiHelper.py -------------------------------------------------------------------------------- /PythonScripts/lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/lib/__init__.py -------------------------------------------------------------------------------- /PythonScripts/lib/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/lib/api.py -------------------------------------------------------------------------------- /PythonScripts/lib/apiclasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/lib/apiclasses.py -------------------------------------------------------------------------------- /PythonScripts/lib/apimodules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/lib/apimodules.py -------------------------------------------------------------------------------- /PythonScripts/lib/converter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PythonScripts/lib/converter/augments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/lib/converter/augments.py -------------------------------------------------------------------------------- /PythonScripts/lib/converter/augments_updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/lib/converter/augments_updater.py -------------------------------------------------------------------------------- /PythonScripts/lib/converter/equips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/lib/converter/equips.py -------------------------------------------------------------------------------- /PythonScripts/lib/converter/equips_updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/lib/converter/equips_updater.py -------------------------------------------------------------------------------- /PythonScripts/lib/converter/ships.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/lib/converter/ships.py -------------------------------------------------------------------------------- /PythonScripts/lib/converter/ships_updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/lib/converter/ships_updater.py -------------------------------------------------------------------------------- /PythonScripts/lib/converter/skins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/lib/converter/skins.py -------------------------------------------------------------------------------- /PythonScripts/lib/converter/skins_updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/lib/converter/skins_updater.py -------------------------------------------------------------------------------- /PythonScripts/lib/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/lib/settings.py -------------------------------------------------------------------------------- /PythonScripts/lib/sharecfgmodules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/lib/sharecfgmodules.py -------------------------------------------------------------------------------- /PythonScripts/map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/map.py -------------------------------------------------------------------------------- /PythonScripts/milestone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/milestone.py -------------------------------------------------------------------------------- /PythonScripts/quotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/quotes.py -------------------------------------------------------------------------------- /PythonScripts/ship.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/ship.py -------------------------------------------------------------------------------- /PythonScripts/shop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/shop.py -------------------------------------------------------------------------------- /PythonScripts/skins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/skins.py -------------------------------------------------------------------------------- /PythonScripts/story.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/story.py -------------------------------------------------------------------------------- /PythonScripts/templates/Equipment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/templates/Equipment.json -------------------------------------------------------------------------------- /PythonScripts/templates/EventShop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/templates/EventShop.json -------------------------------------------------------------------------------- /PythonScripts/templates/Juustagram.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/templates/Juustagram.json -------------------------------------------------------------------------------- /PythonScripts/templates/Map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/templates/Map.json -------------------------------------------------------------------------------- /PythonScripts/templates/Mission.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/templates/Mission.json -------------------------------------------------------------------------------- /PythonScripts/templates/MissionDouble.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/templates/MissionDouble.json -------------------------------------------------------------------------------- /PythonScripts/templates/Ship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/templates/Ship.json -------------------------------------------------------------------------------- /PythonScripts/templates/ShipQuote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/templates/ShipQuote.json -------------------------------------------------------------------------------- /PythonScripts/templates/ShipQuoteEN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/templates/ShipQuoteEN.json -------------------------------------------------------------------------------- /PythonScripts/templates/ShipSkin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/templates/ShipSkin.json -------------------------------------------------------------------------------- /PythonScripts/templates/ShipSkin0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/templates/ShipSkin0.json -------------------------------------------------------------------------------- /PythonScripts/templates/Story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/templates/Story.json -------------------------------------------------------------------------------- /PythonScripts/templates/Template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/PythonScripts/templates/Template.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/README.md -------------------------------------------------------------------------------- /lua_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/lua_convert.py -------------------------------------------------------------------------------- /lua_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/lua_converter.py -------------------------------------------------------------------------------- /lua_converter_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/lua_converter_v2.py -------------------------------------------------------------------------------- /serializer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/serializer.lua -------------------------------------------------------------------------------- /serializer2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nobbyfix/AzurLaneTools/HEAD/serializer2.lua --------------------------------------------------------------------------------