Exemple #1
0
        public PotionOfResistance() : base()
        {
            _effect = new ItemsEffect();
            this.setItemName("Potion of Resistance");
            _effect.setEffectName("Enhances resistance by 6 for four turns.");
            _effect.setResistanceDefense(6);
            this.setEffect(_effect);
            setHasStatusEffect(true);
            setStatusEffect(new ResistanceBoost());

            ImageBrush  imgBrush = new ImageBrush();
            BitmapImage image    = new BitmapImage(new Uri(@"../../Images/Items/potionofresistance.png", UriKind.RelativeOrAbsolute));

            imgBrush.ImageSource = image;
            setImageBrush(imgBrush);
        }
Exemple #2
0
        public LesserPotionOfResistance() : base()
        {
            _effect = new ItemsEffect();
            this.setItemName("Lesser Resistance Potion");
            _effect.setEffectName("Slightly increases resistance by 3 for three turns.");
            _effect.setResistanceDefense(3);
            this.setEffect(_effect);
            setHasStatusEffect(true);
            setStatusEffect(new LesserResistanceBoost());

            ImageBrush  imgBrush = new ImageBrush();
            BitmapImage image    = new BitmapImage(new Uri(@"../../Images/Items/potionofresistance.png", UriKind.RelativeOrAbsolute));

            imgBrush.ImageSource = image;
            setImageBrush(imgBrush);
        }
        public RuneOfTranquility() : base()
        {
            _effect = new ItemsEffect();
            this.setItemName("Rune Of Tranquility");
            this.setIsSocketable(true);
            _effect.setEffectName("In the midst of creation and destruction, stood tranquility...");
            _effect.setResistanceDefense(100);
            _effect.setPhysicalDefense(100);
            _effect.setEffectAmount(100);
            this.setEffect(_effect);

            ImageBrush  imgBrush = new ImageBrush();
            BitmapImage image    = new BitmapImage(new Uri(@"../../Images/Items/Jah_Rune.png", UriKind.RelativeOrAbsolute));

            imgBrush.ImageSource = image;
            setImageBrush(imgBrush);
        }
        public EnchantedHood() : base()
        {
            _effect = new ItemsEffect();
            this.setItemName("Enchanted Hood");
            this.setIsHelmet(true);
            this.setSocketAmount(2);
            _effect.setEffectName("An enchanted hood that increases mana by 15");
            _effect.setMagicValue(4);
            _effect.setResistanceDefense(2);
            _effect.setManaValue(14);
            this.setEffect(_effect);

            ImageBrush  imgBrush = new ImageBrush();
            BitmapImage image    = new BitmapImage(new Uri(@"../../Images/Items/mageHood.jpg", UriKind.RelativeOrAbsolute));

            imgBrush.ImageSource = image;
            setImageBrush(imgBrush);
        }
        public PlateMailGloves() : base()
        {
            _effect = new ItemsEffect();
            this.setItemName("Plate Mail Gloves");
            this.setIsGloves(true);
            this.setSocketAmount(2);
            _effect.setEffectName("Plate mail gloves that increase strength by 9");
            _effect.setPhysicalDefense(4);
            _effect.setResistanceDefense(4);
            _effect.setHealthValue(20);
            this.setEffect(_effect);

            ImageBrush  imgBrush = new ImageBrush();
            BitmapImage image    = new BitmapImage(new Uri(@"../../Images/Items/platedGloves.jpg", UriKind.RelativeOrAbsolute));

            imgBrush.ImageSource = image;
            setImageBrush(imgBrush);
        }
        public SteelHelmet() : base()
        {
            _effect = new ItemsEffect();
            this.setItemName("Steel Helmet");
            this.setIsHelmet(true);
            this.setSocketAmount(3);
            _effect.setEffectName("A well crafted helmet made of steel, increases health by 3");
            _effect.setPhysicalDefense(3);
            _effect.setResistanceDefense(3);
            _effect.setHealthValue(30);
            _effect.setEffectAmount(12);
            this.setEffect(_effect);

            ImageBrush  imgBrush = new ImageBrush();
            BitmapImage image    = new BitmapImage(new Uri(@"../../Images/Items/Assualthelm.gif", UriKind.RelativeOrAbsolute));

            imgBrush.ImageSource = image;
            setImageBrush(imgBrush);
        }
        public MysticGloves() : base()
        {
            _effect = new ItemsEffect();
            this.setItemName("Mystic Gloves");
            this.setIsGloves(true);
            this.setSocketAmount(4);
            _effect.setEffectName("Mystic gloves that increase mana by 50");
            _effect.setMagicValue(3);
            _effect.setResistanceDefense(3);
            _effect.setManaValue(12);
            _effect.setEffectAmount(7);
            this.setEffect(_effect);

            ImageBrush  imgBrush = new ImageBrush();
            BitmapImage image    = new BitmapImage(new Uri(@"../../Images/Items/Marauder.png", UriKind.RelativeOrAbsolute));

            imgBrush.ImageSource = image;
            setImageBrush(imgBrush);
        }
