Editing User:Histidine/Sandbox
Jump to navigation
Jump to search
Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.
The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.
Latest revision | Your text | ||
Line 1: | Line 1: | ||
{| class="wikitable" style="text-align:center;" | {| class="wikitable" style="text-align:center;" | ||
− | ! colspan=" | + | ! colspan="6" | http://manual.zero-k.info/unitpics/factorycloak.png[[Cloakbot Factory]] |
|- | |- | ||
− | ! || Name | | + | ! || Name || Role || Aliases || Cost || HP |
|- | |- | ||
− | | http://manual.zero-k.info/unitpics/cloakcon.png || [[Conjurer]] | + | | http://manual.zero-k.info/unitpics/cloakcon.png || [[Conjurer]] || Construction || || 120 || 450 |
|- | |- | ||
− | | http://manual.zero-k.info/unitpics/cloakraid.png || [[Glaive]] | + | | http://manual.zero-k.info/unitpics/cloakraid.png || [[Glaive]] || Raider || || 65 || 200 |
|- | |- | ||
− | | http://manual.zero-k.info/unitpics/cloakheavyraid.png || [[Scythe]] | + | | http://manual.zero-k.info/unitpics/cloakheavyraid.png || [[Scythe]] || Raider || || 250 || 820 |
|- | |- | ||
− | | http://manual.zero-k.info/unitpics/cloakskirm.png || [[Ronin]] | + | | http://manual.zero-k.info/unitpics/cloakskirm.png || [[Ronin]] || Skirmisher || || 90 || 420 |
|- | |- | ||
− | | http://manual.zero-k.info/unitpics/cloakriot.png || [[Reaver]] | + | | http://manual.zero-k.info/unitpics/cloakriot.png || [[Reaver]] || Riot || || 220 || 820 |
|- | |- | ||
− | | http://manual.zero-k.info/unitpics/cloakassault.png || [[Knight]] | + | | http://manual.zero-k.info/unitpics/cloakassault.png || [[Knight]] || Assault || || 350 || 2400 |
|- | |- | ||
− | | http://manual.zero-k.info/unitpics/cloakarty.png || [[Sling]] | + | | http://manual.zero-k.info/unitpics/cloakarty.png || [[Sling]] || Artillery || || 110 || 350 |
|- | |- | ||
− | | http://manual.zero-k.info/unitpics/cloaksnipe.png || [[Phantom]] | + | | http://manual.zero-k.info/unitpics/cloaksnipe.png || [[Phantom]] || Artillery || || 750 || 560 |
|- | |- | ||
− | | http://manual.zero-k.info/unitpics/cloakaa.png || [[Gremlin]] || | + | | http://manual.zero-k.info/unitpics/cloakaa.png || [[Gremlin]] || Other || || 150 || 550 |
|- | |- | ||
− | | http://manual.zero-k.info/unitpics/cloakbomb.png || [[Imp]] | + | | http://manual.zero-k.info/unitpics/cloakbomb.png || [[Imp]] || Bomb || || 120 || 50 |
|- | |- | ||
− | | http://manual.zero-k.info/unitpics/cloakjammer.png || [[Iris]] | + | | http://manual.zero-k.info/unitpics/cloakjammer.png || [[Iris]] || Other || || 600 || 600 |
|- | |- | ||
|} | |} | ||
Line 44: | Line 44: | ||
elseif desc:find("Artillery") then | elseif desc:find("Artillery") then | ||
return "Artillery" | return "Artillery" | ||
− | elseif desc:find("Anti | + | elseif desc:find("Anti-Air") then |
return "Anti-Air" | return "Anti-Air" | ||
elseif desc:find("Construction") then | elseif desc:find("Construction") then | ||
Line 72: | Line 72: | ||
local output = '{| class="wikitable" style="text-align:center;"\n' | local output = '{| class="wikitable" style="text-align:center;"\n' | ||
local imagePath = "http://manual.zero-k.info/unitpics/" .. factoryDefName .. ".png" | local imagePath = "http://manual.zero-k.info/unitpics/" .. factoryDefName .. ".png" | ||
− | output = output .. '! colspan=" | + | output = output .. '! colspan="6" | ' .. imagePath .. "[[" .. factoryDef.humanName .. "]]\n" |
output = output .. "|-\n" | output = output .. "|-\n" | ||
− | output = output .. | + | output = output .. "! || Name || Role || Aliases || Cost || HP\n" |
output = output .. "|-\n" | output = output .. "|-\n" | ||
Line 81: | Line 81: | ||
local unitName = unitDef.name | local unitName = unitDef.name | ||
imagePath = "http://manual.zero-k.info/unitpics/" .. unitName .. ".png" | imagePath = "http://manual.zero-k.info/unitpics/" .. unitName .. ".png" | ||
− | |||
output = output .. "| " .. imagePath .. " || [[" .. unitDef.humanName .. "]] || " | output = output .. "| " .. imagePath .. " || [[" .. unitDef.humanName .. "]] || " | ||
− | + | .. getDescString(unitDef) .. " || || " .. unitDef.metalCost .. " || " | |
.. unitDef.health .. "\n" | .. unitDef.health .. "\n" | ||
output = output .. "|-\n" | output = output .. "|-\n" |