Move GBMB to Force Menu

This commit is contained in:
jBot-42
2015-09-15 15:30:33 -07:00
committed by jacob1
parent f5774ad9b9
commit 146fc4d5fa

View File

@@ -6,9 +6,9 @@ Element_GBMB::Element_GBMB()
Name = "GBMB"; Name = "GBMB";
Colour = PIXPACK(0x1144BB); Colour = PIXPACK(0x1144BB);
MenuVisible = 1; MenuVisible = 1;
MenuSection = SC_EXPLOSIVE; MenuSection = SC_FORCE;
Enabled = 1; Enabled = 1;
Advection = 0.6f; Advection = 0.6f;
AirDrag = 0.01f * CFDS; AirDrag = 0.01f * CFDS;
AirLoss = 0.98f; AirLoss = 0.98f;
@@ -18,21 +18,21 @@ Element_GBMB::Element_GBMB()
Diffusion = 0.00f; Diffusion = 0.00f;
HotAir = 0.000f * CFDS; HotAir = 0.000f * CFDS;
Falldown = 1; Falldown = 1;
Flammable = 0; Flammable = 0;
Explosive = 0; Explosive = 0;
Meltable = 0; Meltable = 0;
Hardness = 20; Hardness = 20;
Weight = 30; Weight = 30;
Temperature = R_TEMP-2.0f +273.15f; Temperature = R_TEMP-2.0f +273.15f;
HeatConduct = 29; HeatConduct = 29;
Description = "Gravity bomb. Sticks to the first object it touches then produces a strong gravity push."; Description = "Gravity bomb. Sticks to the first object it touches then produces a strong gravity push.";
State = ST_NONE; State = ST_NONE;
Properties = TYPE_PART|PROP_LIFE_DEC|PROP_LIFE_KILL_DEC; Properties = TYPE_PART|PROP_LIFE_DEC|PROP_LIFE_KILL_DEC;
LowPressure = IPL; LowPressure = IPL;
LowPressureTransition = NT; LowPressureTransition = NT;
HighPressure = IPH; HighPressure = IPH;
@@ -41,7 +41,7 @@ Element_GBMB::Element_GBMB()
LowTemperatureTransition = NT; LowTemperatureTransition = NT;
HighTemperature = ITH; HighTemperature = ITH;
HighTemperatureTransition = NT; HighTemperatureTransition = NT;
Update = &Element_GBMB::update; Update = &Element_GBMB::update;
Graphics = &Element_GBMB::graphics; Graphics = &Element_GBMB::graphics;
} }