43 lines
1.5 KiB
C#
43 lines
1.5 KiB
C#
using Content.Server.Botany.Components;
|
|
using Content.Server.Botany.Systems;
|
|
using Content.Shared.EntityEffects;
|
|
using Content.Shared.Popups;
|
|
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Server.EntityEffects.Effects.PlantMetabolism;
|
|
|
|
/// <summary>
|
|
/// Handles removal of seeds on a plant.
|
|
/// </summary>
|
|
|
|
public sealed partial class PlantDestroySeeds : EntityEffect
|
|
{
|
|
public override void Effect(EntityEffectBaseArgs args)
|
|
{
|
|
if (
|
|
!args.EntityManager.TryGetComponent(args.TargetEntity, out PlantHolderComponent? plantHolderComp)
|
|
|| plantHolderComp.Seed == null
|
|
|| plantHolderComp.Dead
|
|
|| plantHolderComp.Seed.Immutable
|
|
)
|
|
return;
|
|
|
|
var plantHolder = args.EntityManager.System<PlantHolderSystem>();
|
|
var popupSystem = args.EntityManager.System<SharedPopupSystem>();
|
|
|
|
if (plantHolderComp.Seed.Seedless == false && plantHolderComp.Seed.PermanentlySeedless == false) // Frontier: add PermanentlySeedless check
|
|
{
|
|
plantHolder.EnsureUniqueSeed(args.TargetEntity, plantHolderComp);
|
|
popupSystem.PopupEntity(
|
|
Loc.GetString("botany-plant-seedsdestroyed"),
|
|
args.TargetEntity,
|
|
PopupType.SmallCaution
|
|
);
|
|
plantHolderComp.Seed.Seedless = true;
|
|
}
|
|
}
|
|
|
|
protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) =>
|
|
Loc.GetString("reagent-effect-guidebook-plant-seeds-remove", ("chance", Probability));
|
|
}
|