aelmosalamy / ascii-combat

A simple CLI text adventure game, created for learning purposes, feel free to contribute.
MIT License
69 stars 17 forks source link

Combat System: Incomplete #1

Closed aelmosalamy closed 5 years ago

aelmosalamy commented 5 years ago

TO BE FIXED:

iamparkerm commented 5 years ago

Man there's a lot of code written already and a lot of different files, but still no working combat system? For me to contribute I would need a much more simple version of the game with everything stripped out but the combat system and the main loop... I don't know where to start. sorry

aelmosalamy commented 5 years ago

Well just read each files docstring and you will know what is that module responsible for, Combat system works, If you want to try it, then go to main.py comment the two lines that start with world and uncomment the two lines that start with a game. The problem is till now the combat system isn't connected to dungeon system, I created a full-editable combat with commands like atk, pwr and another dungeon system with commands like go, eat, pick, etc... Now what I am doing is making it possible for players to enter a room then pick a weapon and a skill and use it for the combat system, :)