public Zumbi() { _life = 2500; _mana = 20; _atackdamage = 40; _spelldamage = 20; _armorresist = 80; _magicresist = 90; _agility = 20; _allSpell = new Attack_Spell[1]; _allSpell[0] = new Intoxication(); weapons = new IWeapons[3]; _handsweapon = weapons[0]; }
public Troll() { _life = 2800; _mana = 20; _atackdamage = 100; _spelldamage = 20; _armorresist = 100; _magicresist = 20; _agility = 20; _allSpell = new Attack_Spell[1]; _allSpell[0] = new Intoxication(); weapons = new IWeapons[2]; _handsweapon = weapons[0]; }
public Thief() { _life = 2800; _mana = 50; _atackdamage = 50; _spelldamage = 30; _armorresist = 40; _magicresist = 50; _agility = 100; _allSpell = new Attack_Spell[2]; _allSpell[0] = new Intoxication(); _allSpell[1] = new Storm(); weapons = new IWeapons[4]; _handsweapon = weapons[0]; }