Files
OldThink/Content.Server/Jobs/GiveItemOnHolidaySpecial.cs

38 lines
1.3 KiB
C#
Raw Permalink Normal View History

using Content.Server.Holiday;
2022-03-17 20:13:31 +13:00
using Content.Shared.Hands.EntitySystems;
using Content.Shared.Roles;
using JetBrains.Annotations;
using Robust.Shared.Prototypes;
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
namespace Content.Server.Jobs
{
[UsedImplicitly]
[DataDefinition]
public sealed partial class GiveItemOnHolidaySpecial : JobSpecial
{
[DataField("holiday", customTypeSerializer:typeof(PrototypeIdSerializer<HolidayPrototype>))]
public string Holiday { get; private set; } = string.Empty;
[DataField("prototype", customTypeSerializer:typeof(PrototypeIdSerializer<EntityPrototype>))]
public string Prototype { get; private set; } = string.Empty;
2021-12-05 21:02:04 +01:00
public override void AfterEquip(EntityUid mob)
{
if (string.IsNullOrEmpty(Holiday) || string.IsNullOrEmpty(Prototype))
return;
2022-03-17 20:13:31 +13:00
var sysMan = IoCManager.Resolve<IEntitySystemManager>();
if (!sysMan.GetEntitySystem<HolidaySystem>().IsCurrentlyHoliday(Holiday))
return;
2021-12-08 17:17:12 +01:00
var entMan = IoCManager.Resolve<IEntityManager>();
2021-12-08 17:17:12 +01:00
var entity = entMan.SpawnEntity(Prototype, entMan.GetComponent<TransformComponent>(mob).Coordinates);
2022-03-17 20:13:31 +13:00
sysMan.GetEntitySystem<SharedHandsSystem>().PickupOrDrop(mob, entity);
}
}
}