2020-10-26 23:19:46 +01:00
|
|
|
|
#nullable enable
|
|
|
|
|
|
using Content.Server.GameObjects.Components.Botany;
|
|
|
|
|
|
using Content.Shared.Interfaces.Chemistry;
|
|
|
|
|
|
using JetBrains.Annotations;
|
2021-02-11 01:13:03 -08:00
|
|
|
|
using Robust.Shared.GameObjects;
|
2020-10-26 23:19:46 +01:00
|
|
|
|
using Robust.Shared.IoC;
|
|
|
|
|
|
using Robust.Shared.Maths;
|
|
|
|
|
|
using Robust.Shared.Random;
|
|
|
|
|
|
using Robust.Shared.Serialization;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Content.Server.Chemistry.PlantMetabolism
|
|
|
|
|
|
{
|
|
|
|
|
|
[UsedImplicitly]
|
|
|
|
|
|
public class RobustHarvest : IPlantMetabolizable
|
|
|
|
|
|
{
|
2021-02-04 17:44:49 +01:00
|
|
|
|
void IExposeData.ExposeData(ObjectSerializer serializer)
|
2020-10-26 23:19:46 +01:00
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void Metabolize(IEntity plantHolder, float customPlantMetabolism = 1f)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (plantHolder.Deleted || !plantHolder.TryGetComponent(out PlantHolderComponent? plantHolderComp)
|
|
|
|
|
|
|| plantHolderComp.Seed == null || plantHolderComp.Dead ||
|
|
|
|
|
|
plantHolderComp.Seed.Immutable)
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
|
|
var random = IoCManager.Resolve<IRobustRandom>();
|
|
|
|
|
|
|
|
|
|
|
|
var chance = MathHelper.Lerp(15f, 150f, plantHolderComp.Seed.Potency) * 3.5f * customPlantMetabolism;
|
|
|
|
|
|
|
|
|
|
|
|
if (random.Prob(chance))
|
|
|
|
|
|
{
|
|
|
|
|
|
plantHolderComp.CheckForDivergence(true);
|
|
|
|
|
|
plantHolderComp.Seed.Potency++;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
chance = MathHelper.Lerp(6f, 2f, plantHolderComp.Seed.Yield) * 0.15f * customPlantMetabolism;
|
|
|
|
|
|
|
|
|
|
|
|
if (random.Prob(chance))
|
|
|
|
|
|
{
|
|
|
|
|
|
plantHolderComp.CheckForDivergence(true);
|
|
|
|
|
|
plantHolderComp.Seed.Yield--;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|