今日の弾幕

カニバサミ弾

カニバサミ弾です。

<?xml version="1.0"?>
<!DOCTYPE bulletml SYSTEM "bulletml.dtd">
<bulletml>
	<action label="top">
		<repeat>
			<times>1</times>
			<action>
				<fire>
					<direction type="absolute">0</direction>
					<speed>4</speed>
					<bulletRef label="seed1"/>
				</fire>
			</action>
		</repeat>
		<repeat>
			<times>1</times>
			<action>
				<fire>
					<direction type="absolute">180</direction>
					<speed>4</speed>
					<bulletRef label="seed2"/>
				</fire>
			</action>
		</repeat>
		<wait>120</wait>
	</action>
	<!-- 種弾 -->
	<bullet label="seed1">
		<action>
			<changeSpeed>
				<speed>0</speed>
				<term>10</term>
			</changeSpeed>
			<wait>20</wait>
			<repeat>
				<times>12</times>
				<action>
					<fire>
						<direction type="absolute">-90</direction>
						<speed>4</speed>
						<bulletRef label="wave">
							<param>1</param>
						</bulletRef>
					</fire>
					<wait>5</wait>
				</action>
			</repeat>
			<vanish/>
		</action>
	</bullet>
	<bullet label="seed2">
		<action>
			<changeSpeed>
				<speed>0</speed>
				<term>10</term>
			</changeSpeed>
			<wait>20</wait>
			<repeat>
				<times>12</times>
				<action>
					<fire>
						<direction type="absolute">-90</direction>
						<speed>4</speed>
						<bulletRef label="wave">
							<param>-1</param>
						</bulletRef>
					</fire>
					<wait>5</wait>
				</action>
			</repeat>
			<vanish/>
		</action>
	</bullet>
	<!-- 波弾 -->
	<bullet label="wave">
		<action>
			<changeDirection>
				<direction type="relative">$1*45</direction>
				<term>1</term>
			</changeDirection>
			<wait>2</wait>
			<repeat>
				<times>9999</times>
				<action>
					<changeDirection>
						<direction type="relative">$1*-90</direction>
						<term>30</term>
					</changeDirection>
					<wait>40</wait>
					<changeDirection>
						<direction type="relative">$1*90</direction>
						<term>30</term>
					</changeDirection>
					<wait>40</wait>
				</action>
			</repeat>
		</action>
	</bullet>
</bulletml>