Add standard examples.
[python-bulletml.git] / examples / boss / [Progear]_round_2_boss_struggling.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="sequence">180</direction>
12 <bulletRef label="changeStraight"/>
13 </fire>
14 <fire>
15 <direction type="sequence">160</direction>
16 <bulletRef label="changeStraight"/>
17 </fire>
18 <wait>2</wait>
19 </action>
20 </repeat>
21 </action>
22
23 <bullet label="changeStraight">
24 <speed>0.6</speed>
25 <action>
26 <wait>20+$rand*100</wait>
27 <changeDirection>
28 <direction type="absolute">270</direction>
29 <term>60</term>
30 </changeDirection>
31 <changeSpeed>
32 <speed>0</speed>
33 <term>40</term>
34 </changeSpeed>
35 <wait>40</wait>
36 <changeSpeed>
37 <speed>0.5+$rand*0.7</speed>
38 <term>20</term>
39 </changeSpeed>
40 </action>
41 </bullet>
42
43 </bulletml>