If: Conditional actions.
[python-bulletml.git] / examples / boss / [Progear]_round_3_boss_wave_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 <repeat><times>32</times>
9 <action>
10 <fire>
11 <direction type="absolute">320</direction>
12 <bulletRef label="wave">
13 <param>-3</param>
14 </bulletRef>
15 </fire>
16 <wait>30</wait>
17 <fire>
18 <direction type="absolute">220</direction>
19 <bulletRef label="wave">
20 <param>3</param>
21 </bulletRef>
22 </fire>
23 <wait>30</wait>
24 </action>
25 </repeat>
26 </action>
27
28 <bullet label="wave">
29 <speed>1</speed>
30 <action>
31 <fire>
32 <direction>0</direction>
33 <bulletRef label="nrm"/>
34 </fire>
35 <repeat><times>8+$rank*10</times>
36 <action>
37 <fire>
38 <direction type="sequence">$1</direction>
39 <bulletRef label="nrm"/>
40 </fire>
41 <wait>3</wait>
42 </action>
43 </repeat>
44 <vanish/>
45 </action>
46 </bullet>
47
48 <bullet label="nrm">
49 <speed>1</speed>
50 </bullet>
51
52 </bulletml>