├── .gitattributes └── More_Survivor_Stuff ├── itemgroups.json ├── items ├── armor.json ├── books.json ├── gun.json ├── gunmod.json ├── items.json ├── magazines.json └── melee.json ├── mapgen └── artisan.json ├── martialarts.json ├── modinfo.json ├── monsterdrops └── monstroustechnician.json ├── monsters ├── monsters.json └── speech.json ├── overmap ├── overmap_special │ └── specials.json └── overmap_terrain_artisan.json ├── recipes ├── armor.json ├── gun.json ├── gunmod.json ├── items.json ├── magazines.json └── melee.json ├── techniques.json └── tool_qualities.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnishoovy/More-Survivor-Stuff/HEAD/.gitattributes -------------------------------------------------------------------------------- /More_Survivor_Stuff/itemgroups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnishoovy/More-Survivor-Stuff/HEAD/More_Survivor_Stuff/itemgroups.json -------------------------------------------------------------------------------- /More_Survivor_Stuff/items/armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnishoovy/More-Survivor-Stuff/HEAD/More_Survivor_Stuff/items/armor.json -------------------------------------------------------------------------------- /More_Survivor_Stuff/items/books.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnishoovy/More-Survivor-Stuff/HEAD/More_Survivor_Stuff/items/books.json -------------------------------------------------------------------------------- /More_Survivor_Stuff/items/gun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnishoovy/More-Survivor-Stuff/HEAD/More_Survivor_Stuff/items/gun.json -------------------------------------------------------------------------------- /More_Survivor_Stuff/items/gunmod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnishoovy/More-Survivor-Stuff/HEAD/More_Survivor_Stuff/items/gunmod.json -------------------------------------------------------------------------------- /More_Survivor_Stuff/items/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnishoovy/More-Survivor-Stuff/HEAD/More_Survivor_Stuff/items/items.json -------------------------------------------------------------------------------- /More_Survivor_Stuff/items/magazines.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnishoovy/More-Survivor-Stuff/HEAD/More_Survivor_Stuff/items/magazines.json -------------------------------------------------------------------------------- /More_Survivor_Stuff/items/melee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnishoovy/More-Survivor-Stuff/HEAD/More_Survivor_Stuff/items/melee.json -------------------------------------------------------------------------------- /More_Survivor_Stuff/mapgen/artisan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnishoovy/More-Survivor-Stuff/HEAD/More_Survivor_Stuff/mapgen/artisan.json -------------------------------------------------------------------------------- /More_Survivor_Stuff/martialarts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnishoovy/More-Survivor-Stuff/HEAD/More_Survivor_Stuff/martialarts.json -------------------------------------------------------------------------------- /More_Survivor_Stuff/modinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnishoovy/More-Survivor-Stuff/HEAD/More_Survivor_Stuff/modinfo.json -------------------------------------------------------------------------------- /More_Survivor_Stuff/monsterdrops/monstroustechnician.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnishoovy/More-Survivor-Stuff/HEAD/More_Survivor_Stuff/monsterdrops/monstroustechnician.json -------------------------------------------------------------------------------- /More_Survivor_Stuff/monsters/monsters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnishoovy/More-Survivor-Stuff/HEAD/More_Survivor_Stuff/monsters/monsters.json -------------------------------------------------------------------------------- /More_Survivor_Stuff/monsters/speech.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnishoovy/More-Survivor-Stuff/HEAD/More_Survivor_Stuff/monsters/speech.json -------------------------------------------------------------------------------- /More_Survivor_Stuff/overmap/overmap_special/specials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnishoovy/More-Survivor-Stuff/HEAD/More_Survivor_Stuff/overmap/overmap_special/specials.json -------------------------------------------------------------------------------- /More_Survivor_Stuff/overmap/overmap_terrain_artisan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnishoovy/More-Survivor-Stuff/HEAD/More_Survivor_Stuff/overmap/overmap_terrain_artisan.json -------------------------------------------------------------------------------- /More_Survivor_Stuff/recipes/armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnishoovy/More-Survivor-Stuff/HEAD/More_Survivor_Stuff/recipes/armor.json -------------------------------------------------------------------------------- /More_Survivor_Stuff/recipes/gun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnishoovy/More-Survivor-Stuff/HEAD/More_Survivor_Stuff/recipes/gun.json -------------------------------------------------------------------------------- /More_Survivor_Stuff/recipes/gunmod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnishoovy/More-Survivor-Stuff/HEAD/More_Survivor_Stuff/recipes/gunmod.json -------------------------------------------------------------------------------- /More_Survivor_Stuff/recipes/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnishoovy/More-Survivor-Stuff/HEAD/More_Survivor_Stuff/recipes/items.json -------------------------------------------------------------------------------- /More_Survivor_Stuff/recipes/magazines.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnishoovy/More-Survivor-Stuff/HEAD/More_Survivor_Stuff/recipes/magazines.json -------------------------------------------------------------------------------- /More_Survivor_Stuff/recipes/melee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnishoovy/More-Survivor-Stuff/HEAD/More_Survivor_Stuff/recipes/melee.json -------------------------------------------------------------------------------- /More_Survivor_Stuff/techniques.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnishoovy/More-Survivor-Stuff/HEAD/More_Survivor_Stuff/techniques.json -------------------------------------------------------------------------------- /More_Survivor_Stuff/tool_qualities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pawnishoovy/More-Survivor-Stuff/HEAD/More_Survivor_Stuff/tool_qualities.json --------------------------------------------------------------------------------