author | Wuzzy <Wuzzy2@mail.ru> |
Mon, 20 May 2019 16:18:35 +0200 | |
changeset 15020 | a1165392c9db |
parent 14406 | 6c21bd8547dd |
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 |
|
3240 | 5 |
local started = false |
6 |
||
3000 | 7 |
function onGameInit() |
3003 | 8 |
GameFlags = gfSolidLand + gfBorder + gfInvulnerable + gfLowGravity |
3000 | 9 |
TurnTime = 20000 |
10 |
CaseFreq = 0 |
|
4162 | 11 |
MinesNum = 0 |
3000 | 12 |
Explosives = 0 |
10631
3d164350cc48
make BasketballField available as regular map. maybe should make it destructable when not in mission mode *shrugs*
sheepluva
parents:
9093
diff
changeset
|
13 |
Map = 'BasketballField' |
12084
8f222872d432
Disable SD for a couple of scripts and mission maps
Wuzzy <almikes@aol.com>
parents:
12082
diff
changeset
|
14 |
-- Disable Sudden Death |
8f222872d432
Disable SD for a couple of scripts and mission maps
Wuzzy <almikes@aol.com>
parents:
12082
diff
changeset
|
15 |
WaterRise = 0 |
8f222872d432
Disable SD for a couple of scripts and mission maps
Wuzzy <almikes@aol.com>
parents:
12082
diff
changeset
|
16 |
HealthDecrease = 0 |
3000 | 17 |
end |
18 |
||
19 |
function onGameStart() |
|
12082
ce3860c82c8b
Rewrite 2nd line of mission panel of most missions for consistency
Wuzzy <almikes@aol.com>
parents:
11202
diff
changeset
|
20 |
ShowMission(loc("Basketball"), loc("Not So Friendly Match"), loc("Bat your opponents through the|baskets and out of the map!"), -amBaseballBat, 0) |
3240 | 21 |
started = true |
3000 | 22 |
end |
23 |
||
24 |
function onAmmoStoreInit() |
|
3346 | 25 |
SetAmmo(amBaseballBat, 9, 0, 0, 0) |
26 |
SetAmmo(amSkip, 9, 0, 0, 0) |
|
3000 | 27 |
end |
28 |
||
11202
cc308446f90d
preselect baseball bat in Knockball and Basketball
sheepluva
parents:
10631
diff
changeset
|
29 |
function onNewTurn() |
cc308446f90d
preselect baseball bat in Knockball and Basketball
sheepluva
parents:
10631
diff
changeset
|
30 |
SetWeapon(amBaseballBat) |
cc308446f90d
preselect baseball bat in Knockball and Basketball
sheepluva
parents:
10631
diff
changeset
|
31 |
end |