1
Fork 0
slime-blood-and-pain/Assets/Scripts/EntityItemHeart.cs

22 lines
490 B
C#
Raw Normal View History

2019-04-28 15:22:08 +00:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class EntityItemHeart : EntityItem
{
public int regen;
2019-04-28 16:00:11 +00:00
2019-04-28 15:22:08 +00:00
public override string Name {
get {
return "Heart";
}
}
public override void OnPickup(EntityPlayer player) {
2019-04-29 08:39:48 +00:00
messageBar.Write("Picked up: " + Name, Color.lime);
2019-04-28 16:00:11 +00:00
player.hp += regen;
2019-04-28 15:22:08 +00:00
if (player.hp > player.hpMax) player.hp = player.hpMax;
Destroy(gameObject);
}
}