├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .replit ├── CHANGELOG.md ├── ChangeLog.py ├── LICENSE ├── Main.py ├── Map_Gen ├── Biome.py ├── ParseMap.py ├── SubBiome.py ├── World.map └── __init__.py ├── Mechanics ├── core_mechanics.py └── ui_mechanics.py ├── README.md ├── Save_Load └── Save.py ├── ToDoList.txt ├── gui ├── __init__.py ├── const.py ├── main.py └── screens.py ├── script ├── Character.py ├── InfoDics.py ├── Items.py ├── NPC.py ├── Screen.py ├── Story.py └── __init__.py ├── setup-windows.bat └── setup.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy8625/WordRPG/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy8625/WordRPG/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy8625/WordRPG/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy8625/WordRPG/HEAD/.gitignore -------------------------------------------------------------------------------- /.replit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy8625/WordRPG/HEAD/.replit -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy8625/WordRPG/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /ChangeLog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy8625/WordRPG/HEAD/ChangeLog.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy8625/WordRPG/HEAD/LICENSE -------------------------------------------------------------------------------- /Main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy8625/WordRPG/HEAD/Main.py -------------------------------------------------------------------------------- /Map_Gen/Biome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy8625/WordRPG/HEAD/Map_Gen/Biome.py -------------------------------------------------------------------------------- /Map_Gen/ParseMap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy8625/WordRPG/HEAD/Map_Gen/ParseMap.py -------------------------------------------------------------------------------- /Map_Gen/SubBiome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy8625/WordRPG/HEAD/Map_Gen/SubBiome.py -------------------------------------------------------------------------------- /Map_Gen/World.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy8625/WordRPG/HEAD/Map_Gen/World.map -------------------------------------------------------------------------------- /Map_Gen/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Mechanics/core_mechanics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy8625/WordRPG/HEAD/Mechanics/core_mechanics.py -------------------------------------------------------------------------------- /Mechanics/ui_mechanics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy8625/WordRPG/HEAD/Mechanics/ui_mechanics.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy8625/WordRPG/HEAD/README.md -------------------------------------------------------------------------------- /Save_Load/Save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy8625/WordRPG/HEAD/Save_Load/Save.py -------------------------------------------------------------------------------- /ToDoList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy8625/WordRPG/HEAD/ToDoList.txt -------------------------------------------------------------------------------- /gui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gui/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy8625/WordRPG/HEAD/gui/const.py -------------------------------------------------------------------------------- /gui/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy8625/WordRPG/HEAD/gui/main.py -------------------------------------------------------------------------------- /gui/screens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy8625/WordRPG/HEAD/gui/screens.py -------------------------------------------------------------------------------- /script/Character.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy8625/WordRPG/HEAD/script/Character.py -------------------------------------------------------------------------------- /script/InfoDics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy8625/WordRPG/HEAD/script/InfoDics.py -------------------------------------------------------------------------------- /script/Items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy8625/WordRPG/HEAD/script/Items.py -------------------------------------------------------------------------------- /script/NPC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy8625/WordRPG/HEAD/script/NPC.py -------------------------------------------------------------------------------- /script/Screen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy8625/WordRPG/HEAD/script/Screen.py -------------------------------------------------------------------------------- /script/Story.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy8625/WordRPG/HEAD/script/Story.py -------------------------------------------------------------------------------- /script/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup-windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy8625/WordRPG/HEAD/setup-windows.bat -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy8625/WordRPG/HEAD/setup.sh --------------------------------------------------------------------------------