share/hedgewars/Data/Missions/Campaign/A_Space_Adventure/fruit02.lua
author Wuzzy <Wuzzy2@mail.ru>
Fri, 09 Feb 2018 07:38:14 +0100
changeset 12933 e65aa3c3d4e6
parent 12680 5a253f158071
child 13583 141cdfe0f3ca
permissions -rw-r--r--
Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
     1
------------------- ABOUT ----------------------
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
     2
--
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
     3
-- In this adventure hero gets the lost part with
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
     4
-- the help of the green bananas hogs.
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
     5
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
     6
HedgewarsScriptLoad("/Scripts/Locale.lua")
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
     7
HedgewarsScriptLoad("/Scripts/Animate.lua")
9578
16139270448f save main missions' status
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9574
diff changeset
     8
HedgewarsScriptLoad("/Missions/Campaign/A_Space_Adventure/global_functions.lua")
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
     9
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
    10
----------------- VARIABLES --------------------
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
    11
-- globals
9574
da3d39667881 strings checked, all ok except ice02 that will be probably changed
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9554
diff changeset
    12
local missionName = loc("Getting to the device")
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
    13
local inBattle = false
9529
e95aab9130d8 first dialogs
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9527
diff changeset
    14
local tookPartInBattle = false
9536
7456b28a3421 this seems to work fine for the escape scenario
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9534
diff changeset
    15
local previousHog = -1
9746
64abf9862562 fixed wrong saved positions, illegal crate destroying and killing cap.Lime early in fruit02
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9642
diff changeset
    16
local permitCaptainLimeDeath = false
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
    17
-- dialogs
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
    18
local dialog01 = {}
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
    19
local dialog02 = {}
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
    20
local dialog03 = {}
9534
662edfec06be many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9532
diff changeset
    21
local dialog04 = {}
12583
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
    22
local dialog05 = {}
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
    23
-- mission objectives
12226
3ec0261e01f0 Display mines timer in all missions with non-default timer
Wuzzy <almikes@aol.com>
parents: 12224
diff changeset
    24
local minesTimeText = loc("Mines time: 0 seconds")
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
    25
local goals = {
12425
f9cbb896967b Fix 3 more incorrect uses of loc() in scripts
Wuzzy <almikes@aol.com>
parents: 12226
diff changeset
    26
	[dialog01] = {missionName, loc("Exploring the tunnel"), loc("Search for the device with the help of the other hedgehogs ").."|"..loc("Hog Solo has to reach the last crates") .. "|" .. minesTimeText, 1, 4000},
12226
3ec0261e01f0 Display mines timer in all missions with non-default timer
Wuzzy <almikes@aol.com>
parents: 12224
diff changeset
    27
	[dialog02] = {missionName, loc("Exploring the tunnel"), loc("Explore the tunnel with the other hedgehogs and search for the device").."|"..loc("Hog Solo has to reach the last crates") .. "|" .. minesTimeText, 1, 4000},
3ec0261e01f0 Display mines timer in all missions with non-default timer
Wuzzy <almikes@aol.com>
parents: 12224
diff changeset
    28
	[dialog03] = {missionName, loc("Return to the Surface"), loc("Go to the surface!").."|"..loc("Attack Captain Lime before he attacks back").."|"..minesTimeText, 1, 4000},
3ec0261e01f0 Display mines timer in all missions with non-default timer
Wuzzy <almikes@aol.com>
parents: 12224
diff changeset
    29
	[dialog04] = {missionName, loc("Return to the Surface"), loc("Go to the surface!").."|"..loc("Attack the assassins before they attack back").."|"..minesTimeText, 1, 4000},
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
    30
}
9542
d1ea2d1540f2 custom stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9540
diff changeset
    31
-- crates
12528
7b32e83aaf48 ASA, Getting to the device: Add fake crate for the device part with proper collect message
Wuzzy <almikes@aol.com>
parents: 12520
diff changeset
    32
local girderCrate = {name = amGirder, x = 1680, y = 1160}
7b32e83aaf48 ASA, Getting to the device: Add fake crate for the device part with proper collect message
Wuzzy <almikes@aol.com>
parents: 12520
diff changeset
    33
9552
90d69a2c1729 checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9550
diff changeset
    34
local eagleCrate = {name = amDEagle, x = 1680, y = 1650}
12528
7b32e83aaf48 ASA, Getting to the device: Add fake crate for the device part with proper collect message
Wuzzy <almikes@aol.com>
parents: 12520
diff changeset
    35
7b32e83aaf48 ASA, Getting to the device: Add fake crate for the device part with proper collect message
Wuzzy <almikes@aol.com>
parents: 12520
diff changeset
    36
local weaponCrate = { x = 1320, y = 1870}
7b32e83aaf48 ASA, Getting to the device: Add fake crate for the device part with proper collect message
Wuzzy <almikes@aol.com>
parents: 12520
diff changeset
    37
local deviceCrate = { gear = nil, x = 1360, y = 1870}
9552
90d69a2c1729 checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9550
diff changeset
    38
local ropeCrate = {name = amRope, x = 1400, y = 1870}
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
    39
-- hogs
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
    40
local hero = {}
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
    41
local green1 = {}
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
    42
local green2 = {}
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
    43
local green3 = {}
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
    44
-- teams
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
    45
local teamA = {}
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
    46
local teamB = {}
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
    47
local teamC = {}
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
    48
-- hedgehogs values
9574
da3d39667881 strings checked, all ok except ice02 that will be probably changed
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9554
diff changeset
    49
hero.name = loc("Hog Solo")
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
    50
hero.x = 1200
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
    51
hero.y = 820
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
    52
hero.dead = false
9574
da3d39667881 strings checked, all ok except ice02 that will be probably changed
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9554
diff changeset
    53
green1.name = loc("Captain Lime")
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
    54
green1.x = 1050
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
    55
green1.y = 820
9538
51596e01c5df scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9536
diff changeset
    56
green1.dead = false
9574
da3d39667881 strings checked, all ok except ice02 that will be probably changed
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9554
diff changeset
    57
green2.name = loc("Mister Pear")
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
    58
green2.x = 1350
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
    59
green2.y = 820
9574
da3d39667881 strings checked, all ok except ice02 that will be probably changed
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9554
diff changeset
    60
green3.name = loc("Lady Mango")
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
    61
green3.x = 1450
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
    62
green3.y = 820
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
    63
local redHedgehogs = {
9574
da3d39667881 strings checked, all ok except ice02 that will be probably changed
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9554
diff changeset
    64
	{ name = loc("Poisonous Apple") },
da3d39667881 strings checked, all ok except ice02 that will be probably changed
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9554
diff changeset
    65
	{ name = loc("Dark Strawberry") },
da3d39667881 strings checked, all ok except ice02 that will be probably changed
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9554
diff changeset
    66
	{ name = loc("Watermelon Heart") },
da3d39667881 strings checked, all ok except ice02 that will be probably changed
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9554
diff changeset
    67
	{ name = loc("Deadly Grape") }
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
    68
}
12573
a778c1bb032e ASA: Explain team abbreviations + update changelog
Wuzzy <almikes@aol.com>
parents: 12572
diff changeset
    69
-- Hog Solo and Green Bananas
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
    70
teamA.name = loc("Hog Solo and GB")
12572
5358c4f23643 ASA fruit02: Refactor captain lime hog, use 1 gear only instead of 2
Wuzzy <almikes@aol.com>
parents: 12538
diff changeset
    71
teamA.color = 0x38D61C -- green
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
    72
