2022-12-24 20:59:51 -05:00
|
|
|
|
namespace Content.Server.Chemistry.Components;
|
|
|
|
|
|
|
|
|
|
|
|
[RegisterComponent]
|
|
|
|
|
|
public sealed class SolutionHeaterComponent : Component
|
|
|
|
|
|
{
|
|
|
|
|
|
public readonly string BeakerSlotId = "beakerSlot";
|
|
|
|
|
|
|
|
|
|
|
|
[DataField("heatPerSecond")]
|
|
|
|
|
|
public float HeatPerSecond = 120;
|
|
|
|
|
|
|
|
|
|
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
|
|
|
|
public float HeatMultiplier = 1;
|
|
|
|
|
|
|
|
|
|
|
|
[DataField("machinePartHeatPerSecond")]
|
2023-04-28 23:23:49 -04:00
|
|
|
|
public string MachinePartHeatPerSecond = "Capacitor";
|
2022-12-24 20:59:51 -05:00
|
|
|
|
|
|
|
|
|
|
[DataField("partRatingHeatMultiplier")]
|
|
|
|
|
|
public float PartRatingHeatMultiplier = 1.5f;
|
|
|
|
|
|
}
|