view pytouhou/game/bullettype.py @ 182:20843875ad8f

(Hopefully) use difficulty as it should. The difficulty[0] (also called rank) varies from 0 to 32 and affects various parts of the game. The difficulty now impact those parts, but how it is modified during the gameplay is not clear. Such changes to the difficulty are not handled yet. [0] http://en.touhouwiki.net/wiki/Embodiment_of_Scarlet_Devil/Gameplay#Rank
author Thibaut Girka <thib@sitedethib.com>
date Tue, 25 Oct 2011 01:29:40 +0200
parents 5271789c067d
children 0595315d3880
line wrap: on
line source

class BulletType(object):
    def __init__(self, anm_wrapper, anim_index, cancel_anim_index,
                 launch_anim2_index, launch_anim4_index, launch_anim8_index,
                 hitbox_size,
                 launch_anim_penalties=(0.5, 0.4, 1./3.),
                 launch_anim_offsets=(0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 4, 4, 4, 0),
                 damage=0):
        self.anm_wrapper = anm_wrapper
        self.anim_index = anim_index
        self.cancel_anim_index = cancel_anim_index
        self.launch_anim2_index = launch_anim2_index
        self.launch_anim4_index = launch_anim4_index
        self.launch_anim8_index = launch_anim8_index
        self.hitbox_size = hitbox_size
        self.launch_anim_penalties = launch_anim_penalties
        self.launch_anim_offsets = launch_anim_offsets
        self.damage = damage