share/hedgewars/Data/Missions/Training/ClimbHome.lua
author Wuzzy <almikes@aol.com>
Wed, 16 Nov 2016 16:32:44 +0100
changeset 11889 c8979eeb73fa
parent 11067 c632b47b8ff0
permissions -rw-r--r--
Fix ClimbHome mission bugs (broken teams, broken graph)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10413
afd746a538ef climb home training/multiplayer
nemo
parents:
diff changeset
     1
HedgewarsScriptLoad("/Scripts/Locale.lua")
afd746a538ef climb home training/multiplayer
nemo
parents:
diff changeset
     2
11889
c8979eeb73fa Fix ClimbHome mission bugs (broken teams, broken graph)
Wuzzy <almikes@aol.com>
parents: 11067
diff changeset
     3
isSinglePlayer = true
10413
afd746a538ef climb home training/multiplayer
nemo
parents:
diff changeset
     4
afd746a538ef climb home training/multiplayer
nemo
parents:
diff changeset
     5
-- trying to allow random theme, but fixed theme objects...
afd746a538ef climb home training/multiplayer
nemo
parents:
diff changeset
     6
-- Also skip some ugly themes, or ones where the sky is "meh"
afd746a538ef climb home training/multiplayer
nemo
parents:
diff changeset
     7
--local themes = { "Art","Cake","City","EarthRise","Halloween","Olympics","Underwater","Bamboo","Castle","Compost","Eyes","Hell","Planes","Bath","Cave","CrazyMission","Freeway","Island","Sheep","Blox","Cheese","Deepspace","Fruit","Jungle","Snow","Brick","Christmas","Desert","Golf","Nature","Stage" }
afd746a538ef climb home training/multiplayer
nemo
parents:
diff changeset
     8
local themes = {"Christmas","Hell","Bamboo","City","Island","Bath","Compost","Jungle","Desert","Nature","Olympics","Brick","EarthRise","Sheep","Cake","Freeway","Snow","Castle","Fruit","Stage","Cave","Golf","Cheese","Halloween"}
11067
c632b47b8ff0 Trying to get these scripts to behave properly, still WIP though.
nemo
parents: 10581
diff changeset
     9
local totalHedgehogs = 0
c632b47b8ff0 Trying to get these scripts to behave properly, still WIP though.
nemo
parents: 10581
diff changeset
    10
local HH = {}
c632b47b8ff0 Trying to get these scripts to behave properly, still WIP though.
nemo
parents: 10581
diff changeset
    11
local teams = {}
c632b47b8ff0 Trying to get these scripts to behave properly, still WIP though.
nemo
parents: 10581
diff changeset
    12
local dummyHog = nil
c632b47b8ff0 Trying to get these scripts to behave properly, still WIP though.
nemo
parents: 10581
diff changeset
    13
10413
afd746a538ef climb home training/multiplayer
nemo
parents:
diff changeset
    14
afd746a538ef climb home training/multiplayer
nemo
parents:
diff changeset
    15
function onGameInit()
afd746a538ef climb home training/multiplayer
nemo
parents:
diff changeset
    16
    -- Ensure people get same map for same theme
afd746a538ef climb home training/multiplayer
nemo
parents:
diff changeset
    17
    Theme = themes[GetRandom(#themes)+1]
afd746a538ef climb home training/multiplayer
nemo
parents:
diff changeset
    18
    Seed = ClimbHome
afd746a538ef climb home training/multiplayer
nemo
parents:
diff changeset
    19
    TurnTime = 999999999
afd746a538ef climb home training/multiplayer
nemo
parents:
diff changeset
    20
    EnableGameFlags(gfOneClanMode)
afd746a538ef climb home training/multiplayer
nemo
parents:
diff changeset
    21
    DisableGameFlags(gfBottomBorder+gfBorder)
afd746a538ef climb home training/multiplayer
nemo
parents:
diff changeset
    22
    CaseFreq = 0
afd746a538ef climb home training/multiplayer
nemo
parents:
diff changeset
    23
    Explosives = 0
11067
c632b47b8ff0 Trying to get these scripts to behave properly, still WIP though.
nemo
parents: 10581
diff changeset
    24
    MineDudPercent = 0
10413
afd746a538ef climb home training/multiplayer
nemo
parents:
diff changeset
    25
    Map = "ClimbHome"
10581
f0b4c14a3c62 Wuzzy's changes to climbhome w/ some tweaks by me
nemo
parents: 10413
diff changeset
    26
    AddTeam(loc("Lonely Hog"), 0xDD0000, "Simple", "Island", "Default")
10413
afd746a538ef climb home training/multiplayer
nemo
parents:
diff changeset
    27
    player = AddHog(loc("Climber"), 0, 1, "NoHat")
11067
c632b47b8ff0 Trying to get these scripts to behave properly, still WIP though.
nemo
parents: 10581
diff changeset
    28
    if showWaterStats then
c632b47b8ff0 Trying to get these scripts to behave properly, still WIP though.
nemo
parents: 10581
diff changeset
    29
        dummyHog = AddHog(" ", 0, 1, "NoHat")
c632b47b8ff0 Trying to get these scripts to behave properly, still WIP though.
nemo
parents: 10581
diff changeset
    30
        HH[dummyHog] = nil
c632b47b8ff0 Trying to get these scripts to behave properly, still WIP though.
nemo
parents: 10581
diff changeset
    31
        totalHedgehogs = totalHedgehogs - 1
c632b47b8ff0 Trying to get these scripts to behave properly, still WIP though.
nemo
parents: 10581
diff changeset
    32
        SendStat(siClanHealth, tostring(32640), " ")
c632b47b8ff0 Trying to get these scripts to behave properly, still WIP though.
nemo
parents: 10581
diff changeset
    33
    end
10413
afd746a538ef climb home training/multiplayer
nemo
parents:
diff changeset
    34
end