teamB.name = loc("Captain Lime")
12572
5358c4f23643 ASA fruit02: Refactor captain lime hog, use 1 gear only instead of 2
Wuzzy <almikes@aol.com>
parents: 12538
diff changeset
    73
teamB.color = 0x38D61D -- greenish
9831
afa4e3e04cc5 typos correction
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9810
diff changeset
    74
teamC.name = loc("Fruit Assassins")
12572
5358c4f23643 ASA fruit02: Refactor captain lime hog, use 1 gear only instead of 2
Wuzzy <almikes@aol.com>
parents: 12538
diff changeset
    75
teamC.color = 0xFF0000 -- red
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
    76
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
    77
function onGameInit()
9538
51596e01c5df scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9536
diff changeset
    78
	GameFlags = gfDisableWind
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
    79
	Seed = 1
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
    80
	TurnTime = 20000
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
    81
	CaseFreq = 0
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
    82
	MinesNum = 0
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
    83
	MinesTime = 1
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
    84
	Explosives = 0
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
    85
	Delay = 3
12224
d62d6f8ebef1 Disable Sudden Death consistently in all missions which don't require it
Wuzzy <almikes@aol.com>
parents: 12088
diff changeset
    86
	-- Disable Sudden Death
d62d6f8ebef1 Disable Sudden Death consistently in all missions which don't require it
Wuzzy <almikes@aol.com>
parents: 12088
diff changeset
    87
	HealthDecrease = 0
d62d6f8ebef1 Disable Sudden Death consistently in all missions which don't require it
Wuzzy <almikes@aol.com>
parents: 12088
diff changeset
    88
	WaterRise = 0
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
    89
	Map = "fruit02_map"
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
    90
	Theme = "Fruit"
9758
3b8058b251b8 some more campaign string tweaks
sheepluva
parents: 9747
diff changeset
    91
9552
90d69a2c1729 checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9550
diff changeset
    92
	local health = 100
9758
3b8058b251b8 some more campaign string tweaks
sheepluva
parents: 9747
diff changeset
    93
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
    94
	-- Hog Solo and Green Bananas
12587
0b27d8b4f8e7 Use Default voice in A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents: 12586
diff changeset
    95
	AddTeam(teamA.name, teamA.color, "Simple", "Island", "Default", "hedgehog")
9552
90d69a2c1729 checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9550
diff changeset
    96
	hero.gear = AddHog(hero.name, 0, health, "war_desertgrenadier1")
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
    97
	AnimSetGearPosition(hero.gear, hero.x, hero.y)
9758
3b8058b251b8 some more campaign string tweaks
sheepluva
parents: 9747
diff changeset
    98
	HogTurnLeft(hero.gear, true)
9629
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9587
diff changeset
    99
	green2.gear = AddHog(green2.name, 0, 100, "war_britmedic")
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   100
	AnimSetGearPosition(green2.gear, green2.x, green2.y)
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   101
	HogTurnLeft(green2.gear, true)
9629
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9587
diff changeset
   102
	green3.gear = AddHog(green3.name, 0, 100, "hair_red")
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   103
	AnimSetGearPosition(green3.gear, green3.x, green3.y)
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   104
	HogTurnLeft(green3.gear, true)
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   105
	-- Captain Lime
12587
0b27d8b4f8e7 Use Default voice in A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents: 12586
diff changeset
   106
	AddTeam(teamB.name, teamB.color, "Cherry", "Island", "Default", "congo-brazzaville")
12572
5358c4f23643 ASA fruit02: Refactor captain lime hog, use 1 gear only instead of 2
Wuzzy <almikes@aol.com>
parents: 12538
diff changeset
   107
	green1.gear= AddHog(green1.name, 0, 100, "war_desertofficer")
5358c4f23643 ASA fruit02: Refactor captain lime hog, use 1 gear only instead of 2
Wuzzy <almikes@aol.com>
parents: 12538
diff changeset
   108
	AnimSetGearPosition(green1.gear, green1.x, green1.y)
9831
afa4e3e04cc5 typos correction
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9810
diff changeset
   109
	-- Fruit Assassins
9629
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9587
diff changeset
   110
	local assasinsHats = { "NinjaFull", "NinjaStraight", "NinjaTriangle" }
12587
0b27d8b4f8e7 Use Default voice in A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents: 12586
diff changeset
   111
	AddTeam(teamC.name, teamC.color, "bp2", "Island", "Default", "cm_scout")
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   112
	for i=1,table.getn(redHedgehogs) do
9810
54c0fdec4600 changing math functions that may cause desyncs
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9782
diff changeset
   113
		redHedgehogs[i].gear =  AddHog(redHedgehogs[i].name, 1, 100, assasinsHats[GetRandom(3)+1])
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   114
		AnimSetGearPosition(redHedgehogs[i].gear, 2010 + 50*i, 630)
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   115
	end
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   116
12088
1da37e2ba6fd Fix A Space Adventure Missions allowing player to walk before 1st animation and screw things up
Wuzzy <almikes@aol.com>
parents: 12049
diff changeset
   117
	AnimInit(true)
9758
3b8058b251b8 some more campaign string tweaks
sheepluva
parents: 9747
diff changeset
   118
	AnimationSetup()
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   119
end
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   120
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   121
function onGameStart()
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   122
	AnimWait(hero.gear, 3000)
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   123
	FollowGear(hero.gear)
9758
3b8058b251b8 some more campaign string tweaks
sheepluva
parents: 9747
diff changeset
   124
9540
92329918463f game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9538
diff changeset
   125
	if GetCampaignVar("Fruit01JoinedBattle") and GetCampaignVar("Fruit01JoinedBattle") == "true" then
9529
e95aab9130d8 first dialogs
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9527
diff changeset
   126
		tookPartInBattle = true
e95aab9130d8 first dialogs
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9527
diff changeset
   127
	end
9758
3b8058b251b8 some more campaign string tweaks
sheepluva
parents: 9747
diff changeset
   128
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   129
	AddEvent(onHeroDeath, {hero.gear}, heroDeath, {hero.gear}, 0)
12528
7b32e83aaf48 ASA, Getting to the device: Add fake crate for the device part with proper collect message
Wuzzy <almikes@aol.com>
parents: 12520
diff changeset
   130
	AddEvent(onDeviceCrates, {hero.gear}, deviceCrateEvent, {hero.gear}, 0)
9758
3b8058b251b8 some more campaign string tweaks
sheepluva
parents: 9747
diff changeset
   131
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   132
	-- Hog Solo and GB weapons
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   133
	AddAmmo(hero.gear, amSwitch, 100)
9831
afa4e3e04cc5 typos correction
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9810
diff changeset
   134
	-- Assassins weapons
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   135
	AddAmmo(redHedgehogs[1].gear, amBazooka, 6)
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   136
	AddAmmo(redHedgehogs[1].gear, amGrenade, 6)
9540
92329918463f game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9538
diff changeset
   137
	AddAmmo(redHedgehogs[1].bot, amDEagle, 6)
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   138
	for i=1,table.getn(redHedgehogs) do
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   139
		HideHog(redHedgehogs[i].gear)
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   140
	end
9758
3b8058b251b8 some more campaign string tweaks
sheepluva
parents: 9747
diff changeset
   141
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   142
	-- explosives
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   143
	-- I wanted to use FindPlace but doesn't accept height values...
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   144
	local x1 = 950
9538
51596e01c5df scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9536
diff changeset
   145
	local x2 = 1306
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   146
	local y1 = 1210
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   147
	local y2 = 1620
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   148
	while true do
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   149
		if y2<y1 then
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   150
			break
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   151
		end
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   152
		if x2<x1 then
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   153
			x2 = 1305
