Files
crystall-punk-14/Content.Shared/_CP14/WeatherControl/CP14WeatherData.cs
Ed b66ee390a6 Dynamic demiplane weather + farming hotfix (#1131)
* dynamic demiplane weather

* add skeleton sprite

* hotfix farming

* Update wheat.yml
2025-04-04 10:35:48 +03:00

19 lines
459 B
C#

using Content.Shared.Destructible.Thresholds;
using Content.Shared.Weather;
using Robust.Shared.Prototypes;
namespace Content.Shared._CP14.WeatherControl;
[DataRecord, Serializable]
public sealed class CP14WeatherData
{
[DataField(required: true)]
public ProtoId<WeatherPrototype>? Visuals { get; set; } = null;
[DataField]
public MinMax Duration { get; set; } = new(30, 300);
[DataField]
public float Weight { get; set; } = 1f;
}