If: Conditional actions.
[python-bulletml.git] / examples / boss / [Progear]_round_1_boss_grow_bullets.xml
1 <?xml version="1.0" ?>
2 <!DOCTYPE bulletml SYSTEM "http://www.asahi-net.or.jp/~cs8k-cyu/bulletml/bulletml.dtd">
3
4 <bulletml type="horizontal"
5 xmlns="http://www.asahi-net.or.jp/~cs8k-cyu/bulletml">
6
7 <action label="top">
8 <fire>
9 <direction type="absolute">270-(4+$rank*6)*15/2</direction>
10 <bulletRef label="seed"/>
11 </fire>
12 <repeat><times>4+$rank*6</times>
13 <action>
14 <fire>
15 <direction type="sequence">15</direction>
16 <bulletRef label="seed"/>
17 </fire>
18 </action>
19 </repeat>
20 </action>
21
22 <bullet label="seed">
23 <speed>1.2</speed>
24 <action>
25 <changeSpeed>
26 <speed>0</speed>
27 <term>60</term>
28 </changeSpeed>
29 <wait>60</wait>
30 <fire>
31 <speed>0.75</speed>
32 <bullet/>
33 </fire>
34 <repeat><times>4+$rank*4</times>
35 <action>
36 <fire>
37 <speed type="sequence">0.15</speed>
38 <bullet/>
39 </fire>
40 </action>
41 </repeat>
42 <vanish/>
43 </action>
44 </bullet>
45
46 </bulletml>