public SpellModifier(int id, ModifierCondition condition, SpellModifierType modifierType)
 {
     Id = id;
     modifierCondition = condition;
     ModifierType      = modifierType;
     NeedRemoval       = false;
 }
Example #2
0
 public SpellInfoModifier(int id, ModifierCondition condition, SpellModifierType modifierType, float newValue)
     : base(id, condition, modifierType)
 {
     value = newValue;
 }
 public SpellInfoModifierFromBuff(int id, ModifierCondition condition, SpellModifierType modifierType, float newValue, string newSpellName)
     : base(id, condition, modifierType)
 {
     value = newValue; SpellName = newSpellName;
 }