internal NPCEventArgs( NPC npc, int injuredLife, int injuredType ) : base(npc) { this.InjuredLife = injuredLife; this.InjuredType = injuredType; }
internal NPCEventArgs( NPC npc ) : this(npc, 0, 0) { }