Exemple #8
0
        public ClothRobes() : base()
        {
            _effect = new ItemsEffect();
            this.setItemName("Cloth Robes");
            this.setIsTorso(true);
            this.setSocketAmount(3);
            _effect.setEffectName("Finely woven silk robes that increase magic power by 5 and mana by 10");
            _effect.setMagicValue(5);
            _effect.setResistanceDefense(2);
            _effect.setManaValue(10);
            _effect.setEffectAmount(2);
            this.setEffect(_effect);

            ImageBrush  imgBrush = new ImageBrush();
            BitmapImage image    = new BitmapImage(new Uri(@"../../Images/Items/simpleRobes.png", UriKind.RelativeOrAbsolute));

            imgBrush.ImageSource = image;
            setImageBrush(imgBrush);
        }
Exemple #9
0
        public MysticRobes() : base()
        {
            _effect = new ItemsEffect();
            this.setItemName("Mystic Robes");
            this.setIsTorso(true);
            this.setSocketAmount(6);
            _effect.setEffectName("Mystic robes that increase magic power by 15 and mana by 30");
            _effect.setMagicValue(9);
            _effect.setResistanceDefense(6);
            _effect.setManaValue(30);
            _effect.setEffectAmount(10);
            this.setEffect(_effect);

            ImageBrush  imgBrush = new ImageBrush();
            BitmapImage image    = new BitmapImage(new Uri(@"../../Images/Items/Dread_Cloak.jpg", UriKind.RelativeOrAbsolute));

            imgBrush.ImageSource = image;
            setImageBrush(imgBrush);
        }
        public MysticHelmet() : base()
        {
            _effect = new ItemsEffect();
            this.setItemName("Mystic Helmet");
            this.setIsHelmet(true);
            this.setSocketAmount(3);
            _effect.setEffectName("A mystic helmet that increases mana by 20");
            _effect.setMagicValue(5);
            _effect.setResistanceDefense(3);
            _effect.setManaValue(21);
            _effect.setEffectAmount(9);
            this.setEffect(_effect);

            ImageBrush  imgBrush = new ImageBrush();
            BitmapImage image    = new BitmapImage(new Uri(@"../../Images/Items/GodHelm.png", UriKind.RelativeOrAbsolute));

            imgBrush.ImageSource = image;
            setImageBrush(imgBrush);
        }
        public PlateMailBoots() : base()
        {
            _effect = new ItemsEffect();
            this.setItemName("Plate Mail Boots");
            this.setIsBoots(true);
            this.setSocketAmount(2);
            _effect.setEffectName("Plate Mail boots that increase strength by 8");
            _effect.setPhysicalDefense(4);
            _effect.setResistanceDefense(3);
            _effect.setHealthValue(40);
            _effect.setEffectAmount(40);
            this.setEffect(_effect);

            ImageBrush  imgBrush = new ImageBrush();
            BitmapImage image    = new BitmapImage(new Uri(@"../../Images/Items/Fire_Walkers.png", UriKind.RelativeOrAbsolute));

            imgBrush.ImageSource = image;
            setImageBrush(imgBrush);
        }
        public BronzeHelmet() : base()
        {
            _effect = new ItemsEffect();
            this.setItemName("Bronze Helmet");
            this.setIsHelmet(true);
            this.setSocketAmount(3);
            _effect.setEffectName("A bronze helmet that increases health by 4");
            _effect.setPhysicalDefense(2);
            _effect.setResistanceDefense(2);
            _effect.setHealthValue(15);
            _effect.setEffectAmount(6);
            this.setEffect(_effect);

            ImageBrush  imgBrush = new ImageBrush();
            BitmapImage image    = new BitmapImage(new Uri(@"../../Images/Items/bronzehelmet.jpg", UriKind.RelativeOrAbsolute));

            imgBrush.ImageSource = image;
            setImageBrush(imgBrush);
        }
        public EnchantedGloves() : base()
        {
            _effect = new ItemsEffect();
            this.setItemName("Enchanted Gloves");
            this.setIsGloves(true);
            this.setSocketAmount(2);
            _effect.setEffectName("Enchanted gloves that increase mana by 40");
            _effect.setMagicValue(2);
            _effect.setResistanceDefense(2);
            _effect.setManaValue(8);
            _effect.setEffectAmount(3);
            this.setEffect(_effect);

            ImageBrush  imgBrush = new ImageBrush();
            BitmapImage image    = new BitmapImage(new Uri(@"../../Images/Items/gloves3.jpg", UriKind.RelativeOrAbsolute));

            imgBrush.ImageSource = image;
            setImageBrush(imgBrush);
        }
        public BronzeBoots() : base()
        {
            _effect = new ItemsEffect();
            this.setItemName("Bronze Boots");
            this.setIsBoots(true);
            this.setSocketAmount(2);
            _effect.setEffectName("Bronze boots made of copper and tin, increases health by 3");
            _effect.setPhysicalDefense(2);
            _effect.setResistanceDefense(1);
            _effect.setHealthValue(10);
            _effect.setEffectAmount(5);
            this.setEffect(_effect);

            ImageBrush  imgBrush = new ImageBrush();
            BitmapImage image    = new BitmapImage(new Uri(@"../../Images/Items/bronzeBoots.jpg", UriKind.RelativeOrAbsolute));

            imgBrush.ImageSource = image;
            setImageBrush(imgBrush);
        }
        public ClothHood() : base()
        {
            _effect = new ItemsEffect();
            this.setItemName("Cloth Hood");
            this.setIsHelmet(true);
            this.setSocketAmount(2);
            _effect.setEffectName("A fine cloth made of silk woven into a khimar, increases mana by 10");
            _effect.setMagicValue(3);
            _effect.setResistanceDefense(1);
            _effect.setManaValue(7);
            _effect.setEffectAmount(2);
            this.setEffect(_effect);

            ImageBrush  imgBrush = new ImageBrush();
            BitmapImage image    = new BitmapImage(new Uri(@"../../Images/Items/Apprentice_Hood.png", UriKind.RelativeOrAbsolute));

            imgBrush.ImageSource = image;
            setImageBrush(imgBrush);
        }
        public SteelChestPlate() : base()
        {
            _effect = new ItemsEffect();
            this.setItemName("Steel Chest Plate");
            this.setIsTorso(true);
            this.setSocketAmount(6);
            _effect.setEffectName("An exceptional piece of work crafted from steel, increases health by 10");
            _effect.setPhysicalDefense(9);
            _effect.setResistanceDefense(7);
            _effect.setHealthValue(40);
            _effect.setEffectAmount(15);
            this.setEffect(_effect);

            ImageBrush  imgBrush = new ImageBrush();
            BitmapImage image    = new BitmapImage(new Uri(@"../../Images/Items/FullPlateMail.gif", UriKind.RelativeOrAbsolute));

            imgBrush.ImageSource = image;
            setImageBrush(imgBrush);
        }
