Exemple #1
0
        public CharacterBase()
        {
            this.equipmentset.mainHand = EquipmentFactory.getWeapon("TamashiNoHakai");
            this.equipmentset.boots    = EquipmentFactory.getArmor("LeatherBoots");
            this.equipmentset.legs     = EquipmentFactory.getArmor("LeatherTrousers");
            this.equipmentset.helmet   = EquipmentFactory.getArmor("LeatherHelmet");
            this.equipmentset.chest    = EquipmentFactory.getArmor("LeatherJacket");
            this.equipmentset.hands    = EquipmentFactory.getArmor("LeatherGloves");

            this.moveset.addToMovelist(AbilityFactory.getAbility("Ember"));
            this.moveset.addToMovelist(AbilityFactory.getAbility("InfernalBlaze"));
            this.moveset.addToMovelist(AbilityFactory.getAbility("Devotion"));
            this.moveset.addToMovelist(AbilityFactory.getAbility("Flashflood"));
            this.moveset.addToMovelist(AbilityFactory.getAbility("Enrage"));
        }