1 #include "simulation/ElementCommon.h"
2 
Element_METL()3 void Element::Element_METL()
4 {
5 	Identifier = "DEFAULT_PT_METL";
6 	Name = "METL";
7 	Colour = PIXPACK(0x404060);
8 	MenuVisible = 1;
9 	MenuSection = SC_ELEC;
10 	Enabled = 1;
11 
12 	Advection = 0.0f;
13 	AirDrag = 0.00f * CFDS;
14 	AirLoss = 0.90f;
15 	Loss = 0.00f;
16 	Collision = 0.0f;
17 	Gravity = 0.0f;
18 	Diffusion = 0.00f;
19 	HotAir = 0.000f	* CFDS;
20 	Falldown = 0;
21 
22 	Flammable = 0;
23 	Explosive = 0;
24 	Meltable = 1;
25 	Hardness = 1;
26 
27 	Weight = 100;
28 
29 	HeatConduct = 251;
30 	Description = "The basic conductor. Meltable.";
31 
32 	Properties = TYPE_SOLID|PROP_CONDUCTS|PROP_LIFE_DEC|PROP_HOT_GLOW;
33 
34 	LowPressure = IPL;
35 	LowPressureTransition = NT;
36 	HighPressure = IPH;
37 	HighPressureTransition = NT;
38 	LowTemperature = ITL;
39 	LowTemperatureTransition = NT;
40 	HighTemperature = 1273.0f;
41 	HighTemperatureTransition = PT_LAVA;
42 }
43