<?xml version="1.0" ?>
<!DOCTYPE bulletml SYSTEM "http://www.asahi-net.or.jp/~cs8k-cyu/bulletml/bulletml.dtd">
	<bulletml type="vertical">
		<action label="top">
			<fire>
				<direction type="aim">-45</direction>
				<speed>1.5</speed>
				<bulletRef label="hmg"/>
			</fire>
			<fire>
				<direction type="aim">45</direction>
				<speed>1.5</speed>
				<bulletRef label="hmg"/>
			</fire>
			<wait>300</wait>
		</action>
		
		<bullet label="hmg">
			<action>
				<wait>$rand*5+20</wait>
				<changeSpeed>
					<term>200</term>
					<speed>10</speed>
				</changeSpeed>
				<repeat>
					<times>300</times>
					<action>
						<changeDirection>
							<term>20</term>
							<direction type="aim">0</direction>
						</changeDirection>
						<fire>
							<speed>0</speed>
							<bulletRef label="mine2"/>
						</fire>
						<wait>4</wait>
					</action>
				</repeat>
			</action>
		</bullet>
		
		<bullet label="mine">
			<action>
				<wait>50</wait>
				<fire>
					<speed>2</speed>
					<bullet/>
				</fire>
				<vanish/>
			</action>
		</bullet>
		
		<bullet label="mine2">
			<action>
				<wait>80</wait>
				<repeat>
					<times>10</times>
					<action>
						<fire>
							<direction type="absolute">$rand*360</direction>
							<speed>1</speed>
							<bullet/>
						</fire>
					</action>
				</repeat>
				<vanish/>
			</action>
		</bullet>
	</bulletml>