Difference between revisions of "Template:Infobox Element"

From The Powder Toy
Jump to: navigation, search
(Add Property tooltips, and a link to the source code)
m (update github username)
 
(4 intermediate revisions by 2 users not shown)
Line 34: Line 34:
 
| label7 = [[Gravity]]
 
| label7 = [[Gravity]]
 
| data7 = {{{gravity}}}
 
| data7 = {{{gravity}}}
| label8 = Acid dissolve rate
+
| label8 = [[Element:ACID|Acid]] dissolve rate
 
| data8 = {{#ifexpr: {{{hardness}}} > 1000 | 100% | {{#expr:{{{hardness}}}*100/1000 round 1}}% }}
 
| data8 = {{#ifexpr: {{{hardness}}} > 1000 | 100% | {{#expr:{{{hardness}}}*100/1000 round 1}}% }}
 
| label10 = [[Flammability]]
 
| label10 = [[Flammability]]
Line 84: Line 84:
 
| data49 = {{#if: {{#pos:{{{properties|}}}|PROP_NEUTPASS}} | <span data-toggle="tooltip" data-original-title="PROP_NEUTPASS">Allows neutrons to pass through</span> | }}
 
| data49 = {{#if: {{#pos:{{{properties|}}}|PROP_NEUTPASS}} | <span data-toggle="tooltip" data-original-title="PROP_NEUTPASS">Allows neutrons to pass through</span> | }}
 
| data50 = {{#if: {{#pos:{{{properties|}}}|PROP_DEADLY}} | <span data-toggle="tooltip" data-original-title="PROP_DEADLY">Harmful to {{Material | STKM}}</span> | }}
 
| data50 = {{#if: {{#pos:{{{properties|}}}|PROP_DEADLY}} | <span data-toggle="tooltip" data-original-title="PROP_DEADLY">Harmful to {{Material | STKM}}</span> | }}
| data51 = {{#if: {{#pos:{{{properties|}}}|PROP_RADIOACTIVE}} | <span data-toggle="tooltip" data-original-title="PROP_RADIOACTIVE">Radioactive, harmful to {{Material | STKM}} | }}</span>
+
| data51 = {{#if: {{#pos:{{{properties|}}}|PROP_RADIOACTIVE}} | <span data-toggle="tooltip" data-original-title="PROP_RADIOACTIVE">Radioactive, harmful to {{Material | STKM}}</span> | }}
| data 60 = [https://github.com/simtr/The-Powder-Toy/blob/master/{{#if: {{{srcfile|}}}|{{{srcfile}}}|src/simulation/elements/{{{name}}}.cpp}} Source code]
+
| data60 = [https://github.com/ThePowderToy/The-Powder-Toy/blob/master/{{#if: {{{srcfile|}}}|{{{srcfile}}}|src/simulation/elements/{{#explode:{{{identifier|}}}|_|-1}}.cpp}} Source code]
 
}}
 
}}
 
{{#ifeq: {{{nocat|0}}} | 0 | [[Category:Elements]] | }}
 
{{#ifeq: {{{nocat|0}}} | 0 | [[Category:Elements]] | }}
 
</includeonly><noinclude>
 
</includeonly><noinclude>
[https://github.com/simtr/The-Powder-Toy/blob/master/src/simulation/elements/DUST.cpp Source code]
 
 
Infobox for displaying various element properties.
 
Infobox for displaying various element properties.
  

Latest revision as of 15:18, 7 July 2018

Infobox for displaying various element properties.

Most of them should be passed exactly as in the source code. However, the properties parameter should be space separated (so remove the pipes). Example: TYPE_LIQUID PROP_CONDUCTS PROP_NEUTPENETRATE PROP_LIFE_DEC

Example:

{{ infobox Element
| icon = ASDF.png
| longname = 
| image = 

| identifier = DEFAULT_PT_ASDF
| name = ASDF
| description = Very light dust. Flammable.
| colour = FFE0A0
| menusection = SC_POWDERS
| menuvisible = 1
| advection = 0.7
| airdrag = 0.02
| airloss = 0.96
| loss = 0.8
| collision = 0
| diffusion = 0
| explosive = 0
| falldown = 1
| flammable = 10
| gravity = 0.1
| hardness = 30
| heatconduct = 70
| hotair = 0
| meltable = 0
| state = ST_SOLID
| temperature = 2564.15
| weight = 85
| properties = TYPE_PART PROP_LIFE_DEC PROP_LIFE_KILL_DEC PROP_CONDUCTS PROP_NEUTPENETRATE PROP_DEADLY
| lowtemperature = 1234
| lowtemperaturetransition = DUST
| hightemperature = 5678
| hightemperaturetransition = special
| lowpressure = 
| lowpressuretransition = 
| highpressure = 
| highpressuretransition = 
}}

which gives

ASDF.png
Properties
Section Powders
Spawn temperature 2291°C
Heat Conductivity 28%
Relative weight 85
Gravity 0.1
Acid dissolve rate 3%
Flammability 10
State Powder
Transitions
Low temperature DUST.png below 960.85°C
High temperature transition occurs above 5404.85°C
Misc properties
Conducts electricity (SPRK)
Mangled by neutrons
Harmful to STKM
Source code