2024-09-01 17:22:16 +05:00
|
|
|
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)]
|
2025-04-04 10:35:48 +03:00
|
|
|
public ProtoId<WeatherPrototype>? Visuals { get; set; } = null;
|
2024-09-01 17:22:16 +05:00
|
|
|
|
|
|
|
|
[DataField]
|
2025-06-15 21:34:33 +03:00
|
|
|
public MinMax Duration { get; set; } = new(120, 600);
|
2025-04-04 10:35:48 +03:00
|
|
|
|
|
|
|
|
[DataField]
|
|
|
|
|
public float Weight { get; set; } = 1f;
|
2024-09-01 17:22:16 +05:00
|
|
|
}
|