Add standard examples.
[python-bulletml.git] / examples / boss / [Progear]_round_6_boss_parabola_shot.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>50</times>
9 <action>
10 <fire>
11 <direction type="absolute">190+$rand*30</direction>
12 <bulletRef label="seed"/>
13 </fire>
14 <wait>15-$rank*5</wait>
15 </action>
16 </repeat>
17 </action>
18
19 <bullet label="seed">
20 <speed>1</speed>
21 <action>
22 <changeSpeed>
23 <speed>0</speed>
24 <term>60</term>
25 </changeSpeed>
26 <wait>60</wait>
27 <fire><bullet/></fire>
28 <fire>
29 <direction type="absolute">330+$rand*25</direction>
30 <bulletRef label="downAccel"/>
31 </fire>
32 <repeat> <times>3</times>
33 <action>
34 <fire>
35 <direction type="sequence">0</direction>
36 <speed type="sequence">-0.4</speed>
37 <bulletRef label="downAccel"/>
38 </fire>
39 </action>
40 </repeat>
41 <vanish/>
42 </action>
43 </bullet>
44
45 <bullet label="downAccel">
46 <speed>2</speed>
47 <action>
48 <accel>
49 <vertical>3</vertical>
50 <term>120</term>
51 </accel>
52 </action>
53 </bullet>
54
55 </bulletml>