added consumables and buff healing bonuses

This commit is contained in:
2025-08-27 22:15:33 -04:00
parent 5aea4453b0
commit 7b0c9f22ec
7 changed files with 289 additions and 18 deletions

17
Player.cs Normal file
View File

@@ -0,0 +1,17 @@
using Terraria.ID;
using TShockAPI;
namespace TerrariaHealingPlugin
{
public class Player
{
public TSPlayer player { get; set; }
public int healAmount { get; set; } = 0;
public int healItem { get; set; } = ItemID.None;
public Player(TSPlayer player)
{
this.player = player;
}
}
}