Template:UnitData: Difference between revisions

From Mechabellum Wiki
m (Tarantula data remove extra space)
(fix multi shot fixed at * 4)
Line 46: Line 46:
   | Error: Unit "{{{1|{{PAGENAME}}}}}" undefined!
   | Error: Unit "{{{1|{{PAGENAME}}}}}" undefined!
   | <!-- no error -  -->
   | <!-- no error -  -->
  {{#vardefine:shots |
    {{#if: {{#pos: {{#explode: {{#var:row}} | ; | 2 }} | * }}
      | {{#explode: {{#explode: {{#var:row}} | ; | 2 }} | * | 1 }}
      | 1
    }}
  }}
   {{#vardefine:atk_tmp | {{#ifexpr: ({{#explode: {{#var:row}} | ; | 2 }}) < 1  <!-- if melting damage -->
   {{#vardefine:atk_tmp | {{#ifexpr: ({{#explode: {{#var:row}} | ; | 2 }}) < 1  <!-- if melting damage -->
           | {{#expr: {{#explode: {{#explode: {{#var:row}} | ; | 2 }} | - | 0 }} * {{{level|1}}}  
           | {{#expr: {{#explode: {{#explode: {{#var:row}} | ; | 2 }} | - | 0 }} * {{{level|1}}}  
             }} - {{#expr: {{#explode: {{#explode: {{#var:row}} | ; | 2 }} | - | 1 }} * {{{level|1}}} }}
             }} - {{#expr: {{#explode: {{#explode: {{#var:row}} | ; | 2 }} | - | 1 }} * {{{level|1}}} }}
           | {{#if: {{#pos: {{#explode: {{#var:row}} | ; | 2 }} | * }} <!-- if * 4 missiles -->
           | {{#if: {{#pos: {{#explode: {{#var:row}} | ; | 2 }} | * }} <!-- if multi shot -->
             | {{#expr: {{#explode: {{#var:row}} | ; | 2 }} * {{{level|1}}} / 4 }} * 4
             | {{#expr: {{#explode: {{#var:row}} | ; | 2 }} * {{{level|1}}} / {{#var:shots}} }} * {{#var:shots}}
             | {{#expr: {{#explode: {{#var:row}} | ; | 2 }} * {{{level|1}}} }}
             | {{#expr: {{#explode: {{#var:row}} | ; | 2 }} * {{{level|1}}} }}
           }}
           }}
Line 107: Line 113:
     }}{{#vardefine:splash_index | {{#expr:  
     }}{{#vardefine:splash_index | {{#expr:  
         {{#ifeq: {{#var:splash}} | 0 | 1 | {{#var:splash}} }}  
         {{#ifeq: {{#var:splash}} | 0 | 1 | {{#var:splash}} }}  
         {{#if: {{#pos: {{#var:atk}} | * }} | * 4 }}
         {{#if: {{#pos: {{#var:atk}} | * }} | * {{#var:shots}} }}
         {{#if: {{#pos: {{#var:atk}} | - }} | * .025 <!-- damage build up --> |  
         {{#if: {{#pos: {{#var:atk}} | - }} | * .025 <!-- damage build up --> |  
           {{#ifexpr: ({{#var:atk}}) < 350 | * (({{#var:atk}}) / 350) }}
           {{#ifexpr: ({{#var:atk}}) < 350 | * (({{#var:atk}}) / 350) }}

Revision as of 19:55, 4 September 2024

This template contains all unit data (HP, Speed, Attack, (Attack) Interval, Range, Splash (Range), Target, Units, Giant, Mobility, Cost, Unlock Cost, Upkeep)

Using the Template with a unit name sets the variables {{UnitData|Fortress}}

On the unit pages the data is automatically pulled and placed in variables (hp, speed, atk, atkint, range, splash, target, units, giant, mobility, cost, unlockcost, burst, dps), ready to use on the page with e.g. {{#var:speed}}.

A single value can be pulled without overriding the variables {{UnitData|Fortress|speed}}.

Melting damage is set as a range "1 - 9000" allowing the math to work.

Missiles usually come in packs of 4 but the damage/attack shown is for one missile, so add a multiplier e.g. "555 * 4" looks nicer and the math works fine.


Error: Unit "UnitData" undefined!