今日の弾幕

波

サーフィンで波を切るように発生する弾幕です。

<?xml version="1.0"?>
<!DOCTYPE bulletml SYSTEM "bulletml.dtd">
<bulletml>
	<action label="top">
		<fire>
			<direction type="absolute">-135</direction>
			<speed>3</speed>
			<bulletRef label="seed"/>
		</fire>
		<wait>40</wait>
		<fire>
			<direction type="absolute">-45</direction>
			<speed>3</speed>
			<bulletRef label="seed"/>
		</fire>
		<wait>120</wait>
	</action>
	<!-- 最初の種弾 -->
	<bullet label="seed">
		<action>
			<repeat>
				<times>9999</times>
				<action>
					<fire>
						<speed>2</speed>
						<bulletRef label="splash1"/>
					</fire>
					<fire>
						<speed>2</speed>
						<bulletRef label="splash2"/>
					</fire>
					<wait>7</wait>
				</action>
			</repeat>
		</action>
	</bullet>
	<!-- 重力弾1 -->
	<bullet label="splash1">
		<action>
			<changeDirection>
				<direction type="absolute">45</direction>
				<term>1</term>
			</changeDirection>
			<wait>20</wait>
			<accel>
				<vertical>5</vertical>
				<term>60</term>
			</accel>
			<wait>99999</wait>
		</action>
	</bullet>
	<!-- 重力弾2 -->
	<bullet label="splash2">
		<action>
			<changeDirection>
				<direction type="absolute">135</direction>
				<term>1</term>
			</changeDirection>
			<wait>20</wait>
			<accel>
				<vertical>10</vertical>
				<term>120</term>
			</accel>
			<wait>99999</wait>
		</action>
	</bullet>
</bulletml>