author | Wuzzy <almikes@aol.com> |
Fri, 25 Nov 2016 02:53:42 +0100 | |
changeset 12077 | ce3860c82c8b |
parent 12049 | 030464f34d47 |
child 12078 | 99bfd35b3924 |
permissions | -rw-r--r-- |
5427
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
1 |
|
8043 | 2 |
HedgewarsScriptLoad("/Scripts/Locale.lua") |
5427
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
3 |
|
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
4 |
local player = nil |
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
5 |
local enemy = nil |
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
6 |
local firedShell = false |
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
7 |
local turnNumber = 0 |
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
8 |
|
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
9 |
local hhs = {} |
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
10 |
local numhhs = 0 |
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
11 |
|
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
12 |
function onGameInit() |
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
13 |
|
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
14 |
Seed = 0 |
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
15 |
TurnTime = 20000 |
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
16 |
CaseFreq = 0 |
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
17 |
MinesNum = 0 |
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
18 |
Explosives = 0 |
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
19 |
Map = "Bamboo" |
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
20 |
Theme = "Bamboo" |
5823 | 21 |
SuddenDeathTurns = 99999 |
5427
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
22 |
|
12049
030464f34d47
Tweak flags used in all missions to fit more to the theme
Wuzzy <almikes@aol.com>
parents:
11968
diff
changeset
|
23 |
AddTeam(loc("Pathetic Resistance"), 14483456, "Simple", "Island", "Default", "cm_yinyang") |
11262
6e1aa1144a2b
- Finally added rus localization for all User Missions
antonc27 <antonc27@mail.ru>
parents:
8043
diff
changeset
|
24 |
player = AddHog(loc("Ikeda"), 0, 10, "StrawHat") |
5427
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
25 |
|
12049
030464f34d47
Tweak flags used in all missions to fit more to the theme
Wuzzy <almikes@aol.com>
parents:
11968
diff
changeset
|
26 |
AddTeam(loc("Cybernetic Empire"), 1175851, "Simple", "Island", "Default", "cm_cyborg") |
5823 | 27 |
enemy = AddHog(loc("Unit 835"), 1, 10, "cyborg1") |
5427
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
28 |
|
7877
b3fb94986255
Fix training script positions altered by variable land dimension change. Issue #453
nemo
parents:
5823
diff
changeset
|
29 |
SetGearPosition(player,142,656) |
b3fb94986255
Fix training script positions altered by variable land dimension change. Issue #453
nemo
parents:
5823
diff
changeset
|
30 |
SetGearPosition(enemy,1824,419) |
5427
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
31 |
|
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
32 |
end |
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
33 |
|
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
34 |
|
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
35 |
function onGameStart() |
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
36 |
|
12077
ce3860c82c8b
Rewrite 2nd line of mission panel of most missions for consistency
Wuzzy <almikes@aol.com>
parents:
12049
diff
changeset
|
37 |
ShowMission(loc("Bamboo Thicket"), loc("Scenario"), loc("Eliminate the enemy before the time runs out"), -amBazooka, 0) |
5427
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
38 |
|
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
39 |
--WEAPON CRATE LIST. WCRATES: 1 |
7877
b3fb94986255
Fix training script positions altered by variable land dimension change. Issue #453
nemo
parents:
5823
diff
changeset
|
40 |
SpawnAmmoCrate(891,852,amBazooka) |
5427
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
41 |
--UTILITY CRATE LIST. UCRATES: 2 |
7877
b3fb94986255
Fix training script positions altered by variable land dimension change. Issue #453
nemo
parents:
5823
diff
changeset
|
42 |
SpawnUtilityCrate(962,117,amBlowTorch) |
b3fb94986255
Fix training script positions altered by variable land dimension change. Issue #453
nemo
parents:
5823
diff
changeset
|
43 |
SpawnUtilityCrate(403,503,amParachute) |
5427
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
44 |
|
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
45 |
AddAmmo(enemy, amGrenade, 100) |
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
46 |
|
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
47 |
end |
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
48 |
|
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
49 |
function onNewTurn() |
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
50 |
SetWind(100) |
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
51 |
turnNumber = turnNumber + 1 |
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
52 |
end |
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
53 |
|
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
54 |
function onAmmoStoreInit() |
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
55 |
SetAmmo(amSkip, 9, 0, 0, 0) |
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
56 |
SetAmmo(amGirder, 4, 0, 0, 0) |
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
57 |
SetAmmo(amBlowTorch, 0, 0, 0, 1) |
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
58 |
SetAmmo(amParachute, 0, 0, 0, 2) |
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
59 |
SetAmmo(amBazooka, 0, 0, 0, 2) |
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
60 |
end |
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
61 |
|
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
62 |
|
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
63 |
function onGearAdd(gear) |
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
64 |
|
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
65 |
if GetGearType(gear) == gtHedgehog then |
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
66 |
hhs[numhhs] = gear |
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
67 |
numhhs = numhhs + 1 |
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
68 |
elseif GetGearType(gear) == gtShell then |
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
69 |
firedShell = true |
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
70 |
end |
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
71 |
|
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
72 |
end |
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
73 |
|
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
74 |
function onGearDelete(gear) |
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
75 |
|
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
76 |
if (gear == enemy) then |
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
77 |
|
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
78 |
ShowMission(loc("Bamboo Thicket"), loc("MISSION SUCCESSFUL"), loc("Congratulations!"), 0, 0) |
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
79 |
|
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
80 |
if (turnNumber < 6) and (firedShell == false) then |
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
81 |
AddCaption(loc("Achievement Unlocked") .. ": " .. loc("Energetic Engineer"),0xffba00ff,capgrpMessage2) |
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
82 |
end |
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
83 |
|
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
84 |
elseif gear == player then |
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
85 |
ShowMission(loc("Bamboo Thicket"), loc("MISSION FAILED"), loc("Oh no! Just try again!"), -amSkip, 0) |
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
86 |
end |
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
87 |
|
3817b7e6c871
New mission. Hopefully easier than most of my other missions. :D
mikade
parents:
diff
changeset
|
88 |
end |