Exemplo n.º 1
0
 public Weapon(Rarity d, double s, double a, double b, string c, ElementalDamages e) : this()
 {
     this.rarity      = d;
     this.attackSpeed = s;
     this.damage      = a;
     this.durability  = b;
     this.name        = c;
     this.element     = e;
 }
Exemplo n.º 2
0
 public Sword(Rarity x, double a, double b, double c, string y, ElementalDamages e) : base(x, a, b, c, y, e)
 {
     this.swordCritChance     = 9.0;
     this.swordCritMultiplier = 1.6;
 }
Exemplo n.º 3
0
 public Dagger(Rarity x, double a, double b, double d, string z, ElementalDamages e) : base(x, a, b, d, z, e)
 {
     this.daggerCritMultiplier = 2.3;
     this.daggerCritChance     = 7.0;
 }