share/hedgewars/Data/Missions/Challenge/User_Mission_-_Rope_Knock_Challenge.lua
author Wuzzy <Wuzzy2@mail.ru>
Mon, 21 Jan 2019 19:28:39 +0100
changeset 14648 be8af70adf2c
parent 14590 c5f18710a184
child 15491 3dc01bbcd0d8
permissions -rw-r--r--
Tweak hog spawn height and facing direction in challenges
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
14475
2113296b7a29 Keep track of singleplayer high scores in challenges
Wuzzy <Wuzzy2@mail.ru>
parents: 14464
diff changeset
     1
HedgewarsScriptLoad("/Scripts/Utils.lua")
8043
da083f8d95e6 We need custom script loading function in lua now
unc0rr
parents: 7889
diff changeset
     2
HedgewarsScriptLoad("/Scripts/Locale.lua")
7889
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
     3
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
     4
local hhs = {}
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
     5
local missionWon = nil
14464
ead8928a59f8 Report mission victory for most missions
Wuzzy <Wuzzy2@mail.ru>
parents: 14401
diff changeset
     6
local missionEndHandled = false
7889
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
     7
local endTimer = 1000
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
     8
local hogsKilled = 0
11687
594016813e06 Update Rope-Knocking Challenge
Wuzzy <almikes@aol.com>
parents: 10290
diff changeset
     9
local finishTime
12739
2f873afda0e2 Rope Knock Challenge: Don't count hog kills after hero hurt itself
Wuzzy <Wuzzy2@mail.ru>
parents: 12738
diff changeset
    10
local ouchies = false
13977
e340ce5500d7 Properly play Valkyries music in Rope Knock Challenge (no more music overlap)
Wuzzy <Wuzzy2@mail.ru>
parents: 13754
diff changeset
    11
local valkyriesTimer = -1
7889
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    12
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    13
local HogData =	{
12738
49c45424a333 Rope knock challenge: Add names of developers and Shoppa tournament players who ranked 1st/2nd/3rd
Wuzzy <Wuzzy2@mail.ru>
parents: 12586
diff changeset
    14
					{"amn",			"NinjaFull",false},
49c45424a333 Rope knock challenge: Add names of developers and Shoppa tournament players who ranked 1st/2nd/3rd
Wuzzy <Wuzzy2@mail.ru>
parents: 12586
diff changeset
    15
					{"alfadur",		"NoHat",false},
49c45424a333 Rope knock challenge: Add names of developers and Shoppa tournament players who ranked 1st/2nd/3rd
Wuzzy <Wuzzy2@mail.ru>
parents: 12586
diff changeset
    16
					{"Anachron",		"war_americanww2helmet",false},
7889
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    17
					{"Bufon", 			"ShaggyYeti",false},
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    18
					{"burp", 			"lambda",false},
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    19
					{"Blue", 			"cap_blue",false},
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    20
					{"bender", 			"NoHat",false},
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    21
					{"Castell",			"NoHat",false},
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    22
					{"cekoto", 			"NoHat",false},
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    23
					{"CheezeMonkey",	"NoHat",false},
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    24
					{"claymore", 		"NoHat",false},
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    25
					{"CIA-144", 		"cyborg1",false},
12738
49c45424a333 Rope knock challenge: Add names of developers and Shoppa tournament players who ranked 1st/2nd/3rd
Wuzzy <Wuzzy2@mail.ru>
parents: 12586
diff changeset
    26
					{"cri.the.grinch",	"sf_blanka",false},
49c45424a333 Rope knock challenge: Add names of developers and Shoppa tournament players who ranked 1st/2nd/3rd
Wuzzy <Wuzzy2@mail.ru>
parents: 12586
diff changeset
    27
					{"eldiablo",		"Evil",false},
49c45424a333 Rope knock challenge: Add names of developers and Shoppa tournament players who ranked 1st/2nd/3rd
Wuzzy <Wuzzy2@mail.ru>
parents: 12586
diff changeset
    28
					{"Displacer",		"fr_lemon",false},
13093
403dbadfc8fb Rope Knock Challenge: Remove trailing space of name "doomy "
Wuzzy <Wuzzy2@mail.ru>
parents: 13067
diff changeset
    29
					{"doomy", 			"NoHat",false},
7889
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    30
					{"Falkenauge", 		"NoHat",false},
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    31
					{"FadeOne", 		"NoHat",false},
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    32
					{"hayaa", 			"NoHat",false},
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    33
					{"Hermes", 			"laurel",false},
12738
49c45424a333 Rope knock challenge: Add names of developers and Shoppa tournament players who ranked 1st/2nd/3rd
Wuzzy <Wuzzy2@mail.ru>
parents: 12586
diff changeset
    34
					{"Henek", 		"WizardHat",false},
7889
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    35
					{"HedgeKing",		"NoHat",false},
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    36
					{"Izack1535", 		"NoHat",false},
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    37
					{"Kiofspa", 		"NoHat",false},
12738
49c45424a333 Rope knock challenge: Add names of developers and Shoppa tournament players who ranked 1st/2nd/3rd
Wuzzy <Wuzzy2@mail.ru>
parents: 12586
diff changeset
    38
					{"KoBeWi",		"NoHat",false},
7889
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    39
					{"Komplex", 		"NoHat",false},
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    40
					{"koda", 			"poke_mudkip",false},
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    41
					{"Lalo", 			"NoHat",false},
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    42
					{"Logan", 			"NoHat",false},
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    43
					{"lollkiller", 		"NoHat",false},
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    44
					{"Luelle", 			"NoHat",false},
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    45
					{"mikade", 			"Skull",false},
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    46
					{"Mushi", 			"sm_daisy",false},
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    47
					{"Naboo", 			"NoHat",false},
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    48
					{"nemo", 			"bb_bub",false},
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    49
					{"practice", 		"NoHat",false},
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    50
					{"Prof. Panic",  	"NoHat",false},
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    51
					{"Randy",			"zoo_Sheep",false},
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    52
					{"rhino", 			"NinjaTriangle",false},
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    53
					{"Radissthor",  	"NoHat",false},
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    54
					{"Sami",			"sm_peach",false},
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    55
					{"soreau", 			"NoHat",false},
12738
49c45424a333 Rope knock challenge: Add names of developers and Shoppa tournament players who ranked 1st/2nd/3rd
Wuzzy <Wuzzy2@mail.ru>
parents: 12586
diff changeset
    56
					{"Solar",		"pinksunhat",false},
12770
cf1377ab2f89 Add sparkle's name to Rope Knock Challenge
Wuzzy <Wuzzy2@mail.ru>
parents: 12739
diff changeset
    57
					{"sparkle",		"NoHat",false},
12738
49c45424a333 Rope knock challenge: Add names of developers and Shoppa tournament players who ranked 1st/2nd/3rd
Wuzzy <Wuzzy2@mail.ru>
parents: 12586
diff changeset
    58
					{"szczur", 		"mp3",false},
7889
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    59
					{"sdw195", 			"NoHat",false},
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    60
					{"sphrix", 			"TeamTopHat",false},
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    61
					{"sheepluva",		"zoo_Sheep",false},
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    62
					{"Smaxx", 			"NoHat",false},
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    63
					{"shadowzero", 		"NoHat",false},
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    64
					{"Star and Moon",	"SparkleSuperFun",false},
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    65
					{"The 24",			"NoHat",false},
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    66
					{"TLD",				"NoHat",false},
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    67
					{"Tiyuri", 			"sf_ryu",false},
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    68
					{"unC0Rr", 			"cyborg1",false},
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    69
					{"Waldsau", 		"cyborg1",false},
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    70
					{"wolfmarc", 		"knight",false},
12738
49c45424a333 Rope knock challenge: Add names of developers and Shoppa tournament players who ranked 1st/2nd/3rd
Wuzzy <Wuzzy2@mail.ru>
parents: 12586
diff changeset
    71
					{"Wuzzy",		"fr_orange",false},
7889
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    72
					{"Xeli", 			"android",false}
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    73
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    74
				}
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    75
14484
764ba6182389 Change AddTeam/AddMissionTeam to return real team name and index (in that order)
Wuzzy <Wuzzy2@mail.ru>
parents: 14482
diff changeset
    76
