HP Drain sigil (shura) implementation

Drains 15% of damage done but HP isn't restored by VT timer
This commit is contained in:
2026-06-17 19:09:09 -07:00
parent 35f4b2018d
commit 68a8769834
5 changed files with 47 additions and 7 deletions
@@ -11,12 +11,18 @@ public interface ISigil
[Export]
public double MoveSpeedModifier { get; }
[Export]
public bool AutoRevive { get; }
[Export]
public ElementType ElementType { get; }
[Export]
public ElementalResistanceSet ElementalResistanceSet { get; }
[Export] public SigilTag SigilTag { get; }
}
public enum SigilTag
{
None,
AutoRevive,
HPDrain,
}