1 #include "simulation/ElementCommon.h"
2 
Element_INST()3 void Element::Element_INST()
4 {
5 	Identifier = "DEFAULT_PT_INST";
6 	Name = "INST";
7 	Colour = PIXPACK(0x404039);
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 = "Instantly conducts, PSCN to charge, NSCN to take.";
31 
32 	Properties = TYPE_SOLID|PROP_LIFE_DEC;
33 
34 	LowPressure = IPL;
35 	LowPressureTransition = NT;
36 	HighPressure = IPH;
37 	HighPressureTransition = NT;
38 	LowTemperature = ITL;
39 	LowTemperatureTransition = NT;
40 	HighTemperature = ITH;
41 	HighTemperatureTransition = NT;
42 }
43