local playerTeamName
13065
a297e06d1607 Display score next to team bar in singleplayer challenges
Wuzzy <Wuzzy2@mail.ru>
parents: 12770
diff changeset
    77
a297e06d1607 Display score next to team bar in singleplayer challenges
Wuzzy <Wuzzy2@mail.ru>
parents: 12770
diff changeset
    78
function GetKillScore()
a297e06d1607 Display score next to team bar in singleplayer challenges
Wuzzy <Wuzzy2@mail.ru>
parents: 12770
diff changeset
    79
	return math.ceil((hogsKilled / 16)*6000)
a297e06d1607 Display score next to team bar in singleplayer challenges
Wuzzy <Wuzzy2@mail.ru>
parents: 12770
diff changeset
    80
end
a297e06d1607 Display score next to team bar in singleplayer challenges
Wuzzy <Wuzzy2@mail.ru>
parents: 12770
diff changeset
    81
13754
5525f69bf76b Fix stats screwing up in Rope Knock Challenge if you lose
Wuzzy <Wuzzy2@mail.ru>
parents: 13643
diff changeset
    82
function ProtectEnemies()
5525f69bf76b Fix stats screwing up in Rope Knock Challenge if you lose
Wuzzy <Wuzzy2@mail.ru>
parents: 13643
diff changeset
    83
	for i=1, 16 do
5525f69bf76b Fix stats screwing up in Rope Knock Challenge if you lose
Wuzzy <Wuzzy2@mail.ru>
parents: 13643
diff changeset
    84
		if hhs[i] and GetHealth(hhs[i]) then
5525f69bf76b Fix stats screwing up in Rope Knock Challenge if you lose
Wuzzy <Wuzzy2@mail.ru>
parents: 13643
diff changeset
    85
			SetEffect(hhs[i], heInvulnerable, 1)
5525f69bf76b Fix stats screwing up in Rope Knock Challenge if you lose
Wuzzy <Wuzzy2@mail.ru>
parents: 13643
diff changeset
    86
		end