9538
51596e01c5df scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9536
diff changeset
   154
			y2 = y2 - 50
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   155
		end
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   156
		if not TestRectForObstacle(x2+25, y2+25, x2-25, y2-25, true) then
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   157
			AddGear(x2, y2, gtExplosives, 0, 0, 0, 0)
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   158
		end
9538
51596e01c5df scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9536
diff changeset
   159
		x2 = x2 - 25
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   160
	end
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   161
	AddGear(3128, 1680, gtExplosives, 0, 0, 0, 0)
9758
3b8058b251b8 some more campaign string tweaks
sheepluva
parents: 9747
diff changeset
   162
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   163
	--mines
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   164
	AddGear(3135, 1680, gtMine, 0, 0, 0, 0)
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   165
	AddGear(3145, 1680, gtMine, 0, 0, 0, 0)
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   166
	AddGear(3155, 1680, gtMine, 0, 0, 0, 0)
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   167
	AddGear(3165, 1680, gtMine, 0, 0, 0, 0)
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   168
	AddGear(3175, 1680, gtMine, 0, 0, 0, 0)
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   169
	AddGear(3115, 1680, gtMine, 0, 0, 0, 0)
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   170
	AddGear(3105, 1680, gtMine, 0, 0, 0, 0)
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   171
	AddGear(3095, 1680, gtMine, 0, 0, 0, 0)
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   172
	AddGear(3085, 1680, gtMine, 0, 0, 0, 0)
9758
3b8058b251b8 some more campaign string tweaks
sheepluva
parents: 9747
diff changeset
   173
	AddGear(3075, 1680, gtMine, 0, 0, 0, 0)
9552
90d69a2c1729 checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9550
diff changeset
   174
12520
22f2a586b9ca Remove checkpoints in ASA: Getting to the device
Wuzzy <almikes@aol.com>
parents: 12514
diff changeset
   175
	AddAmmo(hero.gear, amFirePunch, 3)
22f2a586b9ca Remove checkpoints in ASA: Getting to the device
Wuzzy <almikes@aol.com>
parents: 12514
diff changeset
   176
	if tookPartInBattle then
22f2a586b9ca Remove checkpoints in ASA: Getting to the device
Wuzzy <almikes@aol.com>
parents: 12514
diff changeset
   177
		AddAnim(dialog01)
22f2a586b9ca Remove checkpoints in ASA: Getting to the device
Wuzzy <almikes@aol.com>
parents: 12514
diff changeset
   178
	else
22f2a586b9ca Remove checkpoints in ASA: Getting to the device
Wuzzy <almikes@aol.com>
parents: 12514
diff changeset
   179
		AddAnim(dialog02)
9552
90d69a2c1729 checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9550
diff changeset
   180
	end
9758
3b8058b251b8 some more campaign string tweaks
sheepluva
parents: 9747
diff changeset
   181
9552
90d69a2c1729 checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9550
diff changeset
   182
	-- place crates
12933
e65aa3c3d4e6 Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents: 12680
diff changeset
   183
	SpawnSupplyCrate(girderCrate.x, girderCrate.y, girderCrate.name)
e65aa3c3d4e6 Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents: 12680
diff changeset
   184
	SpawnSupplyCrate(eagleCrate.x, eagleCrate.y, eagleCrate.name)
12528
7b32e83aaf48 ASA, Getting to the device: Add fake crate for the device part with proper collect message
Wuzzy <almikes@aol.com>
parents: 12520
diff changeset
   185
	deviceCrate.gear = SpawnFakeUtilityCrate(deviceCrate.x, deviceCrate.y, false, false) -- anti-gravity device
7b32e83aaf48 ASA, Getting to the device: Add fake crate for the device part with proper collect message
Wuzzy <almikes@aol.com>
parents: 12520
diff changeset
   186
	-- Rope crate is placed after device crate has been collected.
7b32e83aaf48 ASA, Getting to the device: Add fake crate for the device part with proper collect message
Wuzzy <almikes@aol.com>
parents: 12520
diff changeset
   187
	-- This is done so it is impossible the player can rope before getting
7b32e83aaf48 ASA, Getting to the device: Add fake crate for the device part with proper collect message
Wuzzy <almikes@aol.com>
parents: 12520
diff changeset
   188
	-- the device part.
9552
90d69a2c1729 checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9550
diff changeset
   189
90d69a2c1729 checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9550
diff changeset
   190
	if tookPartInBattle then
12933
e65aa3c3d4e6 Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents: 12680
diff changeset
   191
		SpawnSupplyCrate(weaponCrate.x, weaponCrate.y, amWatermelon)
9552
90d69a2c1729 checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9550
diff changeset
   192
	else
12933
e65aa3c3d4e6 Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents: 12680
diff changeset
   193
		SpawnSupplyCrate(weaponCrate.x, weaponCrate.y, amSniperRifle)
9548
38630665c9ab check point fixes
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9546
diff changeset
   194
	end
9758
3b8058b251b8 some more campaign string tweaks
sheepluva
parents: 9747
diff changeset
   195
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   196
	SendHealthStatsOff()
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   197
end
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   198
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   199
function onNewTurn()
9534
662edfec06be many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9532
diff changeset
   200
	if not inBattle and CurrentHedgehog == green1.gear then