Exemple #17
0
        public EnchantedRobes() : base()
        {
            _effect = new ItemsEffect();
            this.setItemName("Encanted Robes");
            this.setIsTorso(true);
            this.setSocketAmount(3);
            _effect.setEffectName("Enchanted robes that increase magic power by 10 and mana by 20");
            _effect.setMagicValue(7);
            _effect.setResistanceDefense(4);
            _effect.setManaValue(20);
            _effect.setEffectAmount(6);
            this.setEffect(_effect);

            ImageBrush  imgBrush = new ImageBrush();
            BitmapImage image    = new BitmapImage(new Uri(@"../../Images/Items/ThalmorRobes.png", UriKind.RelativeOrAbsolute));

            imgBrush.ImageSource = image;
            setImageBrush(imgBrush);
        }
        public PlateMailVest() : base()
        {
            _effect = new ItemsEffect();
            this.setItemName("Plate Mail Vest");
            this.setIsTorso(true);
            this.setSocketAmount(4);
            _effect.setEffectName("A vest made of plate mail, increases strength by 15");
            _effect.setPhysicalDefense(12);
            _effect.setResistanceDefense(9);
            _effect.setHealthValue(80);
            _effect.setEffectAmount(18);
            this.setEffect(_effect);

            ImageBrush  imgBrush = new ImageBrush();
            BitmapImage image    = new BitmapImage(new Uri(@"../../Images/Items/Robes_of_the_Rydraelm.png", UriKind.RelativeOrAbsolute));

            imgBrush.ImageSource = image;
            setImageBrush(imgBrush);
        }
        public BronzeChestPlate() : base()
        {
            _effect = new ItemsEffect();
            this.setItemName("Bronze Chest Plate");
            this.setIsTorso(true);
            this.setSocketAmount(6);
            _effect.setEffectName("A bronze chest plate that increases health by 5");
            _effect.setPhysicalDefense(2);
            _effect.setResistanceDefense(1);
            _effect.setHealthValue(10);
            _effect.setEffectAmount(9);
            this.setEffect(_effect);

            ImageBrush  imgBrush = new ImageBrush();
            BitmapImage image    = new BitmapImage(new Uri(@"../../Images/Items/bronzeTorso.jpg", UriKind.RelativeOrAbsolute));

            imgBrush.ImageSource = image;
            setImageBrush(imgBrush);
        }
        public MythrilChestPlate() : base()
        {
            _effect = new ItemsEffect();
            this.setItemName("Mythril Chest Plate");
            this.setIsTorso(true);
            this.setSocketAmount(6);
            _effect.setEffectName("A legendary piece of armor, increases health by 15.");
            _effect.setPhysicalDefense(22);
            _effect.setResistanceDefense(22);
            _effect.setHealthValue(15);
            _effect.setEffectAmount(22);
            this.setEffect(_effect);

            ImageBrush  imgBrush = new ImageBrush();
            BitmapImage image    = new BitmapImage(new Uri(@"../../Images/Items/victorsilk.gif", UriKind.RelativeOrAbsolute));

            imgBrush.ImageSource = image;
            setImageBrush(imgBrush);
        }
