author | Wuzzy <almikes@aol.com> |
Wed, 27 Sep 2017 04:28:34 +0200 | |
changeset 12554 | d8af6f9b51c6 |
parent 12543 | 952afc3d2df2 |
child 12577 | 5358c4f23643 |
permissions | -rw-r--r-- |
9527 | 1 |
------------------- ABOUT ---------------------- |
2 |
-- |
|
3 |
-- In this adventure hero gets the lost part with |
|
4 |
-- the help of the green bananas hogs. |
|
5 |
||
6 |
HedgewarsScriptLoad("/Scripts/Locale.lua") |
|
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 | 9 |
|
10 |
----------------- VARIABLES -------------------- |
|
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 | 13 |
local inBattle = false |
9529 | 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 | 17 |
-- dialogs |
18 |
local dialog01 = {} |
|
19 |
local dialog02 = {} |
|
20 |
local dialog03 = {} |
|
9534
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
21 |
local dialog04 = {} |
9527 | 22 |
-- mission objectives |
12231
3ec0261e01f0
Display mines timer in all missions with non-default timer
Wuzzy <almikes@aol.com>
parents:
12229
diff
changeset
|
23 |
local minesTimeText = loc("Mines time: 0 seconds") |
9527 | 24 |
local goals = { |
12430
f9cbb896967b
Fix 3 more incorrect uses of loc() in scripts
Wuzzy <almikes@aol.com>
parents:
12231
diff
changeset
|
25 |
[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}, |
12231
3ec0261e01f0
Display mines timer in all missions with non-default timer
Wuzzy <almikes@aol.com>
parents:
12229
diff
changeset
|
26 |
[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:
12229
diff
changeset
|
27 |
[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:
12229
diff
changeset
|
28 |
[dialog04] = {missionName, loc("Return to the Surface"), loc("Go to the surface!").."|"..loc("Attack the assassins before they attack back").."|"..minesTimeText, 1, 4000}, |
9527 | 29 |
} |
9542 | 30 |
-- crates |
12533
7b32e83aaf48
ASA, Getting to the device: Add fake crate for the device part with proper collect message
Wuzzy <almikes@aol.com>
parents:
12525
diff
changeset
|
31 |
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:
12525
diff
changeset
|
32 |
|
9552
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
33 |
local eagleCrate = {name = amDEagle, x = 1680, y = 1650} |
12533
7b32e83aaf48
ASA, Getting to the device: Add fake crate for the device part with proper collect message
Wuzzy <almikes@aol.com>
parents:
12525
diff
changeset
|
34 |
|
7b32e83aaf48
ASA, Getting to the device: Add fake crate for the device part with proper collect message
Wuzzy <almikes@aol.com>
parents:
12525
diff
changeset
|
35 |
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:
12525
diff
changeset
|
36 |
local deviceCrate = { gear = nil, x = 1360, y = 1870} |
9552
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
37 |
local ropeCrate = {name = amRope, x = 1400, y = 1870} |
9527 | 38 |
-- hogs |
39 |
local hero = {} |
|
40 |
local green1 = {} |
|
41 |
local green2 = {} |
|
42 |
local green3 = {} |
|
43 |
-- teams |
|
44 |
local teamA = {} |
|
45 |
local teamB = {} |
|
46 |
local teamC = {} |
|
47 |
-- hedgehogs values |
|
9574
da3d39667881
strings checked, all ok except ice02 that will be probably changed
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9554
diff
changeset
|
48 |
hero.name = loc("Hog Solo") |
9527 | 49 |
hero.x = 1200 |
50 |
hero.y = 820 |
|
51 |
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
|
52 |
green1.name = loc("Captain Lime") |
9527 | 53 |
green1.x = 1050 |
54 |
green1.y = 820 |
|
9538
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
55 |
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
|
56 |
green2.name = loc("Mister Pear") |
9527 | 57 |
green2.x = 1350 |
58 |
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
|
59 |
green3.name = loc("Lady Mango") |
9527 | 60 |
green3.x = 1450 |
61 |
green3.y = 820 |
|
62 |
local redHedgehogs = { |
|
9574
da3d39667881
strings checked, all ok except ice02 that will be probably changed
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9554
diff
changeset
|
63 |
{ 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
|
64 |
{ 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
|
65 |
{ 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
|
66 |
{ name = loc("Deadly Grape") } |
9527 | 67 |
} |
68 |
teamA.name = loc("Hog Solo and GB") |
|
69 |
teamA.color = tonumber("38D61C",16) -- green |
|
70 |
teamB.name = loc("Captain Lime") |
|
9538
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
71 |
teamB.color = tonumber("38D61D",16) -- greenish |
9831 | 72 |
teamC.name = loc("Fruit Assassins") |
9527 | 73 |
teamC.color = tonumber("FF0000",16) -- red |
74 |
||
75 |
function onGameInit() |
|
9538
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
76 |
GameFlags = gfDisableWind |
9527 | 77 |
Seed = 1 |
78 |
TurnTime = 20000 |
|
79 |
CaseFreq = 0 |
|
80 |
MinesNum = 0 |
|
81 |
MinesTime = 1 |
|
82 |
Explosives = 0 |
|
83 |
Delay = 3 |
|
12229
d62d6f8ebef1
Disable Sudden Death consistently in all missions which don't require it
Wuzzy <almikes@aol.com>
parents:
12093
diff
changeset
|
84 |
-- Disable Sudden Death |
d62d6f8ebef1
Disable Sudden Death consistently in all missions which don't require it
Wuzzy <almikes@aol.com>
parents:
12093
diff
changeset
|
85 |
HealthDecrease = 0 |
d62d6f8ebef1
Disable Sudden Death consistently in all missions which don't require it
Wuzzy <almikes@aol.com>
parents:
12093
diff
changeset
|
86 |
WaterRise = 0 |
9527 | 87 |
Map = "fruit02_map" |
88 |
Theme = "Fruit" |
|
9758 | 89 |
|
9552
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
90 |
local health = 100 |
9758 | 91 |
|
9527 | 92 |
-- Hog Solo and Green Bananas |
12054
030464f34d47
Tweak flags used in all missions to fit more to the theme
Wuzzy <almikes@aol.com>
parents:
11981
diff
changeset
|
93 |
AddTeam(teamA.name, teamA.color, "Bone", "Island", "HillBilly", "hedgehog") |
9552
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
94 |
hero.gear = AddHog(hero.name, 0, health, "war_desertgrenadier1") |
9527 | 95 |
AnimSetGearPosition(hero.gear, hero.x, hero.y) |
9758 | 96 |
HogTurnLeft(hero.gear, true) |
9629 | 97 |
green2.gear = AddHog(green2.name, 0, 100, "war_britmedic") |
9527 | 98 |
AnimSetGearPosition(green2.gear, green2.x, green2.y) |
99 |
HogTurnLeft(green2.gear, true) |
|
9629 | 100 |
green3.gear = AddHog(green3.name, 0, 100, "hair_red") |
9527 | 101 |
AnimSetGearPosition(green3.gear, green3.x, green3.y) |
102 |
HogTurnLeft(green3.gear, true) |
|
103 |
-- Captain Lime |
|
12054
030464f34d47
Tweak flags used in all missions to fit more to the theme
Wuzzy <almikes@aol.com>
parents:
11981
diff
changeset
|
104 |
AddTeam(teamB.name, teamB.color, "Bone", "Island", "HillBilly", "congo-brazzaville") |
9629 | 105 |
green1.human = AddHog(green1.name, 0, 100, "war_desertofficer") |
9538
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
106 |
AnimSetGearPosition(green1.human, green1.x, green1.y) |
9629 | 107 |
green1.bot = AddHog(green1.name, 1, 100, "war_desertofficer") |
9538
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
108 |
AnimSetGearPosition(green1.bot, green1.x, green1.y) |
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
109 |
green1.gear = green1.human |
9831 | 110 |
-- Fruit Assassins |
9629 | 111 |
local assasinsHats = { "NinjaFull", "NinjaStraight", "NinjaTriangle" } |
12054
030464f34d47
Tweak flags used in all missions to fit more to the theme
Wuzzy <almikes@aol.com>
parents:
11981
diff
changeset
|
112 |
AddTeam(teamC.name, teamC.color, "Bone", "Island", "HillBilly", "cm_scout") |
9527 | 113 |
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
|
114 |
redHedgehogs[i].gear = AddHog(redHedgehogs[i].name, 1, 100, assasinsHats[GetRandom(3)+1]) |
9527 | 115 |
AnimSetGearPosition(redHedgehogs[i].gear, 2010 + 50*i, 630) |
116 |
end |
|
117 |
||
12093
1da37e2ba6fd
Fix A Space Adventure Missions allowing player to walk before 1st animation and screw things up
Wuzzy <almikes@aol.com>
parents:
12054
diff
changeset
|
118 |
AnimInit(true) |
9758 | 119 |
AnimationSetup() |
9527 | 120 |
end |
121 |
||
122 |
function onGameStart() |
|
123 |
AnimWait(hero.gear, 3000) |
|
124 |
FollowGear(hero.gear) |
|
9758 | 125 |
|
9540
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
126 |
if GetCampaignVar("Fruit01JoinedBattle") and GetCampaignVar("Fruit01JoinedBattle") == "true" then |
9529 | 127 |
tookPartInBattle = true |
128 |
end |
|
9758 | 129 |
|
9527 | 130 |
AddEvent(onHeroDeath, {hero.gear}, heroDeath, {hero.gear}, 0) |
12533
7b32e83aaf48
ASA, Getting to the device: Add fake crate for the device part with proper collect message
Wuzzy <almikes@aol.com>
parents:
12525
diff
changeset
|
131 |
AddEvent(onDeviceCrates, {hero.gear}, deviceCrateEvent, {hero.gear}, 0) |
9758 | 132 |
|
9527 | 133 |
-- Hog Solo and GB weapons |
134 |
AddAmmo(hero.gear, amSwitch, 100) |
|
9538
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
135 |
-- Captain Lime weapons |
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
136 |
AddAmmo(green1.bot, amBazooka, 6) |
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
137 |
AddAmmo(green1.bot, amGrenade, 6) |
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
138 |
AddAmmo(green1.bot, amDEagle, 2) |
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
139 |
HideHog(green1.bot) |
9831 | 140 |
-- Assassins weapons |
9527 | 141 |
AddAmmo(redHedgehogs[1].gear, amBazooka, 6) |
142 |
AddAmmo(redHedgehogs[1].gear, amGrenade, 6) |
|
9540
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
143 |
AddAmmo(redHedgehogs[1].bot, amDEagle, 6) |
9527 | 144 |
for i=1,table.getn(redHedgehogs) do |
145 |
HideHog(redHedgehogs[i].gear) |
|
146 |
end |
|
9758 | 147 |
|
9527 | 148 |
-- explosives |
149 |
-- I wanted to use FindPlace but doesn't accept height values... |
|
150 |
local x1 = 950 |
|
9538
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
151 |
local x2 = 1306 |
9527 | 152 |
local y1 = 1210 |
153 |
local y2 = 1620 |
|
154 |
while true do |
|
155 |
if y2<y1 then |
|
156 |
break |
|
157 |
end |
|
158 |
if x2<x1 then |
|
159 |
x2 = 1305 |
|
9538
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
160 |
y2 = y2 - 50 |
9527 | 161 |
end |
162 |
if not TestRectForObstacle(x2+25, y2+25, x2-25, y2-25, true) then |
|
163 |
AddGear(x2, y2, gtExplosives, 0, 0, 0, 0) |
|
164 |
end |
|
9538
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
165 |
x2 = x2 - 25 |
9527 | 166 |
end |
167 |
AddGear(3128, 1680, gtExplosives, 0, 0, 0, 0) |
|
9758 | 168 |
|
9527 | 169 |
--mines |
170 |
AddGear(3135, 1680, gtMine, 0, 0, 0, 0) |
|
171 |
AddGear(3145, 1680, gtMine, 0, 0, 0, 0) |
|
172 |
AddGear(3155, 1680, gtMine, 0, 0, 0, 0) |
|
173 |
AddGear(3165, 1680, gtMine, 0, 0, 0, 0) |
|
174 |
AddGear(3175, 1680, gtMine, 0, 0, 0, 0) |
|
175 |
AddGear(3115, 1680, gtMine, 0, 0, 0, 0) |
|
176 |
AddGear(3105, 1680, gtMine, 0, 0, 0, 0) |
|
177 |
AddGear(3095, 1680, gtMine, 0, 0, 0, 0) |
|
178 |
AddGear(3085, 1680, gtMine, 0, 0, 0, 0) |
|
9758 | 179 |
AddGear(3075, 1680, gtMine, 0, 0, 0, 0) |
9552
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
180 |
|
12525
22f2a586b9ca
Remove checkpoints in ASA: Getting to the device
Wuzzy <almikes@aol.com>
parents:
12519
diff
changeset
|
181 |
AddAmmo(hero.gear, amFirePunch, 3) |
22f2a586b9ca
Remove checkpoints in ASA: Getting to the device
Wuzzy <almikes@aol.com>
parents:
12519
diff
changeset
|
182 |
if tookPartInBattle then |
22f2a586b9ca
Remove checkpoints in ASA: Getting to the device
Wuzzy <almikes@aol.com>
parents:
12519
diff
changeset
|
183 |
AddAnim(dialog01) |
22f2a586b9ca
Remove checkpoints in ASA: Getting to the device
Wuzzy <almikes@aol.com>
parents:
12519
diff
changeset
|
184 |
else |
22f2a586b9ca
Remove checkpoints in ASA: Getting to the device
Wuzzy <almikes@aol.com>
parents:
12519
diff
changeset
|
185 |
AddAnim(dialog02) |
9552
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
186 |
end |
9758 | 187 |
|
9552
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
188 |
-- place crates |
12525
22f2a586b9ca
Remove checkpoints in ASA: Getting to the device
Wuzzy <almikes@aol.com>
parents:
12519
diff
changeset
|
189 |
SpawnUtilityCrate(girderCrate.x, girderCrate.y, girderCrate.name) |
22f2a586b9ca
Remove checkpoints in ASA: Getting to the device
Wuzzy <almikes@aol.com>
parents:
12519
diff
changeset
|
190 |
SpawnAmmoCrate(eagleCrate.x, eagleCrate.y, eagleCrate.name) |
12533
7b32e83aaf48
ASA, Getting to the device: Add fake crate for the device part with proper collect message
Wuzzy <almikes@aol.com>
parents:
12525
diff
changeset
|
191 |
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:
12525
diff
changeset
|
192 |
-- 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:
12525
diff
changeset
|
193 |
-- 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:
12525
diff
changeset
|
194 |
-- the device part. |
9552
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
195 |
|
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
196 |
if tookPartInBattle then |
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
197 |
SpawnAmmoCrate(weaponCrate.x, weaponCrate.y, amWatermelon) |
90d69a2c1729
checkpoint system seems complete
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9550
diff
changeset
|
198 |
else |
9758 | 199 |
SpawnAmmoCrate(weaponCrate.x, weaponCrate.y, amSniperRifle) |
9548 | 200 |
end |
9758 | 201 |
|
9527 | 202 |
SendHealthStatsOff() |
203 |
end |
|
204 |
||
205 |
function onNewTurn() |
|
9534
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
206 |
if not inBattle and CurrentHedgehog == green1.gear then |
12519
d89dabfd07ce
Use EndTurn to replace TurnTimeLeft=0 in ASA campaign (fixes #225)
Wuzzy <almikes@aol.com>
parents:
12518
diff
changeset
|
207 |
EndTurn(true) |
9534
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
208 |
elseif CurrentHedgehog == green2.gear or CurrentHedgehog == green3.gear then |
12519
d89dabfd07ce
Use EndTurn to replace TurnTimeLeft=0 in ASA campaign (fixes #225)
Wuzzy <almikes@aol.com>
parents:
12518
diff
changeset
|
209 |
EndTurn(true) |
9536
7456b28a3421
this seems to work fine for the escape scenario
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9534
diff
changeset
|
210 |
elseif inBattle then |
7456b28a3421
this seems to work fine for the escape scenario
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9534
diff
changeset
|
211 |
if CurrentHedgehog == green1.gear and previousHog ~= hero.gear then |
12519
d89dabfd07ce
Use EndTurn to replace TurnTimeLeft=0 in ASA campaign (fixes #225)
Wuzzy <almikes@aol.com>
parents:
12518
diff
changeset
|
212 |
EndTurn(true) |
9536
7456b28a3421
this seems to work fine for the escape scenario
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9534
diff
changeset
|
213 |
return |
9534
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
214 |
end |
9540
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
215 |
for i=1,table.getn(redHedgehogs) do |
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
216 |
if CurrentHedgehog == redHedgehogs[i].gear and previousHog ~= hero.gear then |
12519
d89dabfd07ce
Use EndTurn to replace TurnTimeLeft=0 in ASA campaign (fixes #225)
Wuzzy <almikes@aol.com>
parents:
12518
diff
changeset
|
217 |
EndTurn(true) |
9540
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
218 |
return |
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
219 |
end |
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
220 |
end |
9534
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
221 |
TurnTimeLeft = 20000 |
9538
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
222 |
wind() |
9540
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
223 |
elseif not inBattle and CurrentHedgehog == hero.gear then |
9527 | 224 |
TurnTimeLeft = -1 |
9538
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
225 |
wind() |
9536
7456b28a3421
this seems to work fine for the escape scenario
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9534
diff
changeset
|
226 |
else |
12519
d89dabfd07ce
Use EndTurn to replace TurnTimeLeft=0 in ASA campaign (fixes #225)
Wuzzy <almikes@aol.com>
parents:
12518
diff
changeset
|
227 |
EndTurn(true) |
9527 | 228 |
end |
9536
7456b28a3421
this seems to work fine for the escape scenario
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9534
diff
changeset
|
229 |
previousHog = CurrentHedgehog |
9527 | 230 |
end |
231 |
||
232 |
function onGameTick() |
|
233 |
AnimUnWait() |
|
234 |
if ShowAnimation() == false then |
|
235 |
return |
|
236 |
end |
|
237 |
ExecuteAfterAnimations() |
|
238 |
CheckEvents() |
|
239 |
end |
|
240 |
||
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
|
241 |
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
|
242 |
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
|
243 |
-- 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
|
244 |
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
|
245 |
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
|
246 |
end |
9747
abe0c8a2d573
adjusting the wind in fruit02
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9746
diff
changeset
|
247 |
if CurrentHedgehog and GetY(CurrentHedgehog) > 1350 then |
abe0c8a2d573
adjusting the wind in fruit02
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9746
diff
changeset
|
248 |
SetWind(-40) |
abe0c8a2d573
adjusting the wind in fruit02
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9746
diff
changeset
|
249 |
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
|
250 |
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
|
251 |
|
9527 | 252 |
function onGearDelete(gear) |
253 |
if gear == hero.gear then |
|
254 |
hero.dead = true |
|
9538
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
255 |
elseif gear == green1.bot then |
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
256 |
green1.dead = true |
12533
7b32e83aaf48
ASA, Getting to the device: Add fake crate for the device part with proper collect message
Wuzzy <almikes@aol.com>
parents:
12525
diff
changeset
|
257 |
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:
12525
diff
changeset
|
258 |
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:
12525
diff
changeset
|
259 |
PlaySound(sndShotgunReload) |
7b32e83aaf48
ASA, Getting to the device: Add fake crate for the device part with proper collect message
Wuzzy <almikes@aol.com>
parents:
12525
diff
changeset
|
260 |
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:
12525
diff
changeset
|
261 |
deviceCrate.collected = true |
7b32e83aaf48
ASA, Getting to the device: Add fake crate for the device part with proper collect message
Wuzzy <almikes@aol.com>
parents:
12525
diff
changeset
|
262 |
-- Spawn rope crate |
7b32e83aaf48
ASA, Getting to the device: Add fake crate for the device part with proper collect message
Wuzzy <almikes@aol.com>
parents:
12525
diff
changeset
|
263 |
SpawnUtilityCrate(ropeCrate.x, ropeCrate.y, ropeCrate.name) |
7b32e83aaf48
ASA, Getting to the device: Add fake crate for the device part with proper collect message
Wuzzy <almikes@aol.com>
parents:
12525
diff
changeset
|
264 |
end |
9527 | 265 |
end |
266 |
end |
|
267 |
||
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
|
268 |
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
|
269 |
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
|
270 |
-- 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
|
271 |
-- 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
|
272 |
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
|
273 |
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
|
274 |
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
|
275 |
|
9527 | 276 |
function onAmmoStoreInit() |
277 |
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
|
278 |
SetAmmo(amGirder, 0, 0, 0, 2) |
9527 | 279 |
SetAmmo(amRope, 0, 0, 0, 1) |
11981
d5dabb71d6bf
Add skip option to desert01, fruit02, moon01 in A Space Adventure
Wuzzy <almikes@aol.com>
parents:
11697
diff
changeset
|
280 |
SetAmmo(amSkip, 9, 0, 0, 1) |
9630 | 281 |
if tonumber(getBonus(2)) == 1 then |
282 |
SetAmmo(amWatermelon, 0, 0, 0, 2) |
|
283 |
SetAmmo(amSniperRifle, 0, 0, 0, 2) |
|
284 |
else |
|
285 |
SetAmmo(amWatermelon, 0, 0, 0, 1) |
|
286 |
SetAmmo(amSniperRifle, 0, 0, 0, 1) |
|
287 |
end |
|
9527 | 288 |
end |
289 |
||
290 |
function onPrecise() |
|
291 |
if GameTime > 3000 then |
|
9758 | 292 |
SetAnimSkip(true) |
9527 | 293 |
end |
294 |
end |
|
295 |
||
296 |
-------------- EVENTS ------------------ |
|
297 |
||
298 |
function onHeroDeath(gear) |
|
299 |
if hero.dead then |
|
300 |
return true |
|
301 |
end |
|
302 |
return false |
|
303 |
end |
|
304 |
||
9532 | 305 |
function onDeviceCrates(gear) |
12533
7b32e83aaf48
ASA, Getting to the device: Add fake crate for the device part with proper collect message
Wuzzy <almikes@aol.com>
parents:
12525
diff
changeset
|
306 |
if not hero.dead and deviceCrate.collected and StoppedGear(hero.gear) then |
9532 | 307 |
return true |
308 |
end |
|
309 |
return false |
|
310 |
end |
|
311 |
||
9534
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
312 |
function onSurface(gear) |
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
313 |
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
|
314 |
return true |
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
315 |
end |
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
316 |
return false |
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
317 |
end |
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
318 |
|
9538
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
319 |
function onGaptainLimeDeath(gear) |
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
320 |
if green1.dead then |
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
321 |
return true |
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
322 |
end |
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
323 |
return false |
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
324 |
end |
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
325 |
|
9540
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
326 |
function onRedTeamDeath(gear) |
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
327 |
local redDead = true |
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
328 |
for i=1,table.getn(redHedgehogs) do |
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
329 |
if GetHealth(redHedgehogs[i].gear) then |
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
330 |
redDead = false |
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
331 |
break |
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
332 |
end |
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
333 |
end |
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
334 |
return redDead |
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
335 |
end |
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
336 |
|
9527 | 337 |
-------------- 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
|
338 |
ended = false |
9527 | 339 |
|
340 |
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
|
341 |
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
|
342 |
SendStat(siGameResult, loc("Hog Solo lost, try again!")) |
11697
68eddcdc9f26
Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents:
9831
diff
changeset
|
343 |
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
|
344 |
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
|
345 |
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
|
346 |
if tookPartInBattle then |
11697
68eddcdc9f26
Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents:
9831
diff
changeset
|
347 |
SendStat(siCustomAchievement, loc("You'll have to eliminate the Strawberry Assassins at the end.")) |
12543
952afc3d2df2
Show correct kill counts in all ASA missions (fixes #147)
Wuzzy <almikes@aol.com>
parents:
12533
diff
changeset
|
348 |
if permitCaptainLimeDeath then |
952afc3d2df2
Show correct kill counts in all ASA missions (fixes #147)
Wuzzy <almikes@aol.com>
parents:
12533
diff
changeset
|
349 |
sendSimpleTeamRankings({teamC.name, teamA.name}) |
952afc3d2df2
Show correct kill counts in all ASA missions (fixes #147)
Wuzzy <almikes@aol.com>
parents:
12533
diff
changeset
|
350 |
else |
952afc3d2df2
Show correct kill counts in all ASA missions (fixes #147)
Wuzzy <almikes@aol.com>
parents:
12533
diff
changeset
|
351 |
sendSimpleTeamRankings({teamA.name}) |
952afc3d2df2
Show correct kill counts in all ASA missions (fixes #147)
Wuzzy <almikes@aol.com>
parents:
12533
diff
changeset
|
352 |
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
|
353 |
else |
11697
68eddcdc9f26
Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents:
9831
diff
changeset
|
354 |
SendStat(siCustomAchievement, loc("You'll have to eliminate Captain Lime at the end.")) |
12543
952afc3d2df2
Show correct kill counts in all ASA missions (fixes #147)
Wuzzy <almikes@aol.com>
parents:
12533
diff
changeset
|
355 |
SendStat(siCustomAchievement, loc("Don't eliminate Captain Lime before collecting the last crate!")) |
952afc3d2df2
Show correct kill counts in all ASA missions (fixes #147)
Wuzzy <almikes@aol.com>
parents:
12533
diff
changeset
|
356 |
if permitCaptainLimeDeath then |
952afc3d2df2
Show correct kill counts in all ASA missions (fixes #147)
Wuzzy <almikes@aol.com>
parents:
12533
diff
changeset
|
357 |
sendSimpleTeamRankings({teamB.name, teamA.name}) |
952afc3d2df2
Show correct kill counts in all ASA missions (fixes #147)
Wuzzy <almikes@aol.com>
parents:
12533
diff
changeset
|
358 |
else |
952afc3d2df2
Show correct kill counts in all ASA missions (fixes #147)
Wuzzy <almikes@aol.com>
parents:
12533
diff
changeset
|
359 |
sendSimpleTeamRankings({teamA.name}) |
952afc3d2df2
Show correct kill counts in all ASA missions (fixes #147)
Wuzzy <almikes@aol.com>
parents:
12533
diff
changeset
|
360 |
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
|
361 |
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
|
362 |
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
|
363 |
ended = true |
9542 | 364 |
end |
9527 | 365 |
end |
366 |
||
12533
7b32e83aaf48
ASA, Getting to the device: Add fake crate for the device part with proper collect message
Wuzzy <almikes@aol.com>
parents:
12525
diff
changeset
|
367 |
function deviceCrateEvent(gear) |
7b32e83aaf48
ASA, Getting to the device: Add fake crate for the device part with proper collect message
Wuzzy <almikes@aol.com>
parents:
12525
diff
changeset
|
368 |
SetGearMessage(hero.gear, 0) |
9532 | 369 |
if not tookPartInBattle then |
370 |
AddAnim(dialog03) |
|
371 |
else |
|
9534
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
372 |
for i=1,table.getn(redHedgehogs) do |
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
373 |
RestoreHog(redHedgehogs[i].gear) |
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
374 |
end |
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
375 |
AddAnim(dialog04) |
9532 | 376 |
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
|
377 |
-- needs to be set to true for both plots |
64abf9862562
fixed wrong saved positions, illegal crate destroying and killing cap.Lime early in fruit02
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9642
diff
changeset
|
378 |
permitCaptainLimeDeath = true |
9534
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
379 |
AddAmmo(hero.gear, amSwitch, 0) |
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
380 |
AddEvent(onSurface, {hero.gear}, surface, {hero.gear}, 0) |
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
381 |
end |
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
382 |
|
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
383 |
function surface(gear) |
9536
7456b28a3421
this seems to work fine for the escape scenario
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9534
diff
changeset
|
384 |
previousHog = -1 |
9538
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
385 |
if tookPartInBattle then |
9540
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
386 |
if GetHealth(green1.gear) then |
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
387 |
HideHog(green1.gear) |
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
388 |
end |
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
389 |
AddEvent(onRedTeamDeath, {green1.gear}, redTeamDeath, {green1.gear}, 0) |
9538
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
390 |
else |
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
391 |
DeleteGear(green1.human) |
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
392 |
RestoreHog(green1.bot) |
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
393 |
green1.gear = green1.bot |
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
394 |
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
|
395 |
end |
9540
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
396 |
if GetHealth(green2.gear) then |
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
397 |
HideHog(green2.gear) |
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
398 |
end |
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
399 |
if GetHealth(green3.gear) then |
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
400 |
HideHog(green3.gear) |
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
401 |
end |
9534
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
402 |
inBattle = true |
9532 | 403 |
end |
404 |
||
9538
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
405 |
function captainLimeDeath(gear) |
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
406 |
-- hero win in scenario of escape in 1st part |
9578
16139270448f
save main missions' status
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9574
diff
changeset
|
407 |
saveCompletedStatus(3) |
9642
8a691e0f117a
use consts for TStatInfo enum
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9630
diff
changeset
|
408 |
SendStat(siGameResult, loc("Congratulations, you won!")) |
11697
68eddcdc9f26
Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents:
9831
diff
changeset
|
409 |
SendStat(siCustomAchievement, loc("You retrieved the lost part.")) |
68eddcdc9f26
Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents:
9831
diff
changeset
|
410 |
SendStat(siCustomAchievement, loc("You defended yourself against Captain Lime.")) |
12543
952afc3d2df2
Show correct kill counts in all ASA missions (fixes #147)
Wuzzy <almikes@aol.com>
parents:
12533
diff
changeset
|
411 |
sendSimpleTeamRankings({teamA.name, teamB.name}) |
9538
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
412 |
EndGame() |
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
413 |
end |
9540
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
414 |
|
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
415 |
function redTeamDeath(gear) |
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
416 |
-- hero win in battle scenario |
9578
16139270448f
save main missions' status
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9574
diff
changeset
|
417 |
saveCompletedStatus(3) |
9642
8a691e0f117a
use consts for TStatInfo enum
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9630
diff
changeset
|
418 |
SendStat(siGameResult, loc("Congratulations, you won!")) |
11697
68eddcdc9f26
Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents:
9831
diff
changeset
|
419 |
SendStat(siCustomAchievement, loc("You retrieved the lost part.")) |
68eddcdc9f26
Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents:
9831
diff
changeset
|
420 |
SendStat(siCustomAchievement, loc("You defended yourself against the Strawberry Assassins.")) |
12543
952afc3d2df2
Show correct kill counts in all ASA missions (fixes #147)
Wuzzy <almikes@aol.com>
parents:
12533
diff
changeset
|
421 |
sendSimpleTeamRankings({teamA.name, teamC.name}) |
9540
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
422 |
EndGame() |
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
423 |
end |
92329918463f
game against red team seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9538
diff
changeset
|
424 |
|
9527 | 425 |
-------------- ANIMATIONS ------------------ |
426 |
||
427 |
function Skipanim(anim) |
|
428 |
if goals[anim] ~= nil then |
|
429 |
ShowMission(unpack(goals[anim])) |
|
430 |
end |
|
12519
d89dabfd07ce
Use EndTurn to replace TurnTimeLeft=0 in ASA campaign (fixes #225)
Wuzzy <almikes@aol.com>
parents:
12518
diff
changeset
|
431 |
EndTurn(true) |
9527 | 432 |
end |
433 |
||
434 |
function AnimationSetup() |
|
9529 | 435 |
-- DIALOG 01 - Start, Captain Lime helps Hog Solo because he took part in the battle |
9527 | 436 |
AddSkipFunction(dialog01, Skipanim, {dialog01}) |
437 |
table.insert(dialog01, {func = AnimWait, args = {hero.gear, 3000}}) |
|
11697
68eddcdc9f26
Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents:
9831
diff
changeset
|
438 |
table.insert(dialog01, {func = AnimCaption, args = {hero.gear, loc("Somewhere else on the planet of fruits, Captain Lime helps Hog Solo"), 5000}}) |
9529 | 439 |
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
|
440 |
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 | 441 |
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 | 442 |
table.insert(dialog01, {func = AnimSay, args = {green1.gear, loc("Good luck!"), SAY_SAY, 2000}}) |
9527 | 443 |
table.insert(dialog01, {func = AnimWait, args = {hero.gear, 500}}) |
444 |
table.insert(dialog01, {func = AnimSwitchHog, args = {hero.gear}}) |
|
9529 | 445 |
-- DIALOG02 - Start, Hog Solo escaped from the previous battle |
446 |
AddSkipFunction(dialog02, Skipanim, {dialog02}) |
|
447 |
table.insert(dialog02, {func = AnimWait, args = {hero.gear, 3000}}) |
|
11697
68eddcdc9f26
Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents:
9831
diff
changeset
|
448 |
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
|
449 |
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
|
450 |
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 | 451 |
table.insert(dialog02, {func = AnimWait, args = {hero.gear, 8000}}) |
11697
68eddcdc9f26
Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents:
9831
diff
changeset
|
452 |
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 | 453 |
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
|
454 |
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}}) |
11697
68eddcdc9f26
Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents:
9831
diff
changeset
|
455 |
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 | 456 |
table.insert(dialog02, {func = AnimSay, args = {green1.gear, loc("What do you say? Are you in?"), SAY_SAY, 3000}}) |
457 |
table.insert(dialog02, {func = AnimWait, args = {hero.gear, 1800}}) |
|
11697
68eddcdc9f26
Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents:
9831
diff
changeset
|
458 |
table.insert(dialog02, {func = AnimSay, args = {hero.gear, loc("Okay then!"), SAY_SAY, 2000}}) |
9529 | 459 |
table.insert(dialog02, {func = AnimSwitchHog, args = {hero.gear}}) |
9532 | 460 |
-- DIALOG03 - At crates, hero learns that Captain Lime is bad |
461 |
AddSkipFunction(dialog03, Skipanim, {dialog03}) |
|
12533
7b32e83aaf48
ASA, Getting to the device: Add fake crate for the device part with proper collect message
Wuzzy <almikes@aol.com>
parents:
12525
diff
changeset
|
462 |
table.insert(dialog03, {func = AnimWait, args = {hero.gear, 1250}}) |
9534
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
463 |
table.insert(dialog03, {func = FollowGear, args = {hero.gear}}) |
11697
68eddcdc9f26
Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents:
9831
diff
changeset
|
464 |
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 | 465 |
table.insert(dialog03, {func = AnimWait, args = {green1.gear, 4000}}) |
9758 | 466 |
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}}) |
9534
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
467 |
table.insert(dialog03, {func = goToThesurface, args = {hero.gear}}) |
9831 | 468 |
-- DIALOG04 - At crates, hero learns about the Assassins ambush |
9534
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
469 |
AddSkipFunction(dialog04, Skipanim, {dialog04}) |
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
470 |
table.insert(dialog04, {func = AnimWait, args = {hero.gear, 4000}}) |
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
471 |
table.insert(dialog04, {func = FollowGear, args = {hero.gear}}) |
11697
68eddcdc9f26
Typo fixes for A Space Adventure campaign
Wuzzy <almikes@aol.com>
parents:
9831
diff
changeset
|
472 |
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
|
473 |
table.insert(dialog04, {func = AnimWait, args = {redHedgehogs[1].gear, 4000}}) |
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
474 |
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}}) |
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
475 |
table.insert(dialog04, {func = goToThesurface, args = {hero.gear}}) |
9527 | 476 |
end |
477 |
||
478 |
------------- OTHER FUNCTIONS --------------- |
|
479 |
||
9534
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
480 |
function goToThesurface() |
12519
d89dabfd07ce
Use EndTurn to replace TurnTimeLeft=0 in ASA campaign (fixes #225)
Wuzzy <almikes@aol.com>
parents:
12518
diff
changeset
|
481 |
EndTurn(true) |
9534
662edfec06be
many dialogs and events
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9532
diff
changeset
|
482 |
end |
9538
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
483 |
|
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
484 |
function wind() |
9810
54c0fdec4600
changing math functions that may cause desyncs
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9782
diff
changeset
|
485 |
SetWind(GetRandom(201)-100) |
9538
51596e01c5df
scenario of escape seems ok
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9536
diff
changeset
|
486 |
end |
9544
e247251fa751
position saving functions
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9542
diff
changeset
|
487 |