share/hedgewars/Data/Missions/Challenge/Target_Practice_-_Grenade_easy.lua
author Wuzzy <almikes@aol.com>
Wed, 13 Apr 2016 14:39:17 +0200
changeset 11968 1de4d6b35748
parent 11257 share/hedgewars/Data/Missions/Training/Target_Practice_-_Grenade_easy.lua@f1b75bf7c4f2
child 12049 030464f34d47
permissions -rw-r--r--
Mission recategorization into trainings, challenges and scenarios. This moves the missions into new folders and adds a nice tab widget in the mission menu

HedgewarsScriptLoad("/Scripts/TargetPractice.lua")

local params = {
	ammoType = amGrenade,
	gearType = gtGrenade,
	missionTitle = loc("Target Practice: Grenade (easy)"),
	solidLand = true,
	artillery = true,
	map = "SB_Crystal",
	theme = "Cave",
	hog_x = 2039,
	hog_y = 684,
	hogName = loc("Grenadier"),
	hogHat = "war_desertgrenadier2",
	teamName = loc("Grenade Group"),
	targets = {
		{ x = 1834, y = 747 },
		{ x = 2308, y = 729 },
		{ x = 1659, y = 718 },
		{ x = 1196, y = 704 },
		{ x = 2650, y = 826 },
		{ x = 1450, y = 705 },
		{ x = 2774, y = 848 },
		{ x = 2970, y = 704 },
	},
	time = 80000,
	shootText = loc("You have thrown %d grenades."),
}

TargetPracticeMission(params)