using System.Collections; using System.Collections.Generic; using UnityEngine; public class Tough : Buff { public Tough() { type = 1; } public override void Apply(Character self, Character enemy) { self.ChangePoise(2); enemy.ChangePoise(-1); } }