share/hedgewars/Data/Missions/Campaign/A Classic Fairytale/dragon.lua
changeset 7417 2520705b857f
parent 7415 1a6a6db3fa96
child 7419 a42ba3d8ac32
equal deleted inserted replaced
7415:1a6a6db3fa96 7417:2520705b857f
   114 leaksNum = 1
   114 leaksNum = 1
   115 denseNum = 2
   115 denseNum = 2
   116 waterNum = 3
   116 waterNum = 3
   117 buffaloNum = 4
   117 buffaloNum = 4
   118 chiefNum = 5
   118 chiefNum = 5
   119 princessNum = 6
   119 girlNum = 6
   120 wiseNum = 7
   120 wiseNum = 7
   121 
   121 
   122 nativeNames = {loc("Leaks A Lot"), loc("Dense Cloud"), loc("Fiery Water"), 
   122 nativeNames = {loc("Leaks A Lot"), loc("Dense Cloud"), loc("Fiery Water"), 
   123                loc("Raging Buffalo"), loc("Righteous Beard"), loc("Fell From Heaven"),
   123                loc("Raging Buffalo"), loc("Righteous Beard"), loc("Fell From Heaven"),
   124                loc("Wise Oak")}
   124                loc("Wise Oak")}
   219   elseif m == buffaloNum then
   219   elseif m == buffaloNum then
   220     table.insert(startAnim, {func = AnimMove, args = {native, "Right", nativePos[1] + 50, 0}})
   220     table.insert(startAnim, {func = AnimMove, args = {native, "Right", nativePos[1] + 50, 0}})
   221     table.insert(startAnim, {func = AnimSay, args = {native, loc("Where did that alien run?"), SAY_THINK, 0}})
   221     table.insert(startAnim, {func = AnimSay, args = {native, loc("Where did that alien run?"), SAY_THINK, 0}})
   222     table.insert(startAnim, {func = AnimMove, args = {native, "Right", nativePos[1] + 200, 0}})
   222     table.insert(startAnim, {func = AnimMove, args = {native, "Right", nativePos[1] + 200, 0}})
   223     table.insert(startAnim, {func = AnimSay, args = {native, loc("When I find it..."), SAY_THINK, 3000}})
   223     table.insert(startAnim, {func = AnimSay, args = {native, loc("When I find it..."), SAY_THINK, 3000}})
   224   elseif m == princessNum then
   224   elseif m == girlNum then
   225     table.insert(startAnim, {func = AnimMove, args = {native, "Right", nativePos[1] + 50, 0}})
   225     table.insert(startAnim, {func = AnimMove, args = {native, "Right", nativePos[1] + 50, 0}})
   226     table.insert(startAnim, {func = AnimSay, args = {native, loc("A woman shouldn't do this kind of thing!"), SAY_THINK, 0}})
   226     table.insert(startAnim, {func = AnimSay, args = {native, loc("This is typical!"), SAY_THINK, 0}})
   227     table.insert(startAnim, {func = AnimMove, args = {native, "Right", nativePos[1] + 200, 0}})
   227     table.insert(startAnim, {func = AnimMove, args = {native, "Right", nativePos[1] + 200, 0}})
   228     table.insert(startAnim, {func = AnimSay, args = {native, loc("I could be eating snails right now."), SAY_THINK, 5500}})
   228     table.insert(startAnim, {func = AnimSay, args = {native, loc("It's always up to women to clear up the mess men created!"), SAY_THINK, 8500}})
   229   elseif m == chiefNum then
   229   elseif m == chiefNum then
   230     table.insert(startAnim, {func = AnimMove, args = {native, "Right", nativePos[1] + 50, 0}})
   230     table.insert(startAnim, {func = AnimMove, args = {native, "Right", nativePos[1] + 50, 0}})
   231     table.insert(startAnim, {func = AnimSay, args = {native, loc("What is this place?"), SAY_THINK, 0}})
   231     table.insert(startAnim, {func = AnimSay, args = {native, loc("What is this place?"), SAY_THINK, 0}})
   232     table.insert(startAnim, {func = AnimMove, args = {native, "Right", nativePos[1] + 200, 0}})
   232     table.insert(startAnim, {func = AnimMove, args = {native, "Right", nativePos[1] + 200, 0}})
   233     table.insert(startAnim, {func = AnimSay, args = {native, loc("It doesn't matter. I won't let that alien hurt my daughter!"), SAY_THINK, 8500}})
   233     table.insert(startAnim, {func = AnimSay, args = {native, loc("It doesn't matter. I won't let that alien hurt my daughter!"), SAY_THINK, 8500}})
   474   m4WaterDead = tonumber(GetCampaignVar("M4WaterDead"))
   474   m4WaterDead = tonumber(GetCampaignVar("M4WaterDead"))
   475   m5WaterDead = tonumber(GetCampaignVar("M5WaterDead"))
   475   m5WaterDead = tonumber(GetCampaignVar("M5WaterDead"))
   476   m4ChiefDead = tonumber(GetCampaignVar("M4ChiefDead"))
   476   m4ChiefDead = tonumber(GetCampaignVar("M4ChiefDead"))
   477   m5ChiefDead = tonumber(GetCampaignVar("M5ChiefDead"))
   477   m5ChiefDead = tonumber(GetCampaignVar("M5ChiefDead"))
   478   m5WiseDead = tonumber(GetCampaignVar("M5WiseDead"))
   478   m5WiseDead = tonumber(GetCampaignVar("M5WiseDead"))
   479   m5PrincessDead = tonumber(GetCampaignVar("M5PrincessDead"))
   479   m5GirlDead = tonumber(GetCampaignVar("M5GirlDead"))
   480   m2Choice = tonumber(GetCampaignVar("M2Choice"))
   480   m2Choice = tonumber(GetCampaignVar("M2Choice"))
   481   m5Choice = tonumber(GetCampaignVar("M5Choice"))
   481   m5Choice = tonumber(GetCampaignVar("M5Choice"))
   482   m5DeployedNum = tonumber(GetCampaignVar("M5DeployedNum"))
   482   m5DeployedNum = tonumber(GetCampaignVar("M5DeployedNum"))
   483 end
   483 end
   484 
   484