author | Wuzzy <almikes@aol.com> |
Fri, 25 Nov 2016 02:53:42 +0100 | |
changeset 12077 | ce3860c82c8b |
parent 11198 | cc308446f90d |
child 12079 | 8f222872d432 |
permissions | -rw-r--r-- |
4506
37744d5c877e
Finnished up the lua translations by adding training maps, campaign is ignored for now
Henek
parents:
4502
diff
changeset
|
1 |
-- Hedgewars - Basketball for 2+ Players |
3000 | 2 |
|
9093 | 3 |
HedgewarsScriptLoad("/Scripts/Locale.lua") |
3000 | 4 |
|
5 |
local score = {[0] = 0, [1] = 0, [2] = 0, [3] = 0, [4] = 0, [5] = 0} |
|
6 |
||
3240 | 7 |
local started = false |
8 |
||
3000 | 9 |
function onGameInit() |
3003 | 10 |
GameFlags = gfSolidLand + gfBorder + gfInvulnerable + gfLowGravity |
3000 | 11 |
TurnTime = 20000 |
12 |
CaseFreq = 0 |
|
4162 | 13 |
MinesNum = 0 |
3000 | 14 |
Explosives = 0 |
3003 | 15 |
Delay = 500 |
3197 | 16 |
SuddenDeathTurns = 99999 -- "disable" sudden death |
10631
3d164350cc48
make BasketballField available as regular map. maybe should make it destructable when not in mission mode *shrugs*
sheepluva
parents:
9093
diff
changeset
|
17 |
Map = 'BasketballField' |
3000 | 18 |
end |
19 |
||
20 |
function onGameStart() |
|
12077
ce3860c82c8b
Rewrite 2nd line of mission panel of most missions for consistency
Wuzzy <almikes@aol.com>
parents:
11198
diff
changeset
|
21 |
ShowMission(loc("Basketball"), loc("Not So Friendly Match"), loc("Bat your opponents through the|baskets and out of the map!"), -amBaseballBat, 0) |
3240 | 22 |
started = true |
3000 | 23 |
end |
24 |
||
25 |
function onGameTick() |
|
26 |
end |
|
27 |
||
28 |
function onAmmoStoreInit() |
|
3346 | 29 |
SetAmmo(amBaseballBat, 9, 0, 0, 0) |
30 |
SetAmmo(amSkip, 9, 0, 0, 0) |
|
3000 | 31 |
end |
32 |
||
33 |
function onGearAdd(gear) |
|
34 |
end |
|
35 |
||
36 |
function onGearDelete(gear) |
|
3240 | 37 |
if not started then |
38 |
return |
|
3257 | 39 |
end |
3003 | 40 |
if (GetGearType(gear) == gtHedgehog) and CurrentHedgehog ~= nil then |
41 |
local clan = GetHogClan(CurrentHedgehog) |
|
4502
759c1a3bb156
lua access to data dir by GetDataPath and made a new scripting translation system with Locale.lua as library and .lua files under Locale. Updated maps Basketball and Knockball to this new system.
Henek
parents:
4493
diff
changeset
|
42 |
local s |
759c1a3bb156
lua access to data dir by GetDataPath and made a new scripting translation system with Locale.lua as library and .lua files under Locale. Updated maps Basketball and Knockball to this new system.
Henek
parents:
4493
diff
changeset
|
43 |
if clan ~= nil then |
759c1a3bb156
lua access to data dir by GetDataPath and made a new scripting translation system with Locale.lua as library and .lua files under Locale. Updated maps Basketball and Knockball to this new system.
Henek
parents:
4493
diff
changeset
|
44 |
if GetHogClan(CurrentHedgehog) ~= GetHogClan(gear) then |
759c1a3bb156
lua access to data dir by GetDataPath and made a new scripting translation system with Locale.lua as library and .lua files under Locale. Updated maps Basketball and Knockball to this new system.
Henek
parents:
4493
diff
changeset
|
45 |
score[clan] = score[clan] + 1 |
759c1a3bb156
lua access to data dir by GetDataPath and made a new scripting translation system with Locale.lua as library and .lua files under Locale. Updated maps Basketball and Knockball to this new system.
Henek
parents:
4493
diff
changeset
|
46 |
s = string.format(loc("%s is out and Team %d|scored a point!| |Score:"), GetHogName(gear), clan + 1) |
759c1a3bb156
lua access to data dir by GetDataPath and made a new scripting translation system with Locale.lua as library and .lua files under Locale. Updated maps Basketball and Knockball to this new system.
Henek
parents:
4493
diff
changeset
|
47 |
else |
759c1a3bb156
lua access to data dir by GetDataPath and made a new scripting translation system with Locale.lua as library and .lua files under Locale. Updated maps Basketball and Knockball to this new system.
Henek
parents:
4493
diff
changeset
|
48 |
score[clan] = score[clan] - 1 |
759c1a3bb156
lua access to data dir by GetDataPath and made a new scripting translation system with Locale.lua as library and .lua files under Locale. Updated maps Basketball and Knockball to this new system.
Henek
parents:
4493
diff
changeset
|
49 |
s = string.format(loc("%s is out and Team %d|scored a penalty!| |Score:"), GetHogName(gear), clan + 1) |
759c1a3bb156
lua access to data dir by GetDataPath and made a new scripting translation system with Locale.lua as library and .lua files under Locale. Updated maps Basketball and Knockball to this new system.
Henek
parents:
4493
diff
changeset
|
50 |
end |
759c1a3bb156
lua access to data dir by GetDataPath and made a new scripting translation system with Locale.lua as library and .lua files under Locale. Updated maps Basketball and Knockball to this new system.
Henek
parents:
4493
diff
changeset
|
51 |
s = s .. " " .. score[0] |
759c1a3bb156
lua access to data dir by GetDataPath and made a new scripting translation system with Locale.lua as library and .lua files under Locale. Updated maps Basketball and Knockball to this new system.
Henek
parents:
4493
diff
changeset
|
52 |
for i = 1, ClansCount - 1 do s = s .. " - " .. score[i] end |
12077
ce3860c82c8b
Rewrite 2nd line of mission panel of most missions for consistency
Wuzzy <almikes@aol.com>
parents:
11198
diff
changeset
|
53 |
ShowMission(loc("Basketball"), loc("Not So Friendly Match"), s, -amBaseballBat, 0) |
3003 | 54 |
end |
3000 | 55 |
end |
56 |
end |
|
11198
cc308446f90d
preselect baseball bat in Knockball and Basketball
sheepluva
parents:
10631
diff
changeset
|
57 |
|
cc308446f90d
preselect baseball bat in Knockball and Basketball
sheepluva
parents:
10631
diff
changeset
|
58 |
function onNewTurn() |
cc308446f90d
preselect baseball bat in Knockball and Basketball
sheepluva
parents:
10631
diff
changeset
|
59 |
SetWeapon(amBaseballBat) |
cc308446f90d
preselect baseball bat in Knockball and Basketball
sheepluva
parents:
10631
diff
changeset
|
60 |
end |