5525f69bf76b Fix stats screwing up in Rope Knock Challenge if you lose
Wuzzy <Wuzzy2@mail.ru>
parents: 13643
diff changeset
    87
	end
5525f69bf76b Fix stats screwing up in Rope Knock Challenge if you lose
Wuzzy <Wuzzy2@mail.ru>
parents: 13643
diff changeset
    88
end
5525f69bf76b Fix stats screwing up in Rope Knock Challenge if you lose
Wuzzy <Wuzzy2@mail.ru>
parents: 13643
diff changeset
    89
7889
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    90
function GameOverMan()
13977
e340ce5500d7 Properly play Valkyries music in Rope Knock Challenge (no more music overlap)
Wuzzy <Wuzzy2@mail.ru>
parents: 13754
diff changeset
    91
	StopMusicSound(sndRideOfTheValkyries)
e340ce5500d7 Properly play Valkyries music in Rope Knock Challenge (no more music overlap)
Wuzzy <Wuzzy2@mail.ru>
parents: 13754
diff changeset
    92
	valkyriesTimer = -1
7889
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
    93
	missionWon = false
13754
5525f69bf76b Fix stats screwing up in Rope Knock Challenge if you lose
Wuzzy <Wuzzy2@mail.ru>
parents: 13643
diff changeset
    94
	ProtectEnemies()
11687
594016813e06 Update Rope-Knocking Challenge
Wuzzy <almikes@aol.com>
parents: 10290
diff changeset
    95
	SendStat(siGameResult, loc("Challenge over!"))
13065
a297e06d1607 Display score next to team bar in singleplayer challenges
Wuzzy <Wuzzy2@mail.ru>
parents: 12770
diff changeset
    96
	local score = GetKillScore()
11687
594016813e06 Update Rope-Knocking Challenge
Wuzzy <almikes@aol.com>
parents: 10290
diff changeset
    97
	SendStat(siCustomAchievement, string.format(loc("You have killed %d of 16 hedgehogs (+%d points)."), hogsKilled, score))
14578
50f511588635 Outsource commonly used words in siPointType to QTfrontend
Wuzzy <Wuzzy2@mail.ru>
parents: 14484
diff changeset
    98
	SendStat(siPointType, "!POINTS")
13065
a297e06d1607 Display score next to team bar in singleplayer challenges
Wuzzy <Wuzzy2@mail.ru>
parents: 12770
diff changeset
    99
	SendStat(siPlayerKills, tostring(score), playerTeamName)
14475
2113296b7a29 Keep track of singleplayer high scores in challenges
Wuzzy <Wuzzy2@mail.ru>
parents: 14464
diff changeset
   100
2113296b7a29 Keep track of singleplayer high scores in challenges
Wuzzy <Wuzzy2@mail.ru>
parents: 14464
diff changeset
   101
	-- Update highscore
2113296b7a29 Keep track of singleplayer high scores in challenges
Wuzzy <Wuzzy2@mail.ru>
parents: 14464
diff changeset
   102
	updateChallengeRecord("Highscore", score)
2113296b7a29 Keep track of singleplayer high scores in challenges
Wuzzy <Wuzzy2@mail.ru>
parents: 14464
diff changeset
   103
13754
5525f69bf76b Fix stats screwing up in Rope Knock Challenge if you lose
Wuzzy <Wuzzy2@mail.ru>
parents: 13643
diff changeset
   104
	EndGame()
7889
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   105
end
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   106
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   107
function GG()
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   108
	missionWon = true
11687
594016813e06 Update Rope-Knocking Challenge
Wuzzy <almikes@aol.com>
parents: 10290
diff changeset
   109
	local completeTime = (TurnTime - finishTime) / 1000
594016813e06 Update Rope-Knocking Challenge
Wuzzy <almikes@aol.com>
parents: 10290
diff changeset
   110
	ShowMission(loc("Rope-knocking Challenge"), loc("Challenge completed!"), loc("Congratulations!") .. "|" .. string.format(loc("Completion time: %.2fs"), completeTime), 0, 0)
7889
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   111
	PlaySound(sndHomerun)
11687
594016813e06 Update Rope-Knocking Challenge
Wuzzy <almikes@aol.com>
parents: 10290
diff changeset
   112
	SendStat(siGameResult, loc("Challenge completed!"))
13065
a297e06d1607 Display score next to team bar in singleplayer challenges
Wuzzy <Wuzzy2@mail.ru>
parents: 12770
diff changeset
   113
	local hogScore = GetKillScore()
11687
594016813e06 Update Rope-Knocking Challenge
Wuzzy <almikes@aol.com>
parents: 10290
diff changeset
   114
	local timeScore = math.ceil((finishTime/TurnTime)*6000)
594016813e06 Update Rope-Knocking Challenge
Wuzzy <almikes@aol.com>
parents: 10290
diff changeset
   115
	local score = hogScore + timeScore
13754
5525f69bf76b Fix stats screwing up in Rope Knock Challenge if you lose
Wuzzy <Wuzzy2@mail.ru>
parents: 13643
diff changeset
   116
