30 lines
723 B
C#
30 lines
723 B
C#
using Decimation.Lib.Buffs;
|
|
using Terraria;
|
|
|
|
namespace Decimation.Content.Buffs.Buffs
|
|
{
|
|
internal class MysticFlame : DecimationBuff
|
|
{
|
|
protected override string DisplayName => "Mystic Flame";
|
|
protected override string Description => "A warmth envelops you";
|
|
|
|
protected override void Init()
|
|
{
|
|
save = true;
|
|
clearable = true;
|
|
}
|
|
|
|
public override void Update(Player player, ref int buffIndex)
|
|
{
|
|
player.lifeRegen += 2;
|
|
player.manaRegen += 1;
|
|
player.moveSpeed *= 1.05f;
|
|
}
|
|
|
|
public override void Update(NPC npc, ref int buffIndex)
|
|
{
|
|
npc.lifeRegen += 2;
|
|
}
|
|
}
|
|
}
|