今日の弾幕

猫だまし

一定時間で180°方向転換して戻っていくという、ブーメラン的な弾幕です。
近づいて避けたりするとアウトです。

<?xml version="1.0"?>
<!DOCTYPE bulletml SYSTEM "bulletml.dtd">
<bulletml>
	<action label="top">
		<fire>
			<direction type="absolute">-35</direction>
			<speed>6</speed>
			<bulletRef label="seed"/>
		</fire>
		<wait>60</wait>
		<fire>
			<direction type="absolute">-155</direction>
			<speed>6</speed>
			<bulletRef label="seed"/>
		</fire>
		<wait>300</wait>
	</action>
	<!-- 最初の種弾 -->
	<bullet label="seed">
		<action>
			<changeSpeed>
				<speed>0</speed>
				<term>40</term>
			</changeSpeed>
			<wait>40</wait>
			<repeat>
				<times>35</times>
				<action>
					<fire>
						<direction type="absolute">10*$cnt</direction>
						<speed>5</speed>
						<bulletRef label="roll"/>
					</fire>
				</action>
			</repeat>
			<vanish/>
		</action>
	</bullet>
	<!-- 円弾 -->
	<bullet label="roll">
		<action>
			<wait>50</wait>
			<fire>
				<!-- 角度反転 -->
				<direction type="relative">180</direction>
				<speed>3.5</speed>
				<bullet/>
			</fire>
			<vanish/>
		</action>
	</bullet>
</bulletml>