public NPCShortFlagReward(ushort newID, short newValue, ENPCModificationType newModificationType, string newText) : base(newText) { this.id = newID; this.value = newValue; this.modificationType = newModificationType; }
public NPCRandomShortFlagReward(ushort newID, short newMinValue, short newMaxValue, ENPCModificationType newModificationType, string newText) : base(newID, 0, newModificationType, newText) { base.id = newID; this.minValue = newMinValue; this.maxValue = newMaxValue; base.modificationType = newModificationType; }