share/hedgewars/Data/Missions/Scenario/Bazooka_Battlefield.lua
changeset 13050 09edbd8a311d
child 14483 310b167141cc
equal deleted inserted replaced
13049:f18cefc4309d 13050:09edbd8a311d
       
     1 HedgewarsScriptLoad("/Scripts/SimpleMission.lua")
       
     2 HedgewarsScriptLoad("/Scripts/Locale.lua")
       
     3 
       
     4 SimpleMission({
       
     5 	missionTitle = loc("Bazooka Battlefield"),
       
     6 	initVars = {
       
     7 		TurnTime = 15000,
       
     8 		Map = "Battlefield",
       
     9 		Theme = "Castle",
       
    10 		SuddenDeathTurns = 15,
       
    11 		WaterRise = 33,
       
    12 	},
       
    13 	ammoConfig = {
       
    14 		[amBazooka] = { count = 9 },
       
    15 	},
       
    16 	teams = {
       
    17 		{ name = loc("Pincer Knights"),
       
    18 		flag = "cm_swordshield",
       
    19 		grave = "Grave",
       
    20 		hogs = {
       
    21 			{
       
    22 			name = loc("Left Tong"),
       
    23 			health = 100,
       
    24 			x = 276, y = 825,
       
    25 			botLevel = 0,
       
    26 			hat = "knight",
       
    27 			ammo = { [amSwitch] = 100 },
       
    28 			},
       
    29 			{
       
    30 			name = loc("Right Tong"),
       
    31 			health = 100,
       
    32 			x = 1794, y = 716,
       
    33 			botLevel = 0,
       
    34 			hat = "knight",
       
    35 			faceLeft = true,
       
    36 			},
       
    37 		}, },
       
    38 		{ name = loc("Hill Guard"),
       
    39 		flag = "cm_balrog",
       
    40 		grave = "Rip",
       
    41 		hogs = {
       
    42 			{ name = loc("Bushes"),
       
    43 			faceLeft = true,
       
    44 			health = 30,
       
    45 			x = 706, y = 698,
       
    46 			hat = "Viking",
       
    47 			botLevel = 3,
       
    48 			faceLeft = true,
       
    49 			ammo = { [amGrenade] = 100, [amFirePunch] = 100, [amWhip] = 100 },
       
    50 			},
       
    51 			{ name = loc("Skulls"),
       
    52 			faceLeft = true,
       
    53 			health = 30,
       
    54 			x = 1033, y = 518,
       
    55 			hat = "Viking",
       
    56 			botLevel = 3,
       
    57 			},
       
    58 			{ name = loc("Swords"),
       
    59 			health = 30,
       
    60 			x = 606, y = 348,
       
    61 			hat = "Viking",
       
    62 			botLevel = 3,
       
    63 			},
       
    64 			{ name = loc("Sneaks"),
       
    65 			faceLeft = true,
       
    66 			health = 30,
       
    67 			x = 1330, y = 509,
       
    68 			hat = "Viking",
       
    69 			botLevel = 3,
       
    70 			},
       
    71 			{ name = loc("Axes"),
       
    72 			faceLeft = true,
       
    73 			health = 30,
       
    74 			x = 1424, y = 374,
       
    75 			hat = "Viking",
       
    76 			botLevel = 3,
       
    77 			}
       
    78 		}, },
       
    79 	},
       
    80 })