author | Wuzzy <Wuzzy2@mail.ru> |
Thu, 22 Feb 2018 01:03:40 +0100 | |
changeset 13059 | 2d0f3e12fcad |
parent 12938 | e65aa3c3d4e6 |
child 13065 | aed0374bbd8a |
permissions | -rw-r--r-- |
8043 | 1 |
HedgewarsScriptLoad("/Scripts/Locale.lua") |
7889 | 2 |
|
3 |
local player = nil |
|
4 |
local enemy = nil |
|
5 |
||
6 |
function onGameInit() |
|
7 |
||
8 |
Map = "Castle" |
|
9 |
Theme = "Nature" |
|
10 |
Seed = 0 |
|
11 |
GameFlags = gfInfAttack |
|
12 |
||
13 |
TurnTime = 45 * 1000 |
|
14 |
||
15 |
CaseFreq = 0 |
|
16 |
MinesNum = 0 |
|
17 |
Explosives = 0 |
|
18 |
||
12591
7510fe66bfbb
Change graves of teams in missions for greater variety
Wuzzy <almikes@aol.com>
parents:
12363
diff
changeset
|
19 |
AddTeam(loc("Hero Team"), 14483456, "star", "Island", "Default", "cm_swordshield") |
7889 | 20 |
player = AddHog(loc("Good Dude"), 0, 80, "NoHat") --NoHat |
21 |
||
12591
7510fe66bfbb
Change graves of teams in missions for greater variety
Wuzzy <almikes@aol.com>
parents:
12363
diff
changeset
|
22 |
AddTeam(loc("Bad Team"), 1175851, "dragonball", "Island", "Default", "cm_dragonrb") |
11266
6e1aa1144a2b
- Finally added rus localization for all User Missions
antonc27 <antonc27@mail.ru>
parents:
8043
diff
changeset
|
23 |
enemy = AddHog(loc("Bad Guy"), 1, 40, "NoHat") |
7889 | 24 |
|
25 |
end |
|
26 |
||
27 |
function onGameStart() |
|
28 |
||
12231
3ec0261e01f0
Display mines timer in all missions with non-default timer
Wuzzy <almikes@aol.com>
parents:
12082
diff
changeset
|
29 |
ShowMission(loc("The Great Escape"), loc("Scenario"), loc("Elimate your captor.") .. "|" .. loc("Mines time: 0 seconds"), -amGrenade, 0) |
7889 | 30 |
|
31 |
------ GIRDER LIST ------ |
|
32 |
PlaceGirder(1042,564,0) |
|
33 |
PlaceGirder(1028,474,6) |
|
34 |
PlaceGirder(1074,474,6) |
|
35 |
PlaceGirder(1050,385,0) |
|
36 |
PlaceGirder(1175,731,7) |
|
37 |
PlaceGirder(1452,905,2) |
|
38 |
PlaceGirder(1522,855,4) |
|
39 |
PlaceGirder(1496,900,3) |
|
40 |
PlaceGirder(1682,855,4) |
|
41 |
PlaceGirder(1773,887,2) |
|
42 |
PlaceGirder(1647,901,1) |
|
43 |
PlaceGirder(1871,883,6) |
|
44 |
PlaceGirder(1871,723,6) |
|
45 |
PlaceGirder(1774,768,6) |
|
46 |
PlaceGirder(1773,767,6) |
|
47 |
PlaceGirder(1821,904,1) |
|
48 |
PlaceGirder(1822,802,3) |
|
49 |
PlaceGirder(1820,723,1) |
|
50 |
PlaceGirder(1782,678,4) |
|
51 |
PlaceGirder(1822,661,0) |
|
52 |
PlaceGirder(1822,644,0) |
|
53 |
PlaceGirder(1742,644,0) |
|
54 |
PlaceGirder(1742,661,0) |
|
55 |
PlaceGirder(1694,676,2) |
|
56 |
PlaceGirder(1903,635,0) |
|
57 |
------ HEALTH CRATE LIST ------ |
|
58 |
SpawnHealthCrate(1476,169) |
|
59 |
SpawnHealthCrate(1551,177) |
|
60 |
SpawnHealthCrate(1586,200) |
|
61 |
SpawnHealthCrate(1439,189) |
|
62 |
SpawnHealthCrate(1401,211) |
|
63 |
SpawnHealthCrate(1633,210) |
|
64 |
------ MINE LIST ------ |
|
65 |
tempG = AddGear(1010,680,gtMine, 0, 0, 0, 0) |
|
66 |
SetTimer(tempG, 1) |
|
67 |
tempG = AddGear(1031,720,gtMine, 0, 0, 0, 0) |
|
68 |
SetTimer(tempG, 1) |
|
69 |
tempG = AddGear(1039,748,gtMine, 0, 0, 0, 0) |
|
70 |
SetTimer(tempG, 1) |
|
71 |
tempG = AddGear(1051,777,gtMine, 0, 0, 0, 0) |
|
72 |
SetTimer(tempG, 1) |
|
73 |
tempG = AddGear(1065,796,gtMine, 0, 0, 0, 0) |
|
74 |
SetTimer(tempG, 1) |
|
75 |
tempG = AddGear(1094,800,gtMine, 0, 0, 0, 0) |
|
76 |
SetTimer(tempG, 1) |
|
77 |
------ REPOSITION LIST ------ |
|
78 |
SetGearPosition(player,1050,534) |
|
79 |
SetGearPosition(enemy,1512,158) |
|
80 |
SetHealth(player, 1) |
|
81 |
SetHealth(enemy, 1) |
|
12938
e65aa3c3d4e6
Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents:
12591
diff
changeset
|
82 |
------ CRATE LIST ------ |
e65aa3c3d4e6
Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents:
12591
diff
changeset
|
83 |
SpawnSupplyCrate(1632,943,amShotgun) |
e65aa3c3d4e6
Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents:
12591
diff
changeset
|
84 |
SpawnSupplyCrate(1723,888,amFirePunch) |
e65aa3c3d4e6
Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents:
12591
diff
changeset
|
85 |
SpawnSupplyCrate(1915,599,amGrenade) |
e65aa3c3d4e6
Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents:
12591
diff
changeset
|
86 |
SpawnSupplyCrate(1416,913,amBlowTorch) |
e65aa3c3d4e6
Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents:
12591
diff
changeset
|
87 |
SpawnSupplyCrate(1227,640,amPickHammer) |
e65aa3c3d4e6
Refactor scripts to use SpawnSupplyCrate (where it makes sense)
Wuzzy <Wuzzy2@mail.ru>
parents:
12591
diff
changeset
|
88 |
SpawnSupplyCrate(1519,945,amParachute) |
7889 | 89 |
------ END LOADING DATA ------ |
90 |
||
91 |
end |
|
92 |
||
93 |
function onGameTick() |
|
94 |
||
95 |
if TurnTimeLeft == TurnTime-1 then |
|
96 |
SetWind(100) |
|
97 |
end |
|
98 |
||
99 |
end |
|
100 |
||
101 |
function onGearDelete(gear) |
|
102 |
if (GetGearType(gear) == gtCase) and (CurrentHedgehog == player) then |
|
103 |
if GetHealth(gear) > 0 then |
|
104 |
AddGear(GetX(gear), GetY(gear), gtGrenade, 0, 0, 0, 1) |
|
105 |
end |
|
106 |
elseif gear == player then |
|
107 |
ShowMission(loc("The Great Escape"), loc("MISSION FAILED"), loc("Oh no! Just try again!"), -amSkip, 0) |
|
108 |
elseif gear == enemy then |
|
109 |
ShowMission(loc("The Great Escape"), loc("MISSION SUCCESSFUL"), loc("Congratulations!"), 0, 0) |
|
110 |
end |
|
111 |
end |
|
112 |
||
113 |
function onAmmoStoreInit() |
|
114 |
SetAmmo(amGrenade, 1, 0, 0, 1) |
|
115 |
SetAmmo(amParachute, 1, 0, 0, 1) |
|
116 |
SetAmmo(amFirePunch, 0, 0, 0, 3) |
|
117 |
SetAmmo(amPickHammer, 0, 0, 0, 1) |
|
118 |
SetAmmo(amBlowTorch, 0, 0, 0, 1) |
|
119 |
SetAmmo(amShotgun, 0, 0, 0, 1) |
|
120 |
SetAmmo(amSkip, 9, 0, 0, 0) |
|
121 |
end |