Exemple #21
0
        public MythrilHelmet() : base()
        {
            _effect = new ItemsEffect();
            this.setItemName("Mythril Helmet");
            this.setIsHelmet(true);
            this.setSocketAmount(3);
            _effect.setEffectName("A legendary helmet made of mythril, increases health by 5");
            _effect.setPhysicalDefense(19);
            _effect.setResistanceDefense(19);
            _effect.setHealthValue(5);
            _effect.setEffectAmount(19);
            this.setEffect(_effect);

            ImageBrush  imgBrush = new ImageBrush();
            BitmapImage image    = new BitmapImage(new Uri(@"../../Images/Items/wormskull.gif", UriKind.RelativeOrAbsolute));

            imgBrush.ImageSource = image;
            setImageBrush(imgBrush);
        }
        public SteelBoots() : base()
        {
            _effect = new ItemsEffect();
            this.setItemName("Steel Boots");
            this.setIsHelmet(true);
            this.setSocketAmount(3);
            _effect.setEffectName("Durable boots made of steel, increases health by 4");
            _effect.setPhysicalDefense(3);
            _effect.setResistanceDefense(2);
            _effect.setHealthValue(20);
            _effect.setEffectAmount(11);
            this.setEffect(_effect);

            ImageBrush  imgBrush = new ImageBrush();
            BitmapImage image    = new BitmapImage(new Uri(@"../../Images/Items/Light_Plated_Boots.gif", UriKind.RelativeOrAbsolute));

            imgBrush.ImageSource = image;
            setImageBrush(imgBrush);
        }
        public PlateMailHelmet() : base()
        {
            _effect = new ItemsEffect();
            this.setItemName("Plate Mail Helmet");
            this.setIsHelmet(true);
            this.setSocketAmount(3);
            _effect.setEffectName("Plate mail helmet, increases strength by 7");
            _effect.setPhysicalDefense(5);
            _effect.setResistanceDefense(5);
            _effect.setHealthValue(60);
            _effect.setEffectAmount(14);
            this.setEffect(_effect);

            ImageBrush  imgBrush = new ImageBrush();
            BitmapImage image    = new BitmapImage(new Uri(@"../../Images/Items/RaekorHelm.png", UriKind.RelativeOrAbsolute));

            imgBrush.ImageSource = image;
            setImageBrush(imgBrush);
        }
Exemple #24
0
        public ClothBoots() : base()
        {
            _effect = new ItemsEffect();
            this.setItemName("Cloth Boots");
            this.setIsBoots(true);
            this.setSocketAmount(2);
            _effect.setEffectName("Cloth boots that increase resistance by 4");
            _effect.setMagicValue(1);
            _effect.setResistanceDefense(1);
            _effect.setManaValue(4);
            _effect.setEffectAmount(1);
            this.setEffect(_effect);

            ImageBrush  imgBrush = new ImageBrush();
            BitmapImage image    = new BitmapImage(new Uri(@"../../Images/Items/mageBoots.png", UriKind.RelativeOrAbsolute));

            imgBrush.ImageSource = image;
            setImageBrush(imgBrush);
        }
Exemple #25
0
        public SteelGloves() : base()
        {
            _effect = new ItemsEffect();
            this.setItemName("Steel Gloves");
            this.setIsHelmet(true);
            this.setSocketAmount(3);
            _effect.setEffectName("Strong gloves made of an alloy of steel, increases health by 3");
            _effect.setPhysicalDefense(3);
            _effect.setResistanceDefense(3);
            _effect.setHealthValue(10);
            _effect.setEffectAmount(10);
            this.setEffect(_effect);

            ImageBrush  imgBrush = new ImageBrush();
            BitmapImage image    = new BitmapImage(new Uri(@"../../Images/Items/steelgloves.gif", UriKind.RelativeOrAbsolute));

            imgBrush.ImageSource = image;
            setImageBrush(imgBrush);
        }
        public SteelSword() : base()
        {
            _effect = new ItemsEffect();
            this.setItemName("Steel Sword");
            this.setIsWeapon(true);
            this.setSocketAmount(5);
            _effect.setEffectName("A razor sharp sword made of folded steel, increases mana by 15");
            _effect.setHealthValue(30);
            _effect.setStrengthValue(7);
            _effect.setMagicValue(6);
            _effect.setPhysicalDefense(4);
            _effect.setResistanceDefense(4);
            this.setEffect(_effect);

            ImageBrush  imgBrush = new ImageBrush();
            BitmapImage image    = new BitmapImage(new Uri(@"../../Images/Items/warsword.gif", UriKind.RelativeOrAbsolute));

            imgBrush.ImageSource = image;
            setImageBrush(imgBrush);
        }
Exemple #27
0
        public Ultima() : base()
        {
            _effect = new ItemsEffect();
            this.setItemName("Ultima");
            this.setIsWeapon(true);
            this.setSocketAmount(15);
            _effect.setEffectName("The Ultimate weapon, guaranteed to increase the power of any warrior or mage");
            _effect.setHealthValue(100);
            _effect.setStrengthValue(40);
            _effect.setMagicValue(40);
            _effect.setPhysicalDefense(14);
            _effect.setResistanceDefense(14);
            this.setEffect(_effect);

            ImageBrush  imgBrush = new ImageBrush();
            BitmapImage image    = new BitmapImage(new Uri(@"../../Images/Items/busterblade.jpg", UriKind.RelativeOrAbsolute));

            imgBrush.ImageSource = image;
            setImageBrush(imgBrush);
        }
Exemple #28
0
        public BronzeSword() : base()
        {
            _effect = new ItemsEffect();
            this.setItemName("Bronze Sword");
            this.setIsWeapon(true);
            this.setSocketAmount(4);
            _effect.setEffectName("A well balanced sword made of copper and tin, increases mana by 10");
            _effect.setHealthValue(20);
            _effect.setStrengthValue(4);
            _effect.setMagicValue(4);
            _effect.setPhysicalDefense(2);
            _effect.setResistanceDefense(2);
            this.setEffect(_effect);

            ImageBrush  imgBrush = new ImageBrush();
            BitmapImage image    = new BitmapImage(new Uri(@"../../Images/Items/bronzesword.png", UriKind.RelativeOrAbsolute));

            imgBrush.ImageSource = image;
            setImageBrush(imgBrush);
        }
        public MythrilSword() : base()
        {
            _effect = new ItemsEffect();
            this.setItemName("Mythril Sword");
            this.setIsWeapon(true);
            this.setSocketAmount(5);
            _effect.setEffectName("A legendary sword made of mythril, increases mana by 20");
            _effect.setHealthValue(60);
            _effect.setStrengthValue(12);
            _effect.setMagicValue(10);
            _effect.setPhysicalDefense(7);
            _effect.setResistanceDefense(7);
            this.setEffect(_effect);

            ImageBrush  imgBrush = new ImageBrush();
            BitmapImage image    = new BitmapImage(new Uri(@"../../Images/Items/Skycutter.png", UriKind.RelativeOrAbsolute));

            imgBrush.ImageSource = image;
            setImageBrush(imgBrush);
        }
        public RuneOfHope() : base()
        {
            _effect = new ItemsEffect();
            this.setItemName("Rune Of Hope");
            this.setIsSocketable(true);
            _effect.setEffectName("Sheds light upon your dark journey");
            _effect.setStrengthValue(10);
            _effect.setMagicValue(10);
            _effect.setResistanceDefense(10);
            _effect.setPhysicalDefense(10);
            _effect.setHealthValue(10);
            _effect.setManaValue(10);
            _effect.setEffectAmount(10);
            this.setEffect(_effect);

            ImageBrush  imgBrush = new ImageBrush();
            BitmapImage image    = new BitmapImage(new Uri(@"../../Images/Items/chamRune.png", UriKind.RelativeOrAbsolute));

            imgBrush.ImageSource = image;
            setImageBrush(imgBrush);
        }