aloe balanced

This commit is contained in:
Rendo 2025-07-23 16:54:26 +05:00
commit 797fbfb4fe
3 changed files with 19 additions and 5 deletions

View file

@ -36,7 +36,7 @@ public partial class AloeBehaviour : BaseBehaviour
var checkPos = GetParent<Node2D>().GlobalPosition + Vector2.Right * FieldParams.TileWidth;
if (PoolContainer.Instance.TryGetEntity(checkPos, out RuntimePlantData plantData))
{
plantData.Heal(1200 + 0.5f * plantData.MaxHP, GetParent());
plantData.Heal(300, GetParent());
}
}