blob: 8c699d775a8e6f4ee431c585e5698d8b9be1518c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
#include "simulation/Elements.h"
//#TPT-Directive ElementClass Element_VRSG PT_VRSG 176
Element_VRSG::Element_VRSG()
{
Identifier = "DEFAULT_PT_VRSG";
Name = "VRSG";
Colour = PIXPACK(0xFE68FE);
MenuVisible = 0;
MenuSection = SC_GAS;
Enabled = 1;
Advection = 1.0f;
AirDrag = 0.01f * CFDS;
AirLoss = 0.99f;
Loss = 0.30f;
Collision = -0.1f;
Gravity = 0.0f;
Diffusion = 0.75f;
HotAir = 0.000f * CFDS;
Falldown = 0;
Flammable = 500;
Explosive = 0;
Meltable = 0;
Hardness = 0;
Weight = 1;
Temperature = 522.0f + 273.15f;
HeatConduct = 251;
Description = "Gas Virus. Turns everything it touches into virus.";
State = ST_GAS;
Properties = TYPE_GAS|PROP_DEADLY;
LowPressure = IPL;
LowPressureTransition = NT;
HighPressure = IPH;
HighPressureTransition = NT;
LowTemperature = 673.0f;
LowTemperatureTransition = PT_VIRS;
HighTemperature = ITH;
HighTemperatureTransition = NT;
Update = &Element_VIRS::update;
}
Element_VRSG::~Element_VRSG() {}
|