Files
tbd-station-14/Content.Server/Temperature/Components/TemperatureComponent.cs
mirrorcult 07024f7c77 Severely nerf fires and severely buff fire protection (#5396)
* Make fires do less damage

* Severely nerf fires and severely buff temperature protection

* fuck it, i'll nerf it so hard and we can buff it later if we decide

* new scaling func

* fix

* unused

* reviews + balance metabolism heat + reduce atmos air temp transfer efficiency

* little more balance

* just a wee bit more

* slight adjustment
2021-11-18 23:08:30 -07:00

75 lines
2.4 KiB
C#

using Content.Shared.Atmos;
using Content.Shared.Damage;
using Content.Shared.FixedPoint;
using Robust.Shared.GameObjects;
using Robust.Shared.Physics;
using Robust.Shared.Serialization.Manager.Attributes;
using Robust.Shared.ViewVariables;
namespace Content.Server.Temperature.Components
{
/// <summary>
/// Handles changing temperature,
/// informing others of the current temperature,
/// and taking fire damage from high temperature.
/// </summary>
[RegisterComponent]
public class TemperatureComponent : Component
{
/// <inheritdoc />
public override string Name => "Temperature";
[ViewVariables(VVAccess.ReadWrite)]
public float CurrentTemperature { get; set; } = Atmospherics.T20C;
[DataField("heatDamageThreshold")]
[ViewVariables(VVAccess.ReadWrite)]
public float HeatDamageThreshold = 360f;
[DataField("coldDamageThreshold")]
[ViewVariables(VVAccess.ReadWrite)]
public float ColdDamageThreshold = 260f;
[DataField("specificHeat")]
[ViewVariables(VVAccess.ReadWrite)]
public float SpecificHeat = 50f;
/// <summary>
/// How well does the air surrounding you merge into your body temperature?
/// </summary>
[DataField("atmosTemperatureTransferEfficiency")]
[ViewVariables(VVAccess.ReadWrite)]
public float AtmosTemperatureTransferEfficiency = 0.1f;
[ViewVariables] public float HeatCapacity
{
get
{
if (Owner.TryGetComponent<IPhysBody>(out var physics))
{
return SpecificHeat * physics.Mass;
}
return Atmospherics.MinimumHeatCapacity;
}
}
[DataField("coldDamage", required: true)]
[ViewVariables(VVAccess.ReadWrite)]
public DamageSpecifier ColdDamage = default!;
[DataField("heatDamage", required: true)]
[ViewVariables(VVAccess.ReadWrite)]
public DamageSpecifier HeatDamage = default!;
/// <summary>
/// Temperature won't do more than this amount of damage per second.
///
/// Okay it genuinely reaches this basically immediately for a plasma fire.
/// </summary>
[DataField("damageCap")]
[ViewVariables(VVAccess.ReadWrite)]
public FixedPoint2 DamageCap = FixedPoint2.New(8);
}
}