.NET Core minimalistic console text adventure.
Current map is proof of work for implemented mechanics:
- Moving around
- Fighting with monsters
- Picking up items
- Using items
- Equipping and taking off armor and weapons.
Below is the list of all commands currently implemented in game. Those are case insensitive.
Command | Description | Example |
---|---|---|
look [object] | Prints description for given object. There are 2 special "objects" that are always there to look at: - around for current location description. - yourself for description of your character |
look around |
north east south west |
Moves main character in given direction | west |
take [object] | Puts the object into character backpack. Object need to be in current location |
take token |
attack [npc] | Starts battle with a given npc character. Npc will retaliate if able. |
attack mib |
open | Displays the content of main character backpack | open |
use [item] | Uses item if possible. Item need to be in character backpack. All items have set count of uses |
use aidkit |
equip [item] | Equips selected item as weapon or armor. item must be in character backpack |
equip armor |
unequip [slot] | Takes off item from given slot. Currently there are only 2 slots: armor and weapon. |
unequip armor |
exit | Turns off the game | exit |