11687
594016813e06 Update Rope-Knocking Challenge
Wuzzy <almikes@aol.com>
parents: 10290
diff changeset
   117
	SendStat(siCustomAchievement, string.format(loc("You have killed %d of 16 hedgehogs (+%d points)."), hogsKilled, hogScore))
594016813e06 Update Rope-Knocking Challenge
Wuzzy <almikes@aol.com>
parents: 10290
diff changeset
   118
	SendStat(siCustomAchievement, string.format(loc("You have completed this challenge in %.2f s (+%d points)."), completeTime, timeScore))
14578
50f511588635 Outsource commonly used words in siPointType to QTfrontend
Wuzzy <Wuzzy2@mail.ru>
parents: 14484
diff changeset
   119
	SendStat(siPointType, "!POINTS")
13065
a297e06d1607 Display score next to team bar in singleplayer challenges
Wuzzy <Wuzzy2@mail.ru>
parents: 12770
diff changeset
   120
	SendStat(siPlayerKills, tostring(score), playerTeamName)
a297e06d1607 Display score next to team bar in singleplayer challenges
Wuzzy <Wuzzy2@mail.ru>
parents: 12770
diff changeset
   121
	SetTeamLabel(playerTeamName, tostring(score))
13754
5525f69bf76b Fix stats screwing up in Rope Knock Challenge if you lose
Wuzzy <Wuzzy2@mail.ru>
parents: 13643
diff changeset
   122
14475
2113296b7a29 Keep track of singleplayer high scores in challenges
Wuzzy <Wuzzy2@mail.ru>
parents: 14464
diff changeset
   123
	-- Update highscore
2113296b7a29 Keep track of singleplayer high scores in challenges
Wuzzy <Wuzzy2@mail.ru>
parents: 14464
diff changeset
   124
	updateChallengeRecord("Highscore", score)
2113296b7a29 Keep track of singleplayer high scores in challenges
Wuzzy <Wuzzy2@mail.ru>
parents: 14464
diff changeset
   125
13754
5525f69bf76b Fix stats screwing up in Rope Knock Challenge if you lose
Wuzzy <Wuzzy2@mail.ru>
parents: 13643
diff changeset
   126
	if hhs[0] and GetHealth(hhs[0]) then
5525f69bf76b Fix stats screwing up in Rope Knock Challenge if you lose
Wuzzy <Wuzzy2@mail.ru>
parents: 13643
diff changeset
   127
		SetEffect(hhs[0], heInvulnerable, 1)
5525f69bf76b Fix stats screwing up in Rope Knock Challenge if you lose
Wuzzy <Wuzzy2@mail.ru>
parents: 13643
diff changeset
   128
	end
5525f69bf76b Fix stats screwing up in Rope Knock Challenge if you lose
Wuzzy <Wuzzy2@mail.ru>
parents: 13643
diff changeset
   129
	SetTurnTimeLeft(MAX_TURN_TIME)
