├── .gitignore ├── README.md ├── config.py ├── game ├── __init__.py ├── core.py └── radio.py ├── images ├── border.png ├── map_icons │ ├── camp.png │ ├── cave.png │ ├── city.png │ ├── factory.png │ ├── landmark.png │ ├── metro.png │ ├── misc.png │ ├── monument.png │ ├── office.png │ ├── ruin.png │ ├── settlement.png │ ├── sewer.png │ └── vault.png ├── overlay.png └── pipboy.png ├── main.py ├── monofonto.ttf ├── pypboy ├── __init__.py ├── core.py ├── data.py ├── modules │ ├── __init__.py │ ├── data │ │ ├── __init__.py │ │ ├── entities.py │ │ ├── local_map.py │ │ ├── misc.py │ │ ├── quests.py │ │ ├── radio.py │ │ └── world_map.py │ ├── items │ │ ├── __init__.py │ │ ├── aid.py │ │ ├── ammo.py │ │ ├── apparel.py │ │ ├── misc.py │ │ └── weapons.py │ └── stats │ │ ├── __init__.py │ │ ├── general.py │ │ ├── perks.py │ │ ├── skills.py │ │ ├── special.py │ │ └── status.py └── ui.py ├── requirements.txt └── sounds ├── dial_move.ogg ├── module_change.ogg ├── radio └── gnr │ └── 8bits.mp3 └── submodule_change.ogg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabas1080/pypboy/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabas1080/pypboy/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabas1080/pypboy/HEAD/config.py -------------------------------------------------------------------------------- /game/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabas1080/pypboy/HEAD/game/__init__.py -------------------------------------------------------------------------------- /game/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabas1080/pypboy/HEAD/game/core.py -------------------------------------------------------------------------------- /game/radio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabas1080/pypboy/HEAD/game/radio.py -------------------------------------------------------------------------------- /images/border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabas1080/pypboy/HEAD/images/border.png -------------------------------------------------------------------------------- /images/map_icons/camp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabas1080/pypboy/HEAD/images/map_icons/camp.png -------------------------------------------------------------------------------- /images/map_icons/cave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabas1080/pypboy/HEAD/images/map_icons/cave.png -------------------------------------------------------------------------------- /images/map_icons/city.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabas1080/pypboy/HEAD/images/map_icons/city.png -------------------------------------------------------------------------------- /images/map_icons/factory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabas1080/pypboy/HEAD/images/map_icons/factory.png -------------------------------------------------------------------------------- /images/map_icons/landmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabas1080/pypboy/HEAD/images/map_icons/landmark.png -------------------------------------------------------------------------------- /images/map_icons/metro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabas1080/pypboy/HEAD/images/map_icons/metro.png -------------------------------------------------------------------------------- /images/map_icons/misc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabas1080/pypboy/HEAD/images/map_icons/misc.png -------------------------------------------------------------------------------- /images/map_icons/monument.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabas1080/pypboy/HEAD/images/map_icons/monument.png -------------------------------------------------------------------------------- /images/map_icons/office.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabas1080/pypboy/HEAD/images/map_icons/office.png -------------------------------------------------------------------------------- /images/map_icons/ruin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabas1080/pypboy/HEAD/images/map_icons/ruin.png -------------------------------------------------------------------------------- /images/map_icons/settlement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabas1080/pypboy/HEAD/images/map_icons/settlement.png -------------------------------------------------------------------------------- /images/map_icons/sewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabas1080/pypboy/HEAD/images/map_icons/sewer.png -------------------------------------------------------------------------------- /images/map_icons/vault.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabas1080/pypboy/HEAD/images/map_icons/vault.png -------------------------------------------------------------------------------- /images/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabas1080/pypboy/HEAD/images/overlay.png -------------------------------------------------------------------------------- /images/pipboy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabas1080/pypboy/HEAD/images/pipboy.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabas1080/pypboy/HEAD/main.py -------------------------------------------------------------------------------- /monofonto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabas1080/pypboy/HEAD/monofonto.ttf -------------------------------------------------------------------------------- /pypboy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabas1080/pypboy/HEAD/pypboy/__init__.py -------------------------------------------------------------------------------- /pypboy/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabas1080/pypboy/HEAD/pypboy/core.py -------------------------------------------------------------------------------- /pypboy/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabas1080/pypboy/HEAD/pypboy/data.py -------------------------------------------------------------------------------- /pypboy/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypboy/modules/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabas1080/pypboy/HEAD/pypboy/modules/data/__init__.py -------------------------------------------------------------------------------- /pypboy/modules/data/entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabas1080/pypboy/HEAD/pypboy/modules/data/entities.py -------------------------------------------------------------------------------- /pypboy/modules/data/local_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabas1080/pypboy/HEAD/pypboy/modules/data/local_map.py -------------------------------------------------------------------------------- /pypboy/modules/data/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabas1080/pypboy/HEAD/pypboy/modules/data/misc.py -------------------------------------------------------------------------------- /pypboy/modules/data/quests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabas1080/pypboy/HEAD/pypboy/modules/data/quests.py -------------------------------------------------------------------------------- /pypboy/modules/data/radio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabas1080/pypboy/HEAD/pypboy/modules/data/radio.py -------------------------------------------------------------------------------- /pypboy/modules/data/world_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabas1080/pypboy/HEAD/pypboy/modules/data/world_map.py -------------------------------------------------------------------------------- /pypboy/modules/items/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabas1080/pypboy/HEAD/pypboy/modules/items/__init__.py -------------------------------------------------------------------------------- /pypboy/modules/items/aid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabas1080/pypboy/HEAD/pypboy/modules/items/aid.py -------------------------------------------------------------------------------- /pypboy/modules/items/ammo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabas1080/pypboy/HEAD/pypboy/modules/items/ammo.py -------------------------------------------------------------------------------- /pypboy/modules/items/apparel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabas1080/pypboy/HEAD/pypboy/modules/items/apparel.py -------------------------------------------------------------------------------- /pypboy/modules/items/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabas1080/pypboy/HEAD/pypboy/modules/items/misc.py -------------------------------------------------------------------------------- /pypboy/modules/items/weapons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabas1080/pypboy/HEAD/pypboy/modules/items/weapons.py -------------------------------------------------------------------------------- /pypboy/modules/stats/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabas1080/pypboy/HEAD/pypboy/modules/stats/__init__.py -------------------------------------------------------------------------------- /pypboy/modules/stats/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabas1080/pypboy/HEAD/pypboy/modules/stats/general.py -------------------------------------------------------------------------------- /pypboy/modules/stats/perks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabas1080/pypboy/HEAD/pypboy/modules/stats/perks.py -------------------------------------------------------------------------------- /pypboy/modules/stats/skills.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabas1080/pypboy/HEAD/pypboy/modules/stats/skills.py -------------------------------------------------------------------------------- /pypboy/modules/stats/special.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabas1080/pypboy/HEAD/pypboy/modules/stats/special.py -------------------------------------------------------------------------------- /pypboy/modules/stats/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabas1080/pypboy/HEAD/pypboy/modules/stats/status.py -------------------------------------------------------------------------------- /pypboy/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabas1080/pypboy/HEAD/pypboy/ui.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pygame 2 | requests 3 | xmltodict 4 | numpy 5 | -------------------------------------------------------------------------------- /sounds/dial_move.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabas1080/pypboy/HEAD/sounds/dial_move.ogg -------------------------------------------------------------------------------- /sounds/module_change.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabas1080/pypboy/HEAD/sounds/module_change.ogg -------------------------------------------------------------------------------- /sounds/radio/gnr/8bits.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabas1080/pypboy/HEAD/sounds/radio/gnr/8bits.mp3 -------------------------------------------------------------------------------- /sounds/submodule_change.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabas1080/pypboy/HEAD/sounds/submodule_change.ogg --------------------------------------------------------------------------------