diff pytouhou/game/player.py @ 388:ac2891afb0bb

Make particles behave as in the original game.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Sun, 21 Oct 2012 23:02:40 +0200
parents dc6ed7b1c6de
children b11953cf1d3b
line wrap: on
line diff
--- a/pytouhou/game/player.py
+++ b/pytouhou/game/player.py
@@ -104,7 +104,7 @@ class Player(object):
             self._game.modify_difficulty(-1600)
             self.play_sound('pldead00')
             for i in range(16):
-                self._game.new_particle((self.state.x, self.state.y), 2, 4., 256) #TODO: find the real size and range.
+                self._game.new_particle((self.state.x, self.state.y), 11, 256) #TODO: find the real size and range.
 
 
     def start_focusing(self):