12514
d89dabfd07ce Use EndTurn to replace TurnTimeLeft=0 in ASA campaign (fixes #225)
Wuzzy <almikes@aol.com>
parents: 12513
diff changeset
   201
		EndTurn(true)
9534
662edfec06be many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9532
diff changeset
   202
	elseif CurrentHedgehog == green2.gear or CurrentHedgehog == green3.gear then
12514
d89dabfd07ce Use EndTurn to replace TurnTimeLeft=0 in ASA campaign (fixes #225)
Wuzzy <almikes@aol.com>
parents: 12513
diff changeset
   203
		EndTurn(true)
9536
7456b28a3421 this seems to work fine for the escape scenario
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9534
diff changeset
   204
	elseif inBattle then
7456b28a3421 this seems to work fine for the escape scenario
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9534
diff changeset
   205
		if CurrentHedgehog == green1.gear and previousHog ~= hero.gear then
12514
d89dabfd07ce Use EndTurn to replace TurnTimeLeft=0 in ASA campaign (fixes #225)
Wuzzy <almikes@aol.com>
parents: 12513
diff changeset
   206
			EndTurn(true)
9536
7456b28a3421 this seems to work fine for the escape scenario
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9534
diff changeset
   207
			return
9534
662edfec06be many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9532
diff changeset
   208
		end
9540
92329918463f game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9538
diff changeset
   209
		for i=1,table.getn(redHedgehogs) do
92329918463f game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9538
diff changeset
   210
			if CurrentHedgehog == redHedgehogs[i].gear and previousHog ~= hero.gear then
12514
d89dabfd07ce Use EndTurn to replace TurnTimeLeft=0 in ASA campaign (fixes #225)
Wuzzy <almikes@aol.com>
parents: 12513
diff changeset
   211
				EndTurn(true)
9540
92329918463f game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9538
diff changeset
   212
				return
92329918463f game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9538
diff changeset
   213
			end
92329918463f game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9538
diff changeset
   214
		end
9534
662edfec06be many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9532
diff changeset
   215
		TurnTimeLeft = 20000
9538
51596e01c5df scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9536
diff changeset
   216
		wind()
9540
92329918463f game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9538
diff changeset
   217
	elseif not inBattle and CurrentHedgehog == hero.gear then
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   218
		TurnTimeLeft = -1
9538
51596e01c5df scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9536
diff changeset
   219
		wind()
9536
7456b28a3421 this seems to work fine for the escape scenario
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9534
diff changeset
   220
	else
12514
d89dabfd07ce Use EndTurn to replace TurnTimeLeft=0 in ASA campaign (fixes #225)
Wuzzy <almikes@aol.com>
parents: 12513
diff changeset
   221
		EndTurn(true)
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   222
	end
9536
7456b28a3421 this seems to work fine for the escape scenario
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9534
diff changeset
   223
	previousHog = CurrentHedgehog
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   224
end
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   225
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   226
function onGameTick()
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   227
	AnimUnWait()
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   228
	if ShowAnimation() == false then
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   229
		return
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   230
	end
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   231
	ExecuteAfterAnimations()
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   232
	CheckEvents()
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   233
end
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   234
9746
64abf9862562 fixed wrong saved positions, illegal crate destroying and killing cap.Lime early in fruit02
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9642
diff changeset
   235
function onGameTick20()
64abf9862562 fixed wrong saved positions, illegal crate destroying and killing cap.Lime early in fruit02
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9642
diff changeset
   236
	if not permitCaptainLimeDeath and not GetHealth(green1.gear) then
64abf9862562 fixed wrong saved positions, illegal crate destroying and killing cap.Lime early in fruit02
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9642
diff changeset
   237
		-- game ends with the according stat messages
64abf9862562 fixed wrong saved positions, illegal crate destroying and killing cap.Lime early in fruit02
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9642
diff changeset
   238
		heroDeath()
64abf9862562 fixed wrong saved positions, illegal crate destroying and killing cap.Lime early in fruit02
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9642
diff changeset
   239
		permitCaptainLimeDeath = true
64abf9862562 fixed wrong saved positions, illegal crate destroying and killing cap.Lime early in fruit02
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9642
diff changeset
   240
	end
9747
abe0c8a2d573 adjusting the wind in fruit02
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9746
diff changeset
   241
	if CurrentHedgehog and GetY(CurrentHedgehog) > 1350 then
abe0c8a2d573 adjusting the wind in fruit02
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9746
diff changeset
   242
		SetWind(-40)
abe0c8a2d573 adjusting the wind in fruit02
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9746
diff changeset
   243
	end
9746
64abf9862562 fixed wrong saved positions, illegal crate destroying and killing cap.Lime early in fruit02
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9642
diff changeset
   244
end
64abf9862562 fixed wrong saved positions, illegal crate destroying and killing cap.Lime early in fruit02
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9642
diff changeset
   245
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   246
function onGearDelete(gear)
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   247
	if gear == hero.gear then
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   248
		hero.dead = true
12572
5358c4f23643 ASA fruit02: Refactor captain lime hog, use 1 gear only instead of 2
Wuzzy <almikes@aol.com>
parents: 12538
diff changeset
   249
	elseif gear == green1.gear then
9538
51596e01c5df scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9536
diff changeset
   250
		green1.dead = true
12528
7b32e83aaf48 ASA, Getting to the device: Add fake crate for the device part with proper collect message
Wuzzy <almikes@aol.com>
parents: 12520
diff changeset
   251
	elseif gear == deviceCrate.gear then
7b32e83aaf48 ASA, Getting to the device: Add fake crate for the device part with proper collect message
Wuzzy <almikes@aol.com>
parents: 12520
diff changeset
   252
		if band(GetGearMessage(gear), gmDestroy) ~= 0 then
7b32e83aaf48 ASA, Getting to the device: Add fake crate for the device part with proper collect message
Wuzzy <almikes@aol.com>
parents: 12520
diff changeset
   253
			PlaySound(sndShotgunReload)
7b32e83aaf48 ASA, Getting to the device: Add fake crate for the device part with proper collect message
Wuzzy <almikes@aol.com>
parents: 12520
diff changeset
   254
			AddCaption(loc("Anti-Gravity Device Part (+1)"), GetClanColor(GetHogClan(CurrentHedgehog)), capgrpAmmostate)
7b32e83aaf48 ASA, Getting to the device: Add fake crate for the device part with proper collect message
Wuzzy <almikes@aol.com>
parents: 12520
diff changeset
   255
			deviceCrate.collected = true
12584
46a10d3fa619 ASA, fruit02: Minor refactor
Wuzzy <almikes@aol.com>
parents: 12583
diff changeset
   256
			deviceCrate.collector = CurrentHedgehog
12528
7b32e83aaf48 ASA, Getting to the device: Add fake crate for the device part with proper collect message
Wuzzy <almikes@aol.com>
parents: 12520
diff changeset
   257
			-- Spawn rope crate
12933
e65aa3c3d4e6 Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents: 12680
diff changeset
   258
			SpawnSupplyCrate(ropeCrate.x, ropeCrate.y, ropeCrate.name)
12528
7b32e83aaf48 ASA, Getting to the device: Add fake crate for the device part with proper collect message
Wuzzy <almikes@aol.com>
parents: 12520
diff changeset
   259
		end
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   260
	end
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   261
end
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   262
9746
64abf9862562 fixed wrong saved positions, illegal crate destroying and killing cap.Lime early in fruit02
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9642
diff changeset
   263
function onGearDamage(gear, damage)
64abf9862562 fixed wrong saved positions, illegal crate destroying and killing cap.Lime early in fruit02
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9642
diff changeset
   264
	if GetGearType(gear) == gtCase then
64abf9862562 fixed wrong saved positions, illegal crate destroying and killing cap.Lime early in fruit02
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9642
diff changeset
   265
		-- in this mode every crate is essential in order to complete the mission
64abf9862562 fixed wrong saved positions, illegal crate destroying and killing cap.Lime early in fruit02
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9642
diff changeset
   266
		-- destroying a crate ends the game
64abf9862562 fixed wrong saved positions, illegal crate destroying and killing cap.Lime early in fruit02
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9642
diff changeset
   267
		heroDeath()
64abf9862562 fixed wrong saved positions, illegal crate destroying and killing cap.Lime early in fruit02
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9642
diff changeset
   268
	end
64abf9862562 fixed wrong saved positions, illegal crate destroying and killing cap.Lime early in fruit02
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9642
diff changeset
   269
end
64abf9862562 fixed wrong saved positions, illegal crate destroying and killing cap.Lime early in fruit02
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9642
diff changeset
   270
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   271
function onAmmoStoreInit()
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   272
	SetAmmo(amDEagle, 0, 0, 0, 6)
9587
d6ddcafb1c56 fixed bug not displaying fuit02 after selecting fruitPlanet from cosmos
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9582
diff changeset
   273
	SetAmmo(amGirder, 0, 0, 0, 2)
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   274
	SetAmmo(amRope, 0, 0, 0, 1)
11976
d5dabb71d6bf Add skip option to desert01, fruit02, moon01 in A Space Adventure
Wuzzy <almikes@aol.com>
parents: 11692
diff changeset
   275
	SetAmmo(amSkip, 9, 0, 0, 1)
9630
df942cfac4e6 add bonuses
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9629
diff changeset
   276
	if tonumber(getBonus(2)) == 1 then
df942cfac4e6 add bonuses
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9629
diff changeset
   277
		SetAmmo(amWatermelon, 0, 0, 0, 2)
df942cfac4e6 add bonuses
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9629
diff changeset
   278
		SetAmmo(amSniperRifle, 0, 0, 0, 2)
df942cfac4e6 add bonuses
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9629
diff changeset
   279
	else
df942cfac4e6 add bonuses
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9629
diff changeset
   280
		SetAmmo(amWatermelon, 0, 0, 0, 1)
df942cfac4e6 add bonuses
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9629
diff changeset
   281
		SetAmmo(amSniperRifle, 0, 0, 0, 1)
df942cfac4e6 add bonuses
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9629
diff changeset
   282
	end
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   283
end
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   284
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   285
function onPrecise()
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   286
	if GameTime > 3000 then
9758
3b8058b251b8 some more campaign string tweaks
sheepluva
parents: 9747
diff changeset
   287
		SetAnimSkip(true)
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   288
	end
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   289
end
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   290
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   291
-------------- EVENTS ------------------
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   292
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   293
function onHeroDeath(gear)
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   294
	if hero.dead then
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   295
		return true
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   296
	end
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   297
	return false
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   298
end
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   299
9532
4fa58a49ace1 more dialogs
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9529
diff changeset
   300
function onDeviceCrates(gear)
12528
7b32e83aaf48 ASA, Getting to the device: Add fake crate for the device part with proper collect message
Wuzzy <almikes@aol.com>
parents: 12520
diff changeset
   301
	if not hero.dead and deviceCrate.collected and StoppedGear(hero.gear) then
9532
4fa58a49ace1 more dialogs
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9529
diff changeset
   302
		return true
4fa58a49ace1 more dialogs
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9529
diff changeset
   303
	end
4fa58a49ace1 more dialogs
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9529
diff changeset
   304
	return false
4fa58a49ace1 more dialogs
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9529
diff changeset
   305
end
4fa58a49ace1 more dialogs
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9529
diff changeset
   306
9534
662edfec06be many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9532
diff changeset
   307
function onSurface(gear)
662edfec06be many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9532
diff changeset
   308
	if not hero.dead and GetY(hero.gear)<850 and  StoppedGear(hero.gear) then
662edfec06be many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9532
diff changeset
   309
		return true
662edfec06be many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9532
diff changeset
   310
	end
662edfec06be many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9532
diff changeset
   311
	return false
662edfec06be many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9532
diff changeset
   312
end
662edfec06be many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9532
diff changeset
   313
9538
51596e01c5df scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9536
diff changeset
   314
function onGaptainLimeDeath(gear)
51596e01c5df scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9536
diff changeset
   315
	if green1.dead then
51596e01c5df scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9536
diff changeset
   316
		return true
51596e01c5df scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9536
diff changeset
   317
	end
51596e01c5df scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9536
diff changeset
   318
	return false
51596e01c5df scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9536
diff changeset
   319
end
51596e01c5df scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9536
diff changeset
   320
9540
92329918463f game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9538
diff changeset
   321
function onRedTeamDeath(gear)
92329918463f game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9538
diff changeset
   322
	local redDead = true
92329918463f game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9538
diff changeset
   323
	for i=1,table.getn(redHedgehogs) do
92329918463f game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9538
diff changeset
   324
		if GetHealth(redHedgehogs[i].gear) then
92329918463f game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9538
diff changeset
   325
			redDead = false
92329918463f game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9538
diff changeset
   326
			break
92329918463f game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9538
diff changeset
   327
		end
92329918463f game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9538
diff changeset
   328
	end
92329918463f game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9538
diff changeset
   329
	return redDead
92329918463f game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9538
diff changeset
   330
end
92329918463f game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9538
diff changeset
   331
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   332
-------------- ACTIONS ------------------
9760
395ca7fe6362 It seems that at the current state it is necessary to protect sending stats/ending game from multiple execution,
sheepluva
parents: 9758
diff changeset
   333
ended = false
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   334
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   335
function heroDeath(gear)
9760
395ca7fe6362 It seems that at the current state it is necessary to protect sending stats/ending game from multiple execution,
sheepluva
parents: 9758
diff changeset
   336
	if not ended then
395ca7fe6362 It seems that at the current state it is necessary to protect sending stats/ending game from multiple execution,
sheepluva
parents: 9758
diff changeset
   337
		SendStat(siGameResult, loc("Hog Solo lost, try again!"))
11692
68eddcdc9f26 Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents: 9831
diff changeset
   338
		SendStat(siCustomAchievement, loc("To win the game, Hog Solo has to get the bottom crates and come back to the surface."))
68eddcdc9f26 Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents: 9831
diff changeset
   339
		SendStat(siCustomAchievement, loc("You can use the other 2 hogs to assist you."))
68eddcdc9f26 Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents: 9831
diff changeset
   340
		SendStat(siCustomAchievement, loc("Do not destroy the crates!"))
9760
395ca7fe6362 It seems that at the current state it is necessary to protect sending stats/ending game from multiple execution,
sheepluva
parents: 9758
diff changeset
   341
		if tookPartInBattle then
12538
952afc3d2df2 Show correct kill counts in all ASA missions (fixes #147)
Wuzzy <almikes@aol.com>
parents: 12528
diff changeset
   342
			if permitCaptainLimeDeath then
12680
5a253f158071 Eliminate some possible spoilers in stats screen of ASA: fruit02
Wuzzy <almikes@aol.com>
parents: 12587
diff changeset
   343
				SendStat(siCustomAchievement, loc("You'll have to eliminate the Fruit Assassins at the end."))
12538
952afc3d2df2 Show correct kill counts in all ASA missions (fixes #147)
Wuzzy <almikes@aol.com>
parents: 12528
diff changeset
   344
				sendSimpleTeamRankings({teamC.name, teamA.name})
952afc3d2df2 Show correct kill counts in all ASA missions (fixes #147)
Wuzzy <almikes@aol.com>
parents: 12528
diff changeset
   345
			else
952afc3d2df2 Show correct kill counts in all ASA missions (fixes #147)
Wuzzy <almikes@aol.com>
parents: 12528
diff changeset
   346
				sendSimpleTeamRankings({teamA.name})
952afc3d2df2 Show correct kill counts in all ASA missions (fixes #147)
Wuzzy <almikes@aol.com>
parents: 12528
diff changeset
   347
			end
9760
395ca7fe6362 It seems that at the current state it is necessary to protect sending stats/ending game from multiple execution,
sheepluva
parents: 9758
diff changeset
   348
		else
12538
952afc3d2df2 Show correct kill counts in all ASA missions (fixes #147)
Wuzzy <almikes@aol.com>
parents: 12528
diff changeset
   349
			if permitCaptainLimeDeath then
12680
5a253f158071 Eliminate some possible spoilers in stats screen of ASA: fruit02
Wuzzy <almikes@aol.com>
parents: 12587
diff changeset
   350
				SendStat(siCustomAchievement, loc("You'll have to eliminate Captain Lime at the end."))
12538
952afc3d2df2 Show correct kill counts in all ASA missions (fixes #147)
Wuzzy <almikes@aol.com>
parents: 12528
diff changeset
   351
				sendSimpleTeamRankings({teamB.name, teamA.name})
952afc3d2df2 Show correct kill counts in all ASA missions (fixes #147)
Wuzzy <almikes@aol.com>
parents: 12528
diff changeset
   352
			else
12680
5a253f158071 Eliminate some possible spoilers in stats screen of ASA: fruit02
Wuzzy <almikes@aol.com>
parents: 12587
diff changeset
   353
				SendStat(siCustomAchievement, loc("Don't eliminate Captain Lime before collecting the last crate!"))
12538
952afc3d2df2 Show correct kill counts in all ASA missions (fixes #147)
Wuzzy <almikes@aol.com>
parents: 12528
diff changeset
   354
				sendSimpleTeamRankings({teamA.name})
952afc3d2df2 Show correct kill counts in all ASA missions (fixes #147)
Wuzzy <almikes@aol.com>
parents: 12528
diff changeset
   355
			end
9760
395ca7fe6362 It seems that at the current state it is necessary to protect sending stats/ending game from multiple execution,
sheepluva
parents: 9758
diff changeset
   356
		end
395ca7fe6362 It seems that at the current state it is necessary to protect sending stats/ending game from multiple execution,
sheepluva
parents: 9758
diff changeset
   357
		EndGame()
395ca7fe6362 It seems that at the current state it is necessary to protect sending stats/ending game from multiple execution,
sheepluva
parents: 9758
diff changeset
   358
		ended = true
9542
d1ea2d1540f2 custom stats
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9540
diff changeset
   359
	end
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   360
end
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   361
12583
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   362
-- Device crate got taken
12528
7b32e83aaf48 ASA, Getting to the device: Add fake crate for the device part with proper collect message
Wuzzy <almikes@aol.com>
parents: 12520
diff changeset
   363
function deviceCrateEvent(gear)
12583
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   364
	-- Stop hedgehog
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   365
	SetGearMessage(deviceCrate.collector, 0)
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   366
	if deviceCrate.collector == hero.gear then
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   367
		-- Hog Solo collected the device crate
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   368
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   369
		if not tookPartInBattle then
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   370
			-- Captain Lime turns evil
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   371
			AddAnim(dialog03)
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   372
		else
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   373
			-- Fruit Assassins attack
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   374
			for i=1,table.getn(redHedgehogs) do
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   375
				RestoreHog(redHedgehogs[i].gear)
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   376
			end
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   377
			AddAnim(dialog04)
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   378
		end
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   379
		-- needs to be set to true for both plots
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   380
		permitCaptainLimeDeath = true
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   381
		AddAmmo(hero.gear, amSwitch, 0)
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   382
		AddEvent(onSurface, {hero.gear}, surface, {hero.gear}, 0)
9532
4fa58a49ace1 more dialogs
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9529
diff changeset
   383
	else
12583
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   384
		-- Player let the Green Bananas collect the crate.
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   385
		-- How dumb!
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   386
		-- Player will lose for this.
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   387
		AnimationSetup05(deviceCrate.collector)
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   388
		AddAnim(dialog05)
9532
4fa58a49ace1 more dialogs
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9529
diff changeset
   389
	end
9534
662edfec06be many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9532
diff changeset
   390
end
662edfec06be many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9532
diff changeset
   391
662edfec06be many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9532
diff changeset
   392
function surface(gear)
9536
7456b28a3421 this seems to work fine for the escape scenario
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9534
diff changeset
   393
	previousHog = -1
9538
51596e01c5df scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9536
diff changeset
   394
	if tookPartInBattle then
12583
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   395
		escapeHog(green1.gear)
9540
92329918463f game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9538
diff changeset
   396
		AddEvent(onRedTeamDeath, {green1.gear}, redTeamDeath, {green1.gear}, 0)
9538
51596e01c5df scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9536
diff changeset
   397
	else
12572
5358c4f23643 ASA fruit02: Refactor captain lime hog, use 1 gear only instead of 2
Wuzzy <almikes@aol.com>
parents: 12538
diff changeset
   398
		SetHogLevel(green1.gear, 1)
5358c4f23643 ASA fruit02: Refactor captain lime hog, use 1 gear only instead of 2
Wuzzy <almikes@aol.com>
parents: 12538
diff changeset
   399
		-- Equip Captain Lime with weapons
5358c4f23643 ASA fruit02: Refactor captain lime hog, use 1 gear only instead of 2
Wuzzy <almikes@aol.com>
parents: 12538
diff changeset
   400
		AddAmmo(green1.gear, amBazooka, 6)
5358c4f23643 ASA fruit02: Refactor captain lime hog, use 1 gear only instead of 2
Wuzzy <almikes@aol.com>
parents: 12538
diff changeset
   401
		AddAmmo(green1.gear, amGrenade, 6)
5358c4f23643 ASA fruit02: Refactor captain lime hog, use 1 gear only instead of 2
Wuzzy <almikes@aol.com>
parents: 12538
diff changeset
   402
		AddAmmo(green1.gear, amDEagle, 2)
9538
51596e01c5df scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9536
diff changeset
   403
		AddEvent(onGaptainLimeDeath, {green1.gear}, captainLimeDeath, {green1.gear}, 0)
9536
7456b28a3421 this seems to work fine for the escape scenario
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9534
diff changeset
   404
	end
12582
3016c64b5a7f ASA, fruit02: End turn when reaching surface
Wuzzy <almikes@aol.com>
parents: 12573
diff changeset
   405
	EndTurn(true)
12583
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   406
	escapeHog(green2.gear)
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   407
	escapeHog(green3.gear)
9534
662edfec06be many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9532
diff changeset
   408
	inBattle = true
9532
4fa58a49ace1 more dialogs
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9529
diff changeset
   409
end
4fa58a49ace1 more dialogs
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9529
diff changeset
   410
9538
51596e01c5df scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9536
diff changeset
   411
function captainLimeDeath(gear)
51596e01c5df scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9536
diff changeset
   412
	-- hero win in scenario of escape in 1st part
9578
16139270448f save main missions' status
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9574
diff changeset
   413
	saveCompletedStatus(3)
9642
8a691e0f117a use consts for TStatInfo enum
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9630
diff changeset
   414
	SendStat(siGameResult, loc("Congratulations, you won!"))
11692
68eddcdc9f26 Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents: 9831
diff changeset
   415
	SendStat(siCustomAchievement, loc("You retrieved the lost part."))
68eddcdc9f26 Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents: 9831
diff changeset
   416
	SendStat(siCustomAchievement, loc("You defended yourself against Captain Lime."))
12538
952afc3d2df2 Show correct kill counts in all ASA missions (fixes #147)
Wuzzy <almikes@aol.com>
parents: 12528
diff changeset
   417
	sendSimpleTeamRankings({teamA.name, teamB.name})
9538
51596e01c5df scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9536
diff changeset
   418
	EndGame()
51596e01c5df scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9536
diff changeset
   419
end
9540
92329918463f game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9538
diff changeset
   420
92329918463f game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9538
diff changeset
   421
function redTeamDeath(gear)
92329918463f game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9538
diff changeset
   422
	-- hero win in battle scenario
9578
16139270448f save main missions' status
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9574
diff changeset
   423
	saveCompletedStatus(3)
9642
8a691e0f117a use consts for TStatInfo enum
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9630
diff changeset
   424
	SendStat(siGameResult, loc("Congratulations, you won!"))
11692
68eddcdc9f26 Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents: 9831
diff changeset
   425
	SendStat(siCustomAchievement, loc("You retrieved the lost part."))
12572
5358c4f23643 ASA fruit02: Refactor captain lime hog, use 1 gear only instead of 2
Wuzzy <almikes@aol.com>
parents: 12538
diff changeset
   426
	SendStat(siCustomAchievement, loc("You defended yourself against the Fruit Assassins."))
12538
952afc3d2df2 Show correct kill counts in all ASA missions (fixes #147)
Wuzzy <almikes@aol.com>
parents: 12528
diff changeset
   427
	sendSimpleTeamRankings({teamA.name, teamC.name})
9540
92329918463f game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9538
diff changeset
   428
	EndGame()
92329918463f game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9538
diff changeset
   429
end
92329918463f game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9538
diff changeset
   430
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   431
-------------- ANIMATIONS ------------------
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   432
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   433
function Skipanim(anim)
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   434
	if goals[anim] ~= nil then
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   435
		ShowMission(unpack(goals[anim]))
12572
5358c4f23643 ASA fruit02: Refactor captain lime hog, use 1 gear only instead of 2
Wuzzy <almikes@aol.com>
parents: 12538
diff changeset
   436
	end
5358c4f23643 ASA fruit02: Refactor captain lime hog, use 1 gear only instead of 2
Wuzzy <almikes@aol.com>
parents: 12538
diff changeset
   437
	if anim == dialog03 then
5358c4f23643 ASA fruit02: Refactor captain lime hog, use 1 gear only instead of 2
Wuzzy <almikes@aol.com>
parents: 12538
diff changeset
   438
		makeCptLimeEvil()
12583
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   439
	elseif anim == dialog05 then
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   440
		heroIsAStupidFool()
12572
5358c4f23643 ASA fruit02: Refactor captain lime hog, use 1 gear only instead of 2
Wuzzy <almikes@aol.com>
parents: 12538
diff changeset
   441
	else
5358c4f23643 ASA fruit02: Refactor captain lime hog, use 1 gear only instead of 2
Wuzzy <almikes@aol.com>
parents: 12538
diff changeset
   442
		EndTurn(true)
5358c4f23643 ASA fruit02: Refactor captain lime hog, use 1 gear only instead of 2
Wuzzy <almikes@aol.com>
parents: 12538
diff changeset
   443
	end
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   444
end
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   445
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   446
function AnimationSetup()
9529
e95aab9130d8 first dialogs
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9527
diff changeset
   447
	-- DIALOG 01 - Start, Captain Lime helps Hog Solo because he took part in the battle
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   448
	AddSkipFunction(dialog01, Skipanim, {dialog01})
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   449
	table.insert(dialog01, {func = AnimWait, args = {hero.gear, 3000}})
11692
68eddcdc9f26 Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents: 9831
diff changeset
   450
	table.insert(dialog01, {func = AnimCaption, args = {hero.gear, loc("Somewhere else on the planet of fruits, Captain Lime helps Hog Solo"), 5000}})
9529
e95aab9130d8 first dialogs
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9527
diff changeset
   451
	table.insert(dialog01, {func = AnimSay, args = {green1.gear, loc("You fought bravely and you helped us win this battle!"), SAY_SAY, 5000}})
9574
da3d39667881 strings checked, all ok except ice02 that will be probably changed
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9554
diff changeset
   452
	table.insert(dialog01, {func = AnimSay, args = {green1.gear, loc("So, as promised I have brought you where I think that the device you are looking for is hidden."), SAY_SAY, 7000}})
9758
3b8058b251b8 some more campaign string tweaks
sheepluva
parents: 9747
diff changeset
   453
	table.insert(dialog01, {func = AnimSay, args = {green1.gear, loc("I know that your resources are low due to the battle but I'll send two of my best hogs to assist you."), SAY_SAY, 7000}})
9529
e95aab9130d8 first dialogs
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9527
diff changeset
   454
	table.insert(dialog01, {func = AnimSay, args = {green1.gear, loc("Good luck!"), SAY_SAY, 2000}})
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   455
	table.insert(dialog01, {func = AnimWait, args = {hero.gear, 500}})
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   456
	table.insert(dialog01, {func = AnimSwitchHog, args = {hero.gear}})
12572
5358c4f23643 ASA fruit02: Refactor captain lime hog, use 1 gear only instead of 2
Wuzzy <almikes@aol.com>
parents: 12538
diff changeset
   457
	table.insert(dialog01, {func = ShowMission, args = goals[dialog01]})
9529
e95aab9130d8 first dialogs
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9527
diff changeset
   458
	-- DIALOG02 - Start, Hog Solo escaped from the previous battle
e95aab9130d8 first dialogs
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9527
diff changeset
   459
	AddSkipFunction(dialog02, Skipanim, {dialog02})
e95aab9130d8 first dialogs
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9527
diff changeset
   460
	table.insert(dialog02, {func = AnimWait, args = {hero.gear, 3000}})
11692
68eddcdc9f26 Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents: 9831
diff changeset
   461
	table.insert(dialog02, {func = AnimCaption, args = {hero.gear, loc("Somewhere else on the planet of fruits Hog Solo gets closer to the device"), 5000}})
68eddcdc9f26 Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents: 9831
diff changeset
   462
	table.insert(dialog02, {func = AnimSay, args = {green1.gear, loc("You are the one who fled! So, you are alive."), SAY_SAY, 4000}})
68eddcdc9f26 Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents: 9831
diff changeset
   463
	table.insert(dialog02, {func = AnimSay, args = {green1.gear, loc("I'm still low on hogs. If you are not afraid I could use a set of extra hands."), SAY_SAY, 4000}})
9529
e95aab9130d8 first dialogs
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9527
diff changeset
   464
	table.insert(dialog02, {func = AnimWait, args = {hero.gear, 8000}})
11692
68eddcdc9f26 Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents: 9831
diff changeset
   465
	table.insert(dialog02, {func = AnimSay, args = {hero.gear, loc("I am sorry but I was looking for a device that may be hidden somewhere around here."), SAY_SAY, 4500}})
9529
e95aab9130d8 first dialogs
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9527
diff changeset
   466
	table.insert(dialog02, {func = AnimWait, args = {green1.gear, 12500}})
9574
da3d39667881 strings checked, all ok except ice02 that will be probably changed
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9554
diff changeset
   467
	table.insert(dialog02, {func = AnimSay, args = {green1.gear, loc("Many long forgotten things can be found in the same tunnels that we are about to explore!"), SAY_SAY, 7000}})
11692
68eddcdc9f26 Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents: 9831
diff changeset
   468
	table.insert(dialog02, {func = AnimSay, args = {green1.gear, loc("If you help us you can keep the device if you find it but we'll keep everything else."), SAY_SAY, 7000}})
9529
e95aab9130d8 first dialogs
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9527
diff changeset
   469
	table.insert(dialog02, {func = AnimSay, args = {green1.gear, loc("What do you say? Are you in?"), SAY_SAY, 3000}})
e95aab9130d8 first dialogs
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9527
diff changeset
   470
	table.insert(dialog02, {func = AnimWait, args = {hero.gear, 1800}})
11692
68eddcdc9f26 Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents: 9831
diff changeset
   471
	table.insert(dialog02, {func = AnimSay, args = {hero.gear, loc("Okay then!"), SAY_SAY, 2000}})
9529
e95aab9130d8 first dialogs
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9527
diff changeset
   472
	table.insert(dialog02, {func = AnimSwitchHog, args = {hero.gear}})
12572
5358c4f23643 ASA fruit02: Refactor captain lime hog, use 1 gear only instead of 2
Wuzzy <almikes@aol.com>
parents: 12538
diff changeset
   473
	table.insert(dialog02, {func = ShowMission, args = goals[dialog02]})
9532
4fa58a49ace1 more dialogs
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9529
diff changeset
   474
	-- DIALOG03 - At crates, hero learns that Captain Lime is bad
4fa58a49ace1 more dialogs
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9529
diff changeset
   475
	AddSkipFunction(dialog03, Skipanim, {dialog03})
12583
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   476
	table.insert(dialog03, {func = AnimWait, args = {hero.gear, 2000}})
9534
662edfec06be many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9532
diff changeset
   477
	table.insert(dialog03, {func = FollowGear, args = {hero.gear}})
11692
68eddcdc9f26 Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents: 9831
diff changeset
   478
	table.insert(dialog03, {func = AnimSay, args = {hero.gear, loc("Hooray! I've found it, now I have to get back to Captain Lime!"), SAY_SAY, 4000}})
9532
4fa58a49ace1 more dialogs
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9529
diff changeset
   479
	table.insert(dialog03, {func = AnimWait, args = {green1.gear, 4000}})
9758
3b8058b251b8 some more campaign string tweaks
sheepluva
parents: 9747
diff changeset
   480
	table.insert(dialog03, {func = AnimSay, args = {green1.gear, loc("This Hog Solo is so naive! When he returns I'll shoot him and keep that device for myself!"), SAY_THINK, 4000}})
12572
5358c4f23643 ASA fruit02: Refactor captain lime hog, use 1 gear only instead of 2
Wuzzy <almikes@aol.com>
parents: 12538
diff changeset
   481
	table.insert(dialog03, {func = ShowMission, args = goals[dialog03]})
5358c4f23643 ASA fruit02: Refactor captain lime hog, use 1 gear only instead of 2
Wuzzy <almikes@aol.com>
parents: 12538
diff changeset
   482
	table.insert(dialog03, {func = makeCptLimeEvil, args = {hero.gear}})
9831
afa4e3e04cc5 typos correction
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9810
diff changeset
   483
	-- DIALOG04 - At crates, hero learns about the Assassins ambush
9534
662edfec06be many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9532
diff changeset
   484
	AddSkipFunction(dialog04, Skipanim, {dialog04})
12583
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   485
	table.insert(dialog04, {func = AnimWait, args = {hero.gear, 2000}})
9534
662edfec06be many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9532
diff changeset
   486
	table.insert(dialog04, {func = FollowGear, args = {hero.gear}})
11692
68eddcdc9f26 Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents: 9831
diff changeset
   487
	table.insert(dialog04, {func = AnimSay, args = {hero.gear, loc("Hooray! I've found it, now I have to get back to Captain Lime!"), SAY_SAY, 4000}})
9534
662edfec06be many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9532
diff changeset
   488
	table.insert(dialog04, {func = AnimWait, args = {redHedgehogs[1].gear, 4000}})
662edfec06be many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9532
diff changeset
   489
	table.insert(dialog04, {func = AnimSay, args = {redHedgehogs[1].gear, loc("We have spotted the enemy! We'll attack when the enemies start gathering!"), SAY_THINK, 4000}})
12572
5358c4f23643 ASA fruit02: Refactor captain lime hog, use 1 gear only instead of 2
Wuzzy <almikes@aol.com>
parents: 12538
diff changeset
   490
	table.insert(dialog04, {func = ShowMission, args = goals[dialog04]})
9534
662edfec06be many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9532
diff changeset
   491
	table.insert(dialog04, {func = goToThesurface, args = {hero.gear}})
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   492
end
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   493
12583
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   494
function AnimationSetup05(collector)
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   495
	-- DIALOG05 - A member or the green bananas collected the target crate and steals it. Player loses
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   496
	AddSkipFunction(dialog05, Skipanim, {dialog05})
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   497
	table.insert(dialog05, {func = AnimWait, args = {collector, 2000}})
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   498
	table.insert(dialog05, {func = FollowGear, args = {collector}})
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   499
	table.insert(dialog05, {func = AnimSay, args = {collector, loc("Oh yes! I got the device part! Now it belongs to me alone."), SAY_SAY, 4000}})
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   500
	table.insert(dialog05, {func = AnimWait, args = {collector, 3000}})
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   501
	table.insert(dialog05, {func = AnimSay, args = {hero.gear, loc("Hey! I was supposed to collect it!"), SAY_SHOUT, 3000}})
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   502
	table.insert(dialog05, {func = AnimWait, args = {hero.gear, 3000}})
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   503
	table.insert(dialog05, {func = AnimSay, args = {collector, loc("I don't care. It's worth a fortune! Good bye, you idiot!"), SAY_SAY, 5000}})
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   504
	table.insert(dialog05, {func = heroIsAStupidFool, args = {collector}})
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   505
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   506
end
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   507
9527
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   508
------------- OTHER FUNCTIONS ---------------
676fc574ff42 fruit planet part 2
Periklis Ntanasis <pntanasis@gmail.com>
parents:
diff changeset
   509
12583
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   510
-- Hide hog and create a simple escaping effect, if hog exists.
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   511
-- No-op is hog does not exist
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   512
function escapeHog(gear)
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   513
	if GetHealth(gear) then
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   514
		AddVisualGear(GetX(gear), GetY(gear), vgtSmokeWhite, 0, false)
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   515
		for i=1, 4 do
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   516
			AddVisualGear(GetX(gear)-16+math.random(32), GetY(gear)-16+math.random(32), vgtSmokeWhite, 0, false)
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   517
		end
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   518
		HideHog(gear)
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   519
	end
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   520
end
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   521
12572
5358c4f23643 ASA fruit02: Refactor captain lime hog, use 1 gear only instead of 2
Wuzzy <almikes@aol.com>
parents: 12538
diff changeset
   522
function makeCptLimeEvil()
5358c4f23643 ASA fruit02: Refactor captain lime hog, use 1 gear only instead of 2
Wuzzy <almikes@aol.com>
parents: 12538
diff changeset
   523
	-- Turn Captain Lime evil
5358c4f23643 ASA fruit02: Refactor captain lime hog, use 1 gear only instead of 2
Wuzzy <almikes@aol.com>
parents: 12538
diff changeset
   524
	SetHogLevel(green1.gear, 1)
5358c4f23643 ASA fruit02: Refactor captain lime hog, use 1 gear only instead of 2
Wuzzy <almikes@aol.com>
parents: 12538
diff changeset
   525
	EndTurn(true)
5358c4f23643 ASA fruit02: Refactor captain lime hog, use 1 gear only instead of 2
Wuzzy <almikes@aol.com>
parents: 12538
diff changeset
   526
end
5358c4f23643 ASA fruit02: Refactor captain lime hog, use 1 gear only instead of 2
Wuzzy <almikes@aol.com>
parents: 12538
diff changeset
   527
9534
662edfec06be many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9532
diff changeset
   528
function goToThesurface()
12514
d89dabfd07ce Use EndTurn to replace TurnTimeLeft=0 in ASA campaign (fixes #225)
Wuzzy <almikes@aol.com>
parents: 12513
diff changeset
   529
	EndTurn(true)
9534
662edfec06be many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9532
diff changeset
   530
end
9538
51596e01c5df scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9536
diff changeset
   531
12583
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   532
-- Player let wrong hog collect crate
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   533
function heroIsAStupidFool()
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   534
	if not ended then
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   535
		escapeHog(deviceCrate.collector)
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   536
		AddCaption(loc("The device part has been stolen!"))
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   537
		sendSimpleTeamRankings({teamA.name})
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   538
		SendStat(siGameResult, loc("Hog Solo lost, try again!"))
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   539
		SendStat(siCustomAchievement, loc("Oh no, the Green Bananas have betrayed Hog Solo and stole the anti-gravity device part!"))
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   540
		SendStat(siCustomAchievement, loc("Only Hog Solo can be trusted with the crate."))
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   541
		EndGame()
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   542
		ended = true
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   543
	end
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   544
end
da2bdc34bb1c ASA, fruit02: Fail mission if player let wrong hog collect device part
Wuzzy <almikes@aol.com>
parents: 12582
diff changeset
   545
9538
51596e01c5df scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9536
diff changeset
   546
function wind()
9810
54c0fdec4600 changing math functions that may cause desyncs
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9782
diff changeset
   547
	SetWind(GetRandom(201)-100)
9538
51596e01c5df scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9536
diff changeset
   548
end
9544
e247251fa751 position saving functions
Periklis Ntanasis <pntanasis@gmail.com>
parents: 9542
diff changeset
   549