* hot plates * sprite fix AND i spelled it wrong AND forgot upgrade examine * fix license * IGameTiming is shit like yo mamma * active comp
20 lines
531 B
C#
20 lines
531 B
C#
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")]
|
|
public string MachinePartHeatPerSecond = "Laser";
|
|
|
|
[DataField("partRatingHeatMultiplier")]
|
|
public float PartRatingHeatMultiplier = 1.5f;
|
|
}
|