2021-07-17 02:37:09 +02:00
|
|
|
|
using Content.Server.Botany.Components;
|
2021-06-09 22:19:39 +02:00
|
|
|
|
using Content.Shared.Botany;
|
2020-10-26 23:19:46 +01:00
|
|
|
|
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;
|
2021-03-05 01:08:38 +01:00
|
|
|
|
using Robust.Shared.Serialization.Manager.Attributes;
|
2020-10-26 23:19:46 +01:00
|
|
|
|
|
|
|
|
|
|
namespace Content.Server.Chemistry.PlantMetabolism
|
|
|
|
|
|
{
|
|
|
|
|
|
[UsedImplicitly]
|
2021-03-05 01:08:38 +01:00
|
|
|
|
[DataDefinition]
|
2020-10-26 23:19:46 +01:00
|
|
|
|
public class RobustHarvest : IPlantMetabolizable
|
|
|
|
|
|
{
|
|
|
|
|
|
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--;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|