Skip to content

Commit

Permalink
VERSION{v1.6.4.14}
Browse files Browse the repository at this point in the history
Planetwars structures.
 * Artefact: HP 50k -> 20k
 * Dropfac: HP 25k -> 16k
 * Bomberfac: HP 20k -> 16k
 * Wormhole: Evac 8 -> 10 minutes. HP 12.5k -> 12k.
 * Improved wormhole: Evac 5 -> 8 minutes. HP 17.5 -> 15k.
  • Loading branch information
GoogleFrog committed Apr 11, 2018
1 parent 398d9cd commit 5cecc33
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions gamedata/planetwars/pw_structuredefs.lua
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ local structureConfig = {
end,

pw_artefact = function(unitDef)
unitDef.maxdamage = 50000
unitDef.maxdamage = 20000
unitDef.name = "Ancient Artefact"
unitDef.description = "Mysterious Relic"
unitDef.objectname = "pw_artefact.dae"
Expand All @@ -66,7 +66,7 @@ local structureConfig = {
end,

pw_dropfac = function(unitDef)
unitDef.maxdamage = 25000
unitDef.maxdamage = 16000
unitDef.name = "Dropship Factory"
unitDef.description = "Produces dropships"
unitDef.objectname = "pw_dropfac.dae"
Expand Down Expand Up @@ -98,7 +98,7 @@ local structureConfig = {
end,

pw_bomberfac = function(unitDef)
unitDef.maxdamage = 20000
unitDef.maxdamage = 16000
unitDef.name = "Bomber Factory"
unitDef.description = "Produces bombers"
unitDef.objectname = "pw_dropdepot.dae"
Expand Down Expand Up @@ -289,7 +289,7 @@ local structureConfig = {
end,

pw_wormhole = function(unitDef)
unitDef.maxdamage = 12500
unitDef.maxdamage = 12000
unitDef.name = "Wormhole Generator"
unitDef.description = "Links this planet to nearby planets"
unitDef.objectname = "pw_estorage.dae"
Expand All @@ -299,7 +299,7 @@ local structureConfig = {
unitDef.footprintz = 3
unitDef.buildcostmetal = 75*STRUCTURE_COST_MULT

unitDef.customparams.evacuation_speed = "1.25" -- 8 minutes
unitDef.customparams.evacuation_speed = "1" -- 10 minutes

unitDef.customparams.soundselect = "shield_select"

Expand All @@ -310,7 +310,7 @@ local structureConfig = {
end,

pw_wormhole2 = function(unitDef)
unitDef.maxdamage = 17500
unitDef.maxdamage = 15000
unitDef.name = "Improved Wormhole"
unitDef.description = "Links this planet to nearby planets"
unitDef.objectname = "pw_gaspowerstation.dae"
Expand All @@ -321,7 +321,7 @@ local structureConfig = {
unitDef.footprintz = 6
unitDef.buildcostmetal = 250*STRUCTURE_COST_MULT

unitDef.customparams.evacuation_speed = "2" -- 5 minutes
unitDef.customparams.evacuation_speed = "1.25" -- 8 minutes

unitDef.customparams.soundselect = "shield_select"

Expand Down

0 comments on commit 5cecc33

Please sign in to comment.