7889
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   130
end
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   131
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   132
function AssignCharacter(p)
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   133
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   134
	done = false
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   135
	sanityCheck = 0
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   136
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   137
	while(done == false) do
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   138
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   139
		i = 1+ GetRandom(#HogData)
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   140
		if HogData[i][3] == false then
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   141
			HogData[i][3] = true
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   142
			done = true
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   143
			SetHogName(hhs[p], HogData[i][1])
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   144
			SetHogHat(hhs[p], HogData[i][2])
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   145
		elseif HogData[i][3] == true then
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   146
			sanityCheck = sanityCheck +1
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   147
			if sanityCheck == 100 then
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   148
				done = true
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   149
				SetHogName(hhs[p], "Newbie")
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   150
				SetHogHat(hhs[p], "NoHat")
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   151
			end
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   152
		end
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   153
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   154
	end
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   155
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   156
end
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   157
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   158
function onGameInit()
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   159
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   160
	--Seed = 1
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   161
	GameFlags = gfBorder + gfSolidLand
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   162
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   163
	TurnTime = 180 * 1000
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   164
	Map = "Ropes"
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   165
	Theme = "Eyes"
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   166
12224
d62d6f8ebef1 Disable Sudden Death consistently in all missions which don't require it
Wuzzy <almikes@aol.com>
parents: 11968
diff changeset
   167
	-- Disable Sudden Death
d62d6f8ebef1 Disable Sudden Death consistently in all missions which don't require it
Wuzzy <almikes@aol.com>
parents: 11968
diff changeset
   168
	WaterRise = 0
d62d6f8ebef1 Disable Sudden Death consistently in all missions which don't require it
Wuzzy <almikes@aol.com>
parents: 11968
diff changeset
   169
	HealthDecrease = 0
d62d6f8ebef1 Disable Sudden Death consistently in all missions which don't require it
Wuzzy <almikes@aol.com>
parents: 11968
diff changeset
   170
7889
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   171
	CaseFreq = 0
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   172
	MinesNum = 0
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   173
	Explosives = 0
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   174
14484
764ba6182389 Change AddTeam/AddMissionTeam to return real team name and index (in that order)
Wuzzy <Wuzzy2@mail.ru>
parents: 14482
diff changeset
   175
	playerTeamName = AddMissionTeam(-1)
14482
d4aa64f51c9f Use player-chosen team identity for most challenges and scenarios
Wuzzy <Wuzzy2@mail.ru>
parents: 14475
diff changeset
   176
	hhs[0] = AddMissionHog(1)
7889
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   177
13583
141cdfe0f3ca Switch almost all Lua calls of AddTeam to using default clan colors instead of hardcoded color
Wuzzy <Wuzzy2@mail.ru>
parents: 13354
diff changeset
   178
	AddTeam(loc("Unsuspecting Louts"), -2, "Simple", "Island", "Default", "cm_face")
7889
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   179
	for i = 1, 8 do
13067
64aba90811a2 Change team colors in rope knock challenge to standard color scheme
Wuzzy <Wuzzy2@mail.ru>
parents: 13065
diff changeset
   180
		-- The name "generic" is a placeholder and will be replaced in AssignCharacter
7889
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   181
		hhs[i] = AddHog("generic", 0, 1, "NoHat")
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   182
	end
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   183
13583
141cdfe0f3ca Switch almost all Lua calls of AddTeam to using default clan colors instead of hardcoded color
Wuzzy <Wuzzy2@mail.ru>
parents: 13354
diff changeset
   184
	AddTeam(loc("Unlucky Sods"), -2, "Simple", "Island", "Default", "cm_balrog")
7889
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   185
	for i = 9, 16 do
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   186
		hhs[i] = AddHog("generic", 0, 1, "NoHat")
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   187
	end
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   188
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   189
end
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   190
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   191
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   192
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   193
function onGameStart()
11687
594016813e06 Update Rope-Knocking Challenge
Wuzzy <almikes@aol.com>
parents: 10290
diff changeset
   194
	SendHealthStatsOff()
7889
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   195
14475
2113296b7a29 Keep track of singleplayer high scores in challenges
Wuzzy <Wuzzy2@mail.ru>
parents: 14464
diff changeset
   196
	local recordInfo = getReadableChallengeRecord("Highscore")
2113296b7a29 Keep track of singleplayer high scores in challenges
Wuzzy <Wuzzy2@mail.ru>
parents: 14464
diff changeset
   197
	if recordInfo == nil then
2113296b7a29 Keep track of singleplayer high scores in challenges
Wuzzy <Wuzzy2@mail.ru>
parents: 14464
diff changeset
   198
		recordInfo = ""
2113296b7a29 Keep track of singleplayer high scores in challenges
Wuzzy <Wuzzy2@mail.ru>
parents: 14464
diff changeset
   199
	else
2113296b7a29 Keep track of singleplayer high scores in challenges
Wuzzy <Wuzzy2@mail.ru>
parents: 14464
diff changeset
   200
		recordInfo = "|" .. recordInfo
2113296b7a29 Keep track of singleplayer high scores in challenges
Wuzzy <Wuzzy2@mail.ru>
parents: 14464
diff changeset
   201
	end
7889
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   202
	ShowMission     (
11687
594016813e06 Update Rope-Knocking Challenge
Wuzzy <almikes@aol.com>
parents: 10290
diff changeset
   203
                        loc("Rope-knocking Challenge"),
594016813e06 Update Rope-Knocking Challenge
Wuzzy <almikes@aol.com>
parents: 10290
diff changeset
   204
                        loc("Challenge"),
7889
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   205
                        loc("Use the rope to knock your enemies to their doom.") .. "|" ..
14475
2113296b7a29 Keep track of singleplayer high scores in challenges
Wuzzy <Wuzzy2@mail.ru>
parents: 14464
diff changeset
   206
                        loc("Finish this challenge as fast as possible to earn bonus points.").. recordInfo,
11687
594016813e06 Update Rope-Knocking Challenge
Wuzzy <almikes@aol.com>
parents: 10290
diff changeset
   207
                        -amRope, 4000)
13065
a297e06d1607 Display score next to team bar in singleplayer challenges
Wuzzy <Wuzzy2@mail.ru>
parents: 12770
diff changeset
   208
	SetTeamLabel(playerTeamName, "0")
7889
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   209
11687
594016813e06 Update Rope-Knocking Challenge
Wuzzy <almikes@aol.com>
parents: 10290
diff changeset
   210
	PlaceGirder(46,1783, 0)
7889
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   211
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   212
	SetGearPosition(hhs[0], 2419, 1769)
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   213
	SetGearPosition(hhs[1], 3350, 570)
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   214
	SetGearPosition(hhs[2], 3039, 1300)
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   215
	SetGearPosition(hhs[3], 2909, 430)
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   216
	SetGearPosition(hhs[4], 2150, 879)
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   217
	SetGearPosition(hhs[5], 1735, 1136)
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   218
	SetGearPosition(hhs[6], 1563, 553)
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   219
	SetGearPosition(hhs[7], 679, 859)
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   220
	SetGearPosition(hhs[8], 1034, 251)
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   221
	SetGearPosition(hhs[9], 255, 67)
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   222
	SetGearPosition(hhs[10], 2671, 7)
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   223
	SetGearPosition(hhs[11], 2929, 244)
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   224
	SetGearPosition(hhs[12], 1946, 221)
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   225
	SetGearPosition(hhs[13], 3849, 1067)
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   226
	SetGearPosition(hhs[14], 3360, 659)
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   227
	SetGearPosition(hhs[15], 3885, 285)
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   228
	SetGearPosition(hhs[16], 935, 1160)
14648
be8af70adf2c Tweak hog spawn height and facing direction in challenges
Wuzzy <Wuzzy2@mail.ru>
parents: 14590
diff changeset
   229
	HogTurnLeft(hhs[0], true)
7889
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   230
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   231
	for i = 1, 16 do
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   232
		AssignCharacter(i)
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   233
	end
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   234
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   235
end
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   236
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   237
function onGameTick()
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   238
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   239
	if (TurnTimeLeft == 1) and (missionWon == nil) then
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   240
		GameOverMan()
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   241
	end
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   242
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   243
	if missionWon ~= nil then
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   244
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   245
		endTimer = endTimer - 1
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   246
		if endTimer == 1 then
13754
5525f69bf76b Fix stats screwing up in Rope Knock Challenge if you lose
Wuzzy <Wuzzy2@mail.ru>
parents: 13643
diff changeset
   247
			EndGame()
7889
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   248
		end
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   249
14464
ead8928a59f8 Report mission victory for most missions
Wuzzy <Wuzzy2@mail.ru>
parents: 14401
diff changeset
   250
		if not missionEndHandled then
ead8928a59f8 Report mission victory for most missions
Wuzzy <Wuzzy2@mail.ru>
parents: 14401
diff changeset
   251
			if missionWon == true then
ead8928a59f8 Report mission victory for most missions
Wuzzy <Wuzzy2@mail.ru>
parents: 14401
diff changeset
   252
				SaveMissionVar("Won", "true")
ead8928a59f8 Report mission victory for most missions
Wuzzy <Wuzzy2@mail.ru>
parents: 14401
diff changeset
   253
				AddCaption(loc("Victory!"), capcolDefault, capgrpGameState)
ead8928a59f8 Report mission victory for most missions
Wuzzy <Wuzzy2@mail.ru>
parents: 14401
diff changeset
   254
			end
ead8928a59f8 Report mission victory for most missions
Wuzzy <Wuzzy2@mail.ru>
parents: 14401
diff changeset
   255
			missionEndHandled = true
7889
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   256
		end
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   257
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   258
	end
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   259
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   260
end
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   261
13977
e340ce5500d7 Properly play Valkyries music in Rope Knock Challenge (no more music overlap)
Wuzzy <Wuzzy2@mail.ru>
parents: 13754
diff changeset
   262
function onGameTick20()
e340ce5500d7 Properly play Valkyries music in Rope Knock Challenge (no more music overlap)
Wuzzy <Wuzzy2@mail.ru>
parents: 13754
diff changeset
   263
	if (valkyriesTimer > 0) then
e340ce5500d7 Properly play Valkyries music in Rope Knock Challenge (no more music overlap)
Wuzzy <Wuzzy2@mail.ru>
parents: 13754
diff changeset
   264
		valkyriesTimer = valkyriesTimer - 20
e340ce5500d7 Properly play Valkyries music in Rope Knock Challenge (no more music overlap)
Wuzzy <Wuzzy2@mail.ru>
parents: 13754
diff changeset
   265
		if valkyriesTimer <= 0 then
e340ce5500d7 Properly play Valkyries music in Rope Knock Challenge (no more music overlap)
Wuzzy <Wuzzy2@mail.ru>
parents: 13754
diff changeset
   266
			StopMusicSound(sndRideOfTheValkyries)
e340ce5500d7 Properly play Valkyries music in Rope Knock Challenge (no more music overlap)
Wuzzy <Wuzzy2@mail.ru>
parents: 13754
diff changeset
   267
		end
e340ce5500d7 Properly play Valkyries music in Rope Knock Challenge (no more music overlap)
Wuzzy <Wuzzy2@mail.ru>
parents: 13754
diff changeset
   268
	end
e340ce5500d7 Properly play Valkyries music in Rope Knock Challenge (no more music overlap)
Wuzzy <Wuzzy2@mail.ru>
parents: 13754
diff changeset
   269
end
e340ce5500d7 Properly play Valkyries music in Rope Knock Challenge (no more music overlap)
Wuzzy <Wuzzy2@mail.ru>
parents: 13754
diff changeset
   270
7889
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   271
function onGearDamage(gear, damage)
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   272
12739
2f873afda0e2 Rope Knock Challenge: Don't count hog kills after hero hurt itself
Wuzzy <Wuzzy2@mail.ru>
parents: 12738
diff changeset
   273
	if gear == hhs[0] then
2f873afda0e2 Rope Knock Challenge: Don't count hog kills after hero hurt itself
Wuzzy <Wuzzy2@mail.ru>
parents: 12738
diff changeset
   274
		ouchies = true
13977
e340ce5500d7 Properly play Valkyries music in Rope Knock Challenge (no more music overlap)
Wuzzy <Wuzzy2@mail.ru>
parents: 13754
diff changeset
   275
		StopMusicSound(sndRideOfTheValkyries)
e340ce5500d7 Properly play Valkyries music in Rope Knock Challenge (no more music overlap)
Wuzzy <Wuzzy2@mail.ru>
parents: 13754
diff changeset
   276
		valkyriesTimer = -1
13754
5525f69bf76b Fix stats screwing up in Rope Knock Challenge if you lose
Wuzzy <Wuzzy2@mail.ru>
parents: 13643
diff changeset
   277
		ProtectEnemies()
12739
2f873afda0e2 Rope Knock Challenge: Don't count hog kills after hero hurt itself
Wuzzy <Wuzzy2@mail.ru>
parents: 12738
diff changeset
   278
	end
2f873afda0e2 Rope Knock Challenge: Don't count hog kills after hero hurt itself
Wuzzy <Wuzzy2@mail.ru>
parents: 12738
diff changeset
   279
2f873afda0e2 Rope Knock Challenge: Don't count hog kills after hero hurt itself
Wuzzy <Wuzzy2@mail.ru>
parents: 12738
diff changeset
   280
	if gear ~= hhs[0] and GetGearType(gear) == gtHedgehog and missionWon == nil and ouchies == false then
7889
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   281
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   282
		AddVisualGear(GetX(gear), GetY(gear), vgtBigExplosion, 0, false)
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   283
		DeleteGear(gear)
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   284
		PlaySound(sndExplosion)
13643
690cc84e9fd6 Use capcolDefault in Lua scripts
Wuzzy <Wuzzy2@mail.ru>
parents: 13583
diff changeset
   285
		AddCaption(string.format(knockTaunt(), GetHogName(gear)), capcolDefault, capgrpMessage)
7889
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   286
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   287
		hogsKilled = hogsKilled +1
13065
a297e06d1607 Display score next to team bar in singleplayer challenges
Wuzzy <Wuzzy2@mail.ru>
parents: 12770
diff changeset
   288
		SetTeamLabel(playerTeamName, tostring(GetKillScore()))
a297e06d1607 Display score next to team bar in singleplayer challenges
Wuzzy <Wuzzy2@mail.ru>
parents: 12770
diff changeset
   289
7889
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   290
		if hogsKilled == 15 then
13977
e340ce5500d7 Properly play Valkyries music in Rope Knock Challenge (no more music overlap)
Wuzzy <Wuzzy2@mail.ru>
parents: 13754
diff changeset
   291
			PlayMusicSound(sndRideOfTheValkyries)
e340ce5500d7 Properly play Valkyries music in Rope Knock Challenge (no more music overlap)
Wuzzy <Wuzzy2@mail.ru>
parents: 13754
diff changeset
   292
			-- Time in ms after which to return to normal music
e340ce5500d7 Properly play Valkyries music in Rope Knock Challenge (no more music overlap)
Wuzzy <Wuzzy2@mail.ru>
parents: 13754
diff changeset
   293
			valkyriesTimer = 20000
7889
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   294
		elseif hogsKilled == 16 then
11687
594016813e06 Update Rope-Knocking Challenge
Wuzzy <almikes@aol.com>
parents: 10290
diff changeset
   295
			finishTime = TurnTimeLeft
7889
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   296
			GG()
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   297
		end
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   298
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   299
	end
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   300
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   301
end
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   302
11687
594016813e06 Update Rope-Knocking Challenge
Wuzzy <almikes@aol.com>
parents: 10290
diff changeset
   303
function knockTaunt()
594016813e06 Update Rope-Knocking Challenge
Wuzzy <almikes@aol.com>
parents: 10290
diff changeset
   304
	local r = math.random(0,23)
594016813e06 Update Rope-Knocking Challenge
Wuzzy <almikes@aol.com>
parents: 10290
diff changeset
   305
	local taunt
594016813e06 Update Rope-Knocking Challenge
Wuzzy <almikes@aol.com>
parents: 10290
diff changeset
   306
	if r == 0 then taunt =		loc("%s has been knocked out.")
594016813e06 Update Rope-Knocking Challenge
Wuzzy <almikes@aol.com>
parents: 10290
diff changeset
   307
	elseif r == 1 then taunt =	loc("%s hit the ground.")
594016813e06 Update Rope-Knocking Challenge
Wuzzy <almikes@aol.com>
parents: 10290
diff changeset
   308
	elseif r == 2 then taunt =	loc("%s splatted.")
594016813e06 Update Rope-Knocking Challenge
Wuzzy <almikes@aol.com>
parents: 10290
diff changeset
   309
	elseif r == 3 then taunt =	loc("%s was smashed.")
594016813e06 Update Rope-Knocking Challenge
Wuzzy <almikes@aol.com>
parents: 10290
diff changeset
   310
	elseif r == 4 then taunt =	loc("%s felt unstable.")
594016813e06 Update Rope-Knocking Challenge
Wuzzy <almikes@aol.com>
parents: 10290
diff changeset
   311
	elseif r == 5 then taunt =	loc("%s exploded.")
594016813e06 Update Rope-Knocking Challenge
Wuzzy <almikes@aol.com>
parents: 10290
diff changeset
   312
	elseif r == 6 then taunt =	loc("%s fell from a high cliff.")
594016813e06 Update Rope-Knocking Challenge
Wuzzy <almikes@aol.com>
parents: 10290
diff changeset
   313
	elseif r == 7 then taunt =	loc("%s goes the way of the lemming.")
594016813e06 Update Rope-Knocking Challenge
Wuzzy <almikes@aol.com>
parents: 10290
diff changeset
   314
	elseif r == 8 then taunt =	loc("%s was knocked away.")
594016813e06 Update Rope-Knocking Challenge
Wuzzy <almikes@aol.com>
parents: 10290
diff changeset
   315
	elseif r == 9 then taunt =	loc("%s was really unlucky.")
594016813e06 Update Rope-Knocking Challenge
Wuzzy <almikes@aol.com>
parents: 10290
diff changeset
   316
	elseif r == 10 then taunt =	loc("%s felt victim to rope-knocking.")
594016813e06 Update Rope-Knocking Challenge
Wuzzy <almikes@aol.com>
parents: 10290
diff changeset
   317
	elseif r == 11 then taunt =	loc("%s had no chance.")
594016813e06 Update Rope-Knocking Challenge
Wuzzy <almikes@aol.com>
parents: 10290
diff changeset
   318
	elseif r == 12 then taunt =	loc("%s was a good target.")
594016813e06 Update Rope-Knocking Challenge
Wuzzy <almikes@aol.com>
parents: 10290
diff changeset
   319
	elseif r == 13 then taunt =	loc("%s spawned at a really bad position.")
594016813e06 Update Rope-Knocking Challenge
Wuzzy <almikes@aol.com>
parents: 10290
diff changeset
   320
	elseif r == 14 then taunt =	loc("%s was doomed from the beginning.")
594016813e06 Update Rope-Knocking Challenge
Wuzzy <almikes@aol.com>
parents: 10290
diff changeset
   321
	elseif r == 15 then taunt =	loc("%s has fallen victim to gravity.")
594016813e06 Update Rope-Knocking Challenge
Wuzzy <almikes@aol.com>
parents: 10290
diff changeset
   322
	elseif r == 16 then taunt =	loc("%s hates Newton.")		-- Isaac Newton
594016813e06 Update Rope-Knocking Challenge
Wuzzy <almikes@aol.com>
parents: 10290
diff changeset
   323
	elseif r == 17 then taunt =	loc("%s had it coming.")
594016813e06 Update Rope-Knocking Challenge
Wuzzy <almikes@aol.com>
parents: 10290
diff changeset
   324
	elseif r == 18 then taunt =	loc("%s is eliminated!")
594016813e06 Update Rope-Knocking Challenge
Wuzzy <almikes@aol.com>
parents: 10290
diff changeset
   325
	elseif r == 19 then taunt =	loc("%s fell too fast.")
594016813e06 Update Rope-Knocking Challenge
Wuzzy <almikes@aol.com>
parents: 10290
diff changeset
   326
	elseif r == 20 then taunt =	loc("%s flew like a rock.")
13354
f9a15dcd857c Fix a couple of English typos
Wuzzy <Wuzzy2@mail.ru>
parents: 13093
diff changeset
   327
	elseif r == 21 then taunt =	loc("%s stumbled.")
11687
594016813e06 Update Rope-Knocking Challenge
Wuzzy <almikes@aol.com>
parents: 10290
diff changeset
   328
	elseif r == 22 then taunt =	loc("%s was shoved away.")
594016813e06 Update Rope-Knocking Challenge
Wuzzy <almikes@aol.com>
parents: 10290
diff changeset
   329
	elseif r == 23 then taunt =	loc("%s didn't expect that.")
594016813e06 Update Rope-Knocking Challenge
Wuzzy <almikes@aol.com>
parents: 10290
diff changeset
   330
	end
594016813e06 Update Rope-Knocking Challenge
Wuzzy <almikes@aol.com>
parents: 10290
diff changeset
   331
	return taunt
594016813e06 Update Rope-Knocking Challenge
Wuzzy <almikes@aol.com>
parents: 10290
diff changeset
   332
end
594016813e06 Update Rope-Knocking Challenge
Wuzzy <almikes@aol.com>
parents: 10290
diff changeset
   333
7889
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   334
function onGearDelete(gear)
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   335
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   336
	if (gear == hhs[0]) and (missionWon == nil) then
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   337
		GameOverMan()
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   338
	end
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   339
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   340
end
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   341
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   342
function onAmmoStoreInit()
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   343
	SetAmmo(amRope, 9, 0, 0, 0)
57b117d441b9 consistent line endings
nemo
parents: 7095
diff changeset
   344
end
11689
c0ad9cf7db65 preselect weapons
sheepluva
parents: 11687
diff changeset
   345
c0ad9cf7db65 preselect weapons
sheepluva
parents: 11687
diff changeset
   346
function onNewTurn()
c0ad9cf7db65 preselect weapons
sheepluva
parents: 11687
diff changeset
   347
 	SetWeapon(amRope)
c0ad9cf7db65 preselect weapons
sheepluva
parents: 11687
diff changeset
   348
end