Mercurial > touhou
comparison pytouhou/game/bullettype.py @ 312:8d1768fa4cbb
Fix Remilia's “Red Magic”.
author | Thibaut Girka <thib@sitedethib.com> |
---|---|
date | Wed, 14 Mar 2012 19:05:23 +0100 |
parents | 0595315d3880 |
children | c9433188ffdb |
comparison
equal
deleted
inserted
replaced
311:550ec10cccbc | 312:8d1768fa4cbb |
---|---|
1 class BulletType(object): | 1 class BulletType(object): |
2 def __init__(self, anm_wrapper, anim_index, cancel_anim_index, | 2 def __init__(self, anm_wrapper, anim_index, cancel_anim_index, |
3 launch_anim2_index, launch_anim4_index, launch_anim8_index, | 3 launch_anim2_index, launch_anim4_index, launch_anim8_index, |
4 hitbox_size, | 4 hitbox_size, |
5 launch_anim_penalties=(0.5, 0.4, 1./3.), | 5 launch_anim_penalties=(0.5, 0.4, 1./3.), |
6 launch_anim_offsets=(0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 4, 4, 4, 0)): | 6 launch_anim_offsets=(0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 4, 4, 4, 0), |
7 type_id=0): | |
8 self.type_id = type_id | |
7 self.anm_wrapper = anm_wrapper | 9 self.anm_wrapper = anm_wrapper |
8 self.anim_index = anim_index | 10 self.anim_index = anim_index |
9 self.cancel_anim_index = cancel_anim_index | 11 self.cancel_anim_index = cancel_anim_index |
10 self.launch_anim2_index = launch_anim2_index | 12 self.launch_anim2_index = launch_anim2_index |
11 self.launch_anim4_index = launch_anim4_index | 13 self.launch_anim4_index = launch_anim4_index |