CSI-280 / python-game

Python roguelike for CSI-280
0 stars 0 forks source link

Make stairs change floors #61

Closed wesbeard closed 4 years ago

wesbeard commented 4 years ago

So far we have the stairs in the game as 'u' and 'd' for up and down but we need them to be intractable and actually go to the previous or level when interacted with. The levels are just stored in a list so it's as easy and incrementing the list index and display that next map, although this probably requires writing a new change map function since right now we only select a map by random.

Michael12309 commented 4 years ago

I added going up to the next floor but forgot to add going down. Also, we don't have the list of maps yet. In my most recent pull request though, you can see multiple floors by pressing G on an "up-stairs."

I'll add the rest tomorrow.

Michael12309 commented 4 years ago

Ok done