public override void InitOutfit()
        {
            Name       = "Ruby Rosebud";
            Body       = 606;
            Female     = true;
            Race       = Race.Elf;
            Hue        = 2404;
            HairItemID = 12226;
            HairHue    = 2419;

            SetStr(224);
            SetDex(215);
            SetInt(233);

            SetSkill(SkillName.AnimalLore, 64.0, 100.0);
            SetSkill(SkillName.AnimalTaming, 90.0, 100.0);
            SetSkill(SkillName.Veterinary, 65.0, 88.0);
            SetSkill(SkillName.Wrestling, 65.0, 70.0);

            PackGold(13, 27);

            AddItem(new WideBrimHat(878));
            AddItem(new Shirt(863));
            AddItem(new HalfApron(878));
            AddItem(new LongPants(863));
            AddItem(new HighBoots(878));

            DrowSpiderCloak cloak = new DrowSpiderCloak();

            cloak.Hue     = 428;
            cloak.Movable = false;
            AddItem(cloak);

            LeatherGloves gloves = new LeatherGloves();

            gloves.Movable = true;
            AddItem(gloves);
        }
Exemple #2
0
        public override void InitOutfit()
        {
            Name       = "Quill Razorwind the fletcher";
            Body       = 606;
            Female     = true;
            Race       = Race.Elf;
            Hue        = 1002;
            HairItemID = 12238;
            HairHue    = 63;

            SetStr(225);
            SetDex(265);
            SetInt(151);

            SetSkill(SkillName.Archery, 80.0, 100.0);
            SetSkill(SkillName.Anatomy, 59.5, 68.7);
            SetSkill(SkillName.Fletching, 80.0, 100.0);
            SetSkill(SkillName.Tactics, 60.0, 83.0);
            SetSkill(SkillName.Wrestling, 61.0, 93.0);

            PackGold(14, 46);

            ElvenCompositeLongbow weapon = new ElvenCompositeLongbow();

            weapon.Movable = true;
            weapon.Quality = WeaponQuality.Exceptional;
            AddItem(weapon);

            PackItem(new Arrow(Utility.RandomMinMax(20, 30)));

            FemaleLeatherChest chest = new FemaleLeatherChest();

            chest.Movable = true;
            chest.Hue     = 2207;
            AddItem(chest);

            StuddedGorget gorget = new StuddedGorget();

            gorget.Movable = true;
            gorget.Hue     = 2207;
            AddItem(gorget);

            StuddedArms arms = new StuddedArms();

            arms.Movable = true;
            arms.Hue     = 2207;
            AddItem(arms);

            StuddedGloves gloves = new StuddedGloves();

            gloves.Movable = true;
            gloves.Hue     = 2207;
            AddItem(gloves);

            DrowSpiderCloak cloak = new DrowSpiderCloak();

            cloak.Movable = true;
            cloak.Hue     = 663;
            AddItem(cloak);

            AddItem(new ThighBoots(663));
        }
        public OborunianDrowSpiderTrainer() : base(AIType.AI_Melee, FightMode.Closest, 12, 1, 0.175, 0.350)
        {
            Name       = NameList.RandomName("elven female");
            Title      = "the oborunian spider trainer";
            Female     = true;
            Body       = 606;
            Hue        = 33840;
            HairItemID = 12240;
            HairHue    = 1153;

            SetStr(147, 205);
            SetDex(97, 114);
            SetInt(54, 147);

            SetHits(225, 350);

            SetDamage(1, 4);

            SetSkill(SkillName.MagicResist, 43.4, 60.2);
            SetSkill(SkillName.Ninjitsu, 100.0);
            SetSkill(SkillName.Tactics, 45.6, 54.4);
            SetSkill(SkillName.Wrestling, 50.7, 59.6);

            Circlet circlet = new Circlet();

            BaseRunicTool.ApplyAttributesTo(circlet, 5, 5, 35);
            circlet.Hue     = 1157;
            circlet.Movable = true;
            AddItem(circlet);

            WoodlandGorget gorget = new WoodlandGorget();

            BaseRunicTool.ApplyAttributesTo(gorget, 5, 5, 35);
            gorget.Hue     = 2075;
            gorget.Movable = true;
            AddItem(gorget);

            DrowSpiderCloak cloak = new DrowSpiderCloak();

            BaseRunicTool.ApplyAttributesTo(cloak, 5, 5, 35);
            cloak.Movable = true;
            AddItem(cloak);

            StuddedBustierArms bustier = new StuddedBustierArms();

            BaseRunicTool.ApplyAttributesTo(bustier, 5, 5, 35);
            bustier.Hue     = 2075;
            bustier.Movable = true;
            AddItem(bustier);

            DragonGloves gloves = new DragonGloves();

            gloves.Hue     = 2075;
            gloves.Movable = true;
            AddItem(gloves);

            WildStaff staff = new WildStaff();

            BaseRunicTool.ApplyAttributesTo(staff, 5, 5, 35);
            staff.Hue     = 2704;
            staff.Quality = WeaponQuality.Exceptional;
            staff.Movable = true;
            AddItem(staff);

            WoodlandBelt belt = new WoodlandBelt();

            BaseRunicTool.ApplyAttributesTo(belt, 5, 5, 35);
            belt.Hue     = 2075;
            belt.Movable = true;
            AddItem(belt);

            ThighBoots boots = new ThighBoots();

            BaseRunicTool.ApplyAttributesTo(boots, 5, 5, 35);
            boots.Hue     = 1883;
            boots.Movable = true;
            AddItem(boots);

            PackGold(212, 315);

            PackItem(new FishScale(Utility.RandomMinMax(6, 11)));

            Fame  = 2000;
            Karma = -2000;

            m_NextAbilityTime = DateTime.Now + TimeSpan.FromSeconds(Utility.RandomMinMax(2, 5));
        }