Decimation_Mod/Lib/Amulets/Synergy/IAmuletsSynergy.cs
FyloZ 80262bf100 Updated buffs sprites.
Updated fire amulet's synergy.
2020-06-06 12:00:15 -04:00

16 lines
694 B
C#

using Decimation.Content;
using Microsoft.Xna.Framework;
using Terraria;
namespace Decimation.Lib.Amulets.Synergy
{
public interface IAmuletsSynergy
{
void OnHitNPC(DecimationPlayer modPlayer, NPC target, Item weapon, ref int damages, ref bool crit);
void OnHitPlayer(DecimationPlayer modPlayer, Player target, Item weapon, ref int damages, ref bool crit);
void OnPlayerHit(DecimationPlayer modPlayer, ref int damages);
void OnShoot(DecimationPlayer modPlayer, Item item, ref Vector2 position, ref float speedX, ref float speedY, ref int projectileType, ref int damages, ref float knockBack);
void Update(DecimationPlayer modPlayer);
}
}