Goodbye Microwave, Hello Hot Plates! (#13061)

* hot plates

* sprite fix AND i spelled it wrong AND forgot upgrade examine

* fix license

* IGameTiming is shit like yo mamma

* active comp
This commit is contained in:
Nemanja
2022-12-24 20:59:51 -05:00
committed by GitHub
parent 5eadce16ec
commit 6d97764e9d
13 changed files with 174 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
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;
}