1HedgewarsScriptLoad("/Scripts/TargetPractice.lua")
2
3local params = {
4	ammoType = amBee,
5	gearType = gtBee,
6	missionTitle = loc("Target Practice: Homing Bee"),
7	solidLand = true,
8	map = "Hedgewars",
9	theme = "Nature",
10	hog_x = 1990,
11	hog_y = 533,
12	targets = {
13		{ x = 1949, y = 273 },
14		{ x = 1734, y = 322 },
15		{ x = 1574, y = 340 },
16		{ x = 1642, y = 474 },
17		{ x = 2006, y = 356 },
18		{ x = 1104, y = 285 },
19		{ x = 565, y = 440 },
20		{ x = 732, y = 350 },
21		{ x = 2022, y = 396 },
22		{ x = 366, y = 360 },
23		{ x = 556, y = 300 },
24		{ x = 902, y = 306 },
25		{ x = 924, y = 411 },
26		{ x = 227, y = 510 },
27		{ x = 150, y = 300 },
28	},
29	time = 120000,
30	shootText = loc("You have launched %d homing bees."),
31}
32
33TargetPracticeMission(params)
34