Skip to content

Commit

Permalink
Artemis missiles cost 80 metal.
Browse files Browse the repository at this point in the history
  • Loading branch information
GoogleFrog committed Nov 14, 2018
1 parent 12b7004 commit 24feb1b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions LuaUI/Configs/lang/units.en.json
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,8 @@
},
"turretaaheavy" : {
"name" : "Artemis",
"description" : "Very Long-Range Anti-Air Missile Tower",
"helptext" : "The Artemis is an extremely long-ranging first strike anti-air weapon that sends a clear message to enemy aircraft - can't go here, sonny. Each shot must be stockpiled for 20 seconds, but is well worth the time, for a quick salvo of missiles will wipe out almost any air attack without fuss."
"description" : "Very Long-Range Anti-Air Missile Tower, Drains 4 m/s, 20 second stockpile",
"helptext" : "The Artemis is an extremely long-ranging first strike anti-air weapon that sends a clear message to enemy aircraft - can't go here, sonny. Each shot costs 80 metal and takes 20 seconds to stockpile, but is well worth the cost, for a quick salvo of missiles will wipe out almost any air attack without fuss."
},
"chicken_drone" : {
"name" : "Drone",
Expand Down
10 changes: 5 additions & 5 deletions units/turretaaheavy.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
unitDef = {
unitname = [[turretaaheavy]],
name = [[Artemis]],
description = [[Very Long-Range Anti-Air Missile Tower]],
description = [[Very Long-Range Anti-Air Missile Tower, Drains 4 m/s 20 second stockpile.]],
acceleration = 0,
activateWhenBuilt = true,
brakeRate = 0,
Expand All @@ -20,9 +20,9 @@ unitDef = {

customParams = {
modelradius = [[37]],
freestockpile = [[1]],
stockpilecost = [[0]],
stockpilecost = [[80]],
stockpiletime = [[20]],
priority_misc = 1, -- Medium
},

explodeAs = [[ESTOR_BUILDING]],
Expand Down Expand Up @@ -82,15 +82,15 @@ unitDef = {
},

edgeEffectiveness = 0.25,
energypershot = 0,
energypershot = 80,
explosionGenerator = [[custom:MISSILE_HIT_SPHERE_120]],
fireStarter = 90,
flightTime = 4,
groundbounce = 1,
impulseBoost = 0,
impulseFactor = 0,
interceptedByShieldType = 1,
metalpershot = 0,
metalpershot = 80,
model = [[wep_m_avalanche.s3o]],
noSelfDamage = true,
range = 2400,
Expand Down

0 comments on commit 24feb1b

Please sign in to comment.