Mercurial > touhou
diff pytouhou/game/games.py @ 139:3af65541dfd3
Add EoSD's hitboxes
author | Thibaut Girka <thib@sitedethib.com> |
---|---|
date | Sun, 25 Sep 2011 19:59:41 +0200 |
parents | 429de58498f9 |
children | ea21bb37febe |
line wrap: on
line diff
--- a/pytouhou/game/games.py +++ b/pytouhou/game/games.py @@ -20,16 +20,16 @@ class EoSDGame(Game): def __init__(self, resource_loader, players, stage, rank, difficulty): etama3 = resource_loader.get_anm_wrapper(('etama3.anm',)) etama4 = resource_loader.get_anm_wrapper(('etama4.anm',)) - bullet_types = [BulletType(etama3, 0, 11, 14, 15, 16), - BulletType(etama3, 1, 12, 17, 18, 19), - BulletType(etama3, 2, 12, 17, 18, 19), - BulletType(etama3, 3, 12, 17, 18, 19), - BulletType(etama3, 4, 12, 17, 18, 19), - BulletType(etama3, 5, 12, 17, 18, 19), - BulletType(etama3, 6, 13, 20, 20, 20), - BulletType(etama3, 7, 13, 20, 20, 20), - BulletType(etama3, 8, 13, 20, 20, 20), - BulletType(etama4, 0, 1, 2, 2, 2)] + bullet_types = [BulletType(etama3, 0, 11, 14, 15, 16, hitbox_size=4), + BulletType(etama3, 1, 12, 17, 18, 19, hitbox_size=6), + BulletType(etama3, 2, 12, 17, 18, 19, hitbox_size=4), + BulletType(etama3, 3, 12, 17, 18, 19, hitbox_size=6), + BulletType(etama3, 4, 12, 17, 18, 19, hitbox_size=5), + BulletType(etama3, 5, 12, 17, 18, 19, hitbox_size=4), + BulletType(etama3, 6, 13, 20, 20, 20, hitbox_size=16), + BulletType(etama3, 7, 13, 20, 20, 20, hitbox_size=11), + BulletType(etama3, 8, 13, 20, 20, 20, hitbox_size=9), + BulletType(etama4, 0, 1, 2, 2, 2, hitbox_size=32)] player00 = resource_loader.get_anm_wrapper(('player00.anm',)) player01 = resource_loader.get_anm_wrapper(('player01.anm',))