Пример #1
0
 public NPCShortFlagReward(ushort newID, short newValue, ENPCModificationType newModificationType, string newText) : base(newText)
 {
     this.id               = newID;
     this.value            = newValue;
     this.modificationType = newModificationType;
 }
Пример #2
0
 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;
 }