share/hedgewars/Data/Missions/Training/User_Mission_-_Teamwork.lua
changeset 4664 debfdc340e68
parent 4662 63aafc9c2a81
child 4674 6c9d96d06800
equal deleted inserted replaced
4663:49d89e25f196 4664:debfdc340e68
    21 	Delay = 10 -- The delay between each round
    21 	Delay = 10 -- The delay between each round
    22 	Map = "Mushrooms" -- The map to be played
    22 	Map = "Mushrooms" -- The map to be played
    23 	Theme = "Nature" -- The theme to be used
    23 	Theme = "Nature" -- The theme to be used
    24 
    24 
    25 	AddTeam(loc("Feeble Resistance"), 14483456, "Simple", "Island", "Default")
    25 	AddTeam(loc("Feeble Resistance"), 14483456, "Simple", "Island", "Default")
    26 	player = AddHog(loc("Pathetic Hog #1"), 0, 50, "NoHat")
    26 	player = AddHog(string.format(loc("Pathetic Hog #%d"), 1), 0, 50, "NoHat")
    27 	p2 = AddHog(loc("Pathetic Hog #2"), 0, 20, "NoHat")
    27 	p2 = AddHog(string.format(loc("Pathetic Hog #%d"), 2), 0, 20, "NoHat")
    28 
    28 
    29 	--AddTeam("Toxic Team", 	1175851, "Simple", "Island", "Robot","cm_binary")
    29 	--AddTeam("Toxic Team", 	1175851, "Simple", "Island", "Robot","cm_binary")
    30 	AddTeam(loc("Cybernetic Empire"), 	1175851, "Simple", "Island", "Robot", "cm_binary")
    30 	AddTeam(loc("Cybernetic Empire"), 	1175851, "Simple", "Island", "Robot", "cm_binary")
    31 	enemy = AddHog(loc("Unit 3378"), 5, 30, "cyborg")
    31 	enemy = AddHog(loc("Unit 3378"), 5, 30, "cyborg")
    32 
    32