Add standard examples.
[python-bulletml.git] / examples / normal / [1943]_rolling_fire.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="vertical"
5 xmlns="http://www.asahi-net.or.jp/~cs8k-cyu/bulletml">
6
7 <action label="top">
8 <fire>
9 <bulletRef label="roll"/>
10 </fire>
11 </action>
12
13 <bullet label="roll">
14 <action>
15 <wait>40+$rand*20</wait>
16 <changeDirection>
17 <direction type="relative">-90</direction>
18 <term>4</term>
19 </changeDirection>
20 <changeSpeed>
21 <speed>3</speed>
22 <term>4</term>
23 </changeSpeed>
24 <wait>4</wait>
25 <changeDirection>
26 <direction type="sequence">15</direction>
27 <term>9999</term>
28 </changeDirection>
29 <wait>80+$rand*40</wait>
30 <vanish/>
31 </action>
32 </bullet>
33
34 </bulletml>