Mercurial > touhou
comparison pytouhou/formats/ecl.py @ 171:2f3665a77f11
Add support for the last unknown value of the enemy spawning.
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Thu, 20 Oct 2011 06:34:35 -0700 |
parents | c8c60291c56f |
children | 88361534c77e |
comparison
equal
deleted
inserted
replaced
170:e7902309305c | 171:2f3665a77f11 |
---|---|
130 132: ('i', None), | 130 132: ('i', None), |
131 133: ('', None), | 131 133: ('', None), |
132 134: ('', None), | 132 134: ('', None), |
133 135: ('i', None)} #TODO | 133 135: ('i', None)} #TODO |
134 | 134 |
135 _main_instructions = {0: ('fffhhHH', 'spawn_enemy'), | 135 _main_instructions = {0: ('fffhhI', 'spawn_enemy'), |
136 2: ('fffhhHH', 'spawn_enemy_mirrored'), | 136 2: ('fffhhI', 'spawn_enemy_mirrored'), |
137 4: ('fffhhHH', 'spawn_enemy_random'), | 137 4: ('fffhhI', 'spawn_enemy_random'), |
138 6: ('fffhhHH', 'spawn_enemy_mirrored_random'), | 138 6: ('fffhhI', 'spawn_enemy_mirrored_random'), |
139 8: ('', None), | 139 8: ('', None), |
140 9: ('', None), | 140 9: ('', None), |
141 10: ('II', None), | 141 10: ('II', None), |
142 12: ('', None)} | 142 12: ('', None)} |
143 | 143 |