Exemple #1
0
 public SlayerMonster(string name, string examine, string wikiUrl, string thumbUrl, string internalId, int hp, float combatExp, float slayerExp, int slayerLevel, Archetype archetype)
     : base(name, examine, wikiUrl, thumbUrl, internalId, hp, combatExp)
 {
     SlayerExp   = slayerExp;
     SlayerLevel = slayerLevel;
     Archetype   = archetype;
     AssignedBy  = new List <SlayerMaster>();
 }
Exemple #2
0
 public SlayerMasterAssignment(Archetype archetype, int lowerBound, int upperBound)
 {
     Archetype  = archetype;
     LowerBound = lowerBound;
     UpperBound = upperBound;
 }