comparison pytouhou/vm/eclrunner.py @ 308:7a464291dd9d

Fix difficulty modifiers within spellcards.
author Thibaut Girka <thib@sitedethib.com>
date Tue, 13 Mar 2012 20:02:01 +0100
parents 5930b33a0370
children 14c9aca8e274
comparison
equal deleted inserted replaced
307:5930b33a0370 308:7a464291dd9d
798 798
799 799
800 @instruction(93) 800 @instruction(93)
801 def set_spellcard(self, face, number, name): 801 def set_spellcard(self, face, number, name):
802 #TODO: display it on the game. 802 #TODO: display it on the game.
803 #TODO: make the enemies more resistants (and find how). 803 self._enemy.difficulty_coeffs = (-.5, .5, 0, 0, 0, 0)
804 self._game.change_bullets_into_star_items() 804 self._game.change_bullets_into_star_items()
805 self._game.spellcard = (number, name) 805 self._game.spellcard = (number, name)
806 self._game.enable_spellcard_effect() 806 self._game.enable_spellcard_effect()
807 807
808 808