├── .gitignore ├── LICENSE ├── README.md ├── auto-mod.py ├── create-mods.sh ├── mods ├── community_games.py ├── duplicate_techs.py ├── exploding_kings.py ├── exploding_relic_monks.py ├── exploding_villagers.py ├── flying_dutchman.py ├── ids.py ├── kidnap.py ├── matryoshka.py ├── no_wall.py ├── nomadking.py ├── pocket_horse.py ├── random_cost.py ├── rewarding_snipes.py ├── teamwork.py └── util.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeEngineers/auto-mods/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeEngineers/auto-mods/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeEngineers/auto-mods/HEAD/README.md -------------------------------------------------------------------------------- /auto-mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeEngineers/auto-mods/HEAD/auto-mod.py -------------------------------------------------------------------------------- /create-mods.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeEngineers/auto-mods/HEAD/create-mods.sh -------------------------------------------------------------------------------- /mods/community_games.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeEngineers/auto-mods/HEAD/mods/community_games.py -------------------------------------------------------------------------------- /mods/duplicate_techs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeEngineers/auto-mods/HEAD/mods/duplicate_techs.py -------------------------------------------------------------------------------- /mods/exploding_kings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeEngineers/auto-mods/HEAD/mods/exploding_kings.py -------------------------------------------------------------------------------- /mods/exploding_relic_monks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeEngineers/auto-mods/HEAD/mods/exploding_relic_monks.py -------------------------------------------------------------------------------- /mods/exploding_villagers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeEngineers/auto-mods/HEAD/mods/exploding_villagers.py -------------------------------------------------------------------------------- /mods/flying_dutchman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeEngineers/auto-mods/HEAD/mods/flying_dutchman.py -------------------------------------------------------------------------------- /mods/ids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeEngineers/auto-mods/HEAD/mods/ids.py -------------------------------------------------------------------------------- /mods/kidnap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeEngineers/auto-mods/HEAD/mods/kidnap.py -------------------------------------------------------------------------------- /mods/matryoshka.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeEngineers/auto-mods/HEAD/mods/matryoshka.py -------------------------------------------------------------------------------- /mods/no_wall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeEngineers/auto-mods/HEAD/mods/no_wall.py -------------------------------------------------------------------------------- /mods/nomadking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeEngineers/auto-mods/HEAD/mods/nomadking.py -------------------------------------------------------------------------------- /mods/pocket_horse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeEngineers/auto-mods/HEAD/mods/pocket_horse.py -------------------------------------------------------------------------------- /mods/random_cost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeEngineers/auto-mods/HEAD/mods/random_cost.py -------------------------------------------------------------------------------- /mods/rewarding_snipes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeEngineers/auto-mods/HEAD/mods/rewarding_snipes.py -------------------------------------------------------------------------------- /mods/teamwork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeEngineers/auto-mods/HEAD/mods/teamwork.py -------------------------------------------------------------------------------- /mods/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiegeEngineers/auto-mods/HEAD/mods/util.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | genieutils-py 2 | --------------------------------------------------------------------------------