Ejemplo n.º 1
0
 public Gear(GearSword sword, GearHelmet helmet, GearChestplate chestplate, GearLeggings leggings, GearBoots boots, GearGloves gloves)
 {
     Sword      = sword;
     Helmet     = helmet;
     Chestplate = chestplate;
     Leggings   = leggings;
     Boots      = boots;
     Gloves     = gloves;
 }
Ejemplo n.º 2
0
        public GearSword(int ID, ulong TOTAL_XP)
        {
            GearSword sword = Swords[ID];

            sword.TOTAL_XP = TOTAL_XP;

            Damage   = sword.Damage;
            Level    = sword.Level;
            MinLevel = sword.MinLevel;
            Name     = sword.Name;
            this.ID  = ID;
        }
Ejemplo n.º 3
0
 public GearSword(GearSword sword) : base(sword.Damage, sword.Level, sword.MinLevel, sword.Name, sword.ID)
 {
 }