Add standard examples.
[python-bulletml.git] / examples / boss / [Progear]_round_3_boss_back_burst.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>100</times>
9 <action>
10 <fire>
11 <direction type="absolute">220+$rand*100</direction>
12 <bulletRef label="backBurst"/>
13 </fire>
14 <wait>6-$rank*2</wait>
15 </action>
16 </repeat>
17 </action>
18
19 <bullet label="backBurst">
20 <speed>1.2</speed>
21 <action>
22 <changeSpeed>
23 <speed>0</speed>
24 <term>80</term>
25 </changeSpeed>
26 <wait>60+$rand*20</wait>
27 <repeat> <times>2</times>
28 <action>
29 <fire>
30 <direction type="absolute">50+$rand*80</direction>
31 <bulletRef label="downAccel"/>
32 </fire>
33 </action>
34 </repeat>
35 <vanish/>
36 </action>
37 </bullet>
38
39 <bullet label="downAccel">
40 <speed>1.8</speed>
41 <action>
42 <accel>
43 <horizontal>-7</horizontal>
44 <term>250</term>
45 </accel>
46 </action>
47 </bullet>
48
49 </bulletml>