all repos — Legends-RPG @ 143e33398571ea292900a7201095b1086c6d8a47

A fantasy mini-RPG built with Python and Pygame.

Added another screenshot, fixed a small bug.
Justin Armstrong justinmeister@gmail.com
Fri, 25 Apr 2014 12:43:54 -0700
commit

143e33398571ea292900a7201095b1086c6d8a47

parent

14d641fbca6fb49af353bbf5d0cb404091fb7214

4 files changed, 5 insertions(+), 0 deletions(-)

jump to
M README.mdREADME.md

@@ -4,3 +4,5 @@

A fantasy mini-RPG built with Python and Pygame. ![screenshot](https://raw.github.com/justinmeister/The-Stolen-Crown-RPG/master/screenshot.png) + +![screenshot #2](https://raw.github.com/justinmeister/The-Stolen-Crown-RPG/master/screenshot-2.png)
M data/battlegui.pydata/battlegui.py

@@ -200,6 +200,8 @@ """

Select what action the player should take. """ self.pos_list = self.make_select_action_pos_list() + if self.index > (len(self.pos_list) - 1): + print self.pos_list, self.index self.rect.topleft = self.pos_list[self.index] self.check_input(keys)
M data/observer.pydata/observer.py

@@ -113,6 +113,7 @@ Make an attack animation over attacked enemy.

""" self.arrow.remove_pos(self.player.attacked_enemy) self.arrow.state = c.SELECT_ACTION + self.arrow.index = 0 self.level.attack_enemy() self.info_box.state = c.ENEMY_HIT