今日の弾幕

大往生1ボス?

うろ覚え大往生1ボス。
扇型のばら撒き弾に、狙い撃ち散弾銃です。

<?xml version="1.0"?>
<!DOCTYPE bulletml SYSTEM "bulletml.dtd">
<bulletml>
	<action label="top">
		<fire>
			<bulletRef label="shotgun"/>
		</fire>
		<repeat>
			<times>17</times>
			<action>
				<fire>
					<direction type="absolute">-180+10*$cnt</direction>
					<speed>3</speed>
					<bullet/>
				</fire>
			</action>
		</repeat>
	</action>
	<!-- ショットガン -->
	<bullet label="shotgun">
		<action>
			<wait>28</wait>
			<repeat>
				<times>15</times>
				<action>
					<fire>
						<direction type="aim">random.randint(-7, 7)</direction>
						<speed>random.uniform(3, 4)</speed>
						<bullet/>
					</fire>
				</action>
			</repeat>
			<vanish/>
		</action>
	</bullet>
</bulletml>