├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── adventure.py ├── alien.py ├── animal.py ├── architecture.py ├── corporation.py ├── faction.py ├── heresy.py ├── npc.py ├── planet.py ├── political_party.py ├── religion.py ├── room.py ├── tables ├── adventure.json ├── alien.json ├── animal.json ├── architecture.json ├── corporation.json ├── faction.json ├── heresy.json ├── npc.json ├── political_party.json ├── religion.json ├── room.json ├── trade.json └── world.json ├── trade.py └── world.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orffen/swn-py/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orffen/swn-py/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orffen/swn-py/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /adventure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orffen/swn-py/HEAD/adventure.py -------------------------------------------------------------------------------- /alien.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orffen/swn-py/HEAD/alien.py -------------------------------------------------------------------------------- /animal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orffen/swn-py/HEAD/animal.py -------------------------------------------------------------------------------- /architecture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orffen/swn-py/HEAD/architecture.py -------------------------------------------------------------------------------- /corporation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orffen/swn-py/HEAD/corporation.py -------------------------------------------------------------------------------- /faction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orffen/swn-py/HEAD/faction.py -------------------------------------------------------------------------------- /heresy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orffen/swn-py/HEAD/heresy.py -------------------------------------------------------------------------------- /npc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orffen/swn-py/HEAD/npc.py -------------------------------------------------------------------------------- /planet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orffen/swn-py/HEAD/planet.py -------------------------------------------------------------------------------- /political_party.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orffen/swn-py/HEAD/political_party.py -------------------------------------------------------------------------------- /religion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orffen/swn-py/HEAD/religion.py -------------------------------------------------------------------------------- /room.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orffen/swn-py/HEAD/room.py -------------------------------------------------------------------------------- /tables/adventure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orffen/swn-py/HEAD/tables/adventure.json -------------------------------------------------------------------------------- /tables/alien.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orffen/swn-py/HEAD/tables/alien.json -------------------------------------------------------------------------------- /tables/animal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orffen/swn-py/HEAD/tables/animal.json -------------------------------------------------------------------------------- /tables/architecture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orffen/swn-py/HEAD/tables/architecture.json -------------------------------------------------------------------------------- /tables/corporation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orffen/swn-py/HEAD/tables/corporation.json -------------------------------------------------------------------------------- /tables/faction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orffen/swn-py/HEAD/tables/faction.json -------------------------------------------------------------------------------- /tables/heresy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orffen/swn-py/HEAD/tables/heresy.json -------------------------------------------------------------------------------- /tables/npc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orffen/swn-py/HEAD/tables/npc.json -------------------------------------------------------------------------------- /tables/political_party.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orffen/swn-py/HEAD/tables/political_party.json -------------------------------------------------------------------------------- /tables/religion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orffen/swn-py/HEAD/tables/religion.json -------------------------------------------------------------------------------- /tables/room.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orffen/swn-py/HEAD/tables/room.json -------------------------------------------------------------------------------- /tables/trade.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orffen/swn-py/HEAD/tables/trade.json -------------------------------------------------------------------------------- /tables/world.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orffen/swn-py/HEAD/tables/world.json -------------------------------------------------------------------------------- /trade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orffen/swn-py/HEAD/trade.py -------------------------------------------------------------------------------- /world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orffen/swn-py/HEAD/world.py --------------------------------------------------------------------------------