Exemple #1
0
 public Emerald(ClarityLevel clarityLevel)
     : base(BASE_STRENGHT_INCREASE, BASE_AGILITY_INCREASE, BASE_VITALITY_INCREASE, clarityLevel)
 {
 }
 public Amethyst(ClarityLevel clarity)
     : base(AmethystStrength, AmethystAgility, AmethystVitality, clarity)
 {
 }
Exemple #3
0
 public Ruby(ClarityLevel clarityLevel)
     : base(clarityLevel)
 {
 }
 public Emerald(ClarityLevel clarity)
     : base(EmeraldStrength, EmeraldAgility, EmeraldVitality, clarity)
 {
 }
Exemple #5
0
 public Ruby(ClarityLevel clarity)
     : base(RubyStrength, RubyAgility, RubyVitality, clarity)
 {
 }
Exemple #6
0
 public Gem(ClarityLevel clarityLevel)
 {
     this.ClarityLevel = clarityLevel;
 }
Exemple #7
0
 public Emerald(ClarityLevel clarity)
     : base(clarity, strengthBonus, agilityBonus, vitalityBonus)
 {
 }
Exemple #8
0
 protected Gem(int strenghtIncrease, int agilityIncrease, int vitalityIncrease, ClarityLevel clarityLevel)
 {
     this.Modifier         = (int)clarityLevel;
     this.StrenghtIncrease = strenghtIncrease + this.Modifier;
     this.AgilityIncrease  = agilityIncrease + this.Modifier;
     this.VitalityIncrease = vitalityIncrease + this.Modifier;
 }
Exemple #9
0
 public Amethyst(ClarityLevel clarityLevel)
     : base(BASE_STRENGHT_INCREASE, BASE_AGILITY_INCREASE, BASE_VITALITY_INCREASE, clarityLevel)
 {
 }
Exemple #10
0
 public Ruby(ClarityLevel clarity)
     : base(clarity, strengthBonus, agilityBonus, vitalityBonus)
 {
 }
Exemple #11
0
 public Emerald(ClarityLevel clarityLevel) : base(clarityLevel)
 {
 }
Exemple #12
0
 public Amethyst(ClarityLevel clarity)
     : base(clarity, strengthBonus, agilityBonus, vitalityBonus)
 {
 }
 public Ruby(ClarityLevel clarity, string name)
     : base(clarity, name, GemStrengthValue.RubyStrenght, GemAgilityValue.RubyAgility, GemVitalityValue.RubyVitality)
 {
 }
Exemple #14
0
 public Emerald(ClarityLevel clarity, string name)
     : base(clarity, name, GemStrengthValue.EmeraldStrenght, GemAgilityValue.EmeraldAgility, GemVitalityValue.EmeraldVitality)
 {
 }
Exemple #15
0
 public Amethyst(ClarityLevel clarityLevel) : base(clarityLevel)
 {
 }
Exemple #16
0
 public Amethyst(ClarityLevel clarity, string name)
     : base(clarity, name, GemStrengthValue.AmethystStrenght, GemAgilityValue.AmethystAgility, GemVitalityValue.AmethystVitality)
 {
 }