public LesserPotionOfDefense() : base()
        {
            _effect = new ItemsEffect();
            this.setItemName("Lesser Defense Potion");
            _effect.setEffectName("Slightly increases defense by 3 for three turns.");
            _effect.setPhysicalDefense(3);
            this.setEffect(_effect);
            setHasStatusEffect(true);
            setStatusEffect(new LesserDefenseBoost());

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

            imgBrush.ImageSource = image;
            setImageBrush(imgBrush);
        }
        public GreaterPotionOfPower() : base()
        {
            _effect = new ItemsEffect();
            this.setItemName("Greater Power Potion");
            _effect.setEffectName("Greatly increase strength by 10 for five turns.");
            _effect.setPhysicalDefense(10);
            this.setEffect(_effect);
            setHasStatusEffect(true);
            setStatusEffect(new GreaterPowerBoost());

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

            imgBrush.ImageSource = image;
            setImageBrush(imgBrush);
        }
Ejemplo n.º 3
0
        public PotionOfDefense() : base()
        {
            _effect = new ItemsEffect();
            this.setItemName("Defense Potion");
            _effect.setEffectName("Enhances defense by 6 for four turns.");
            _effect.setPhysicalDefense(6);
            this.setEffect(_effect);
            setHasStatusEffect(true);
            setStatusEffect(new DefenseBoost());

            ImageBrush  imgBrush = new ImageBrush();
            BitmapImage image    = new BitmapImage(new Uri(@"../../Images/Items/potionofdefense.jpg", 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 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 AssassinCloak() : base()
        {
            _effect = new ItemsEffect();
            this.setItemName("Assassin Cloak");
            this.setIsTorso(true);
            this.setSocketAmount(4);
            _effect.setEffectName("The shadows engulf you, increases strength by 15");
            _effect.setStrengthValue(9);
            _effect.setPhysicalDefense(6);
            _effect.setManaValue(30);
            _effect.setEffectAmount(15);
            this.setEffect(_effect);

            ImageBrush  imgBrush = new ImageBrush();
            BitmapImage image    = new BitmapImage(new Uri(@"../../Images/Items/Blackfeather.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);
        }
Ejemplo n.º 8
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 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);
        }
Ejemplo n.º 10
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 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);
        }
Ejemplo n.º 12
0
        public BronzeAxe() : base()
        {
            _effect = new ItemsEffect();
            this.setItemName("Bronze Axe");
            this.setIsWeapon(true);
            this.setSocketAmount(4);
            _effect.setEffectName("A great two handed axe made of copper and tin, increases health by 10");
            _effect.setHealthValue(50);
            _effect.setStrengthValue(8);
            _effect.setPhysicalDefense(4);

            this.setEffect(_effect);

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

            imgBrush.ImageSource = image;
            setImageBrush(imgBrush);
        }
Ejemplo n.º 13
0
        public AssassinBoots() : base()
        {
            _effect = new ItemsEffect();
            this.setItemName("Assassin Boots");
            this.setIsBoots(true);
            this.setSocketAmount(2);
            _effect.setEffectName("Silence in flight, increases strength by 10");
            _effect.setStrengthValue(3);
            _effect.setPhysicalDefense(3);
            _effect.setManaValue(6);
            _effect.setEffectAmount(5);
            this.setEffect(_effect);

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

            imgBrush.ImageSource = image;
            setImageBrush(imgBrush);
        }
Ejemplo n.º 14
0
        public SteelAxe() : base()
        {
            _effect = new ItemsEffect();
            this.setItemName("Steel Axe");
            this.setIsWeapon(true);
            this.setSocketAmount(5);
            _effect.setEffectName("A monsterous two handed axe made of tempered steel, increases health by 15");
            _effect.setHealthValue(75);
            _effect.setStrengthValue(11);
            _effect.setPhysicalDefense(7);

            this.setEffect(_effect);

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

            imgBrush.ImageSource = image;
            setImageBrush(imgBrush);
        }
Ejemplo n.º 15
0
        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 ChainMailHelm() : base()
        {
            _effect = new ItemsEffect();
            this.setItemName("Chain Mail Helmet");
            this.setIsHelmet(true);
            this.setSocketAmount(3);
            _effect.setEffectName("Chain mail helmet made of interlocking steel ringlets, increases strength by 5");
            _effect.setStrengthValue(4);
            _effect.setPhysicalDefense(2);
            _effect.setManaValue(10);
            _effect.setEffectAmount(9);
            this.setEffect(_effect);

            ImageBrush  imgBrush = new ImageBrush();
            BitmapImage image    = new BitmapImage(new Uri(@"../../Images/Items/chainhelmet.jpg", 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 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);
        }
Ejemplo n.º 19
0
        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 ChainMailVest() : base()
        {
            _effect = new ItemsEffect();
            this.setItemName("Chain Mail Vest");
            this.setIsTorso(true);
            this.setSocketAmount(4);
            _effect.setEffectName("A vest made of interlocking steel ringlets, increases strength by 10");
            _effect.setStrengthValue(7);
            _effect.setPhysicalDefense(4);
            _effect.setManaValue(20);
            _effect.setEffectAmount(12);
            this.setEffect(_effect);

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

            imgBrush.ImageSource = image;
            setImageBrush(imgBrush);
        }
Ejemplo n.º 21
0
        public LeatherHelmet() : base()
        {
            _effect = new ItemsEffect();
            this.setItemName("Leather Helmet");
            this.setIsHelmet(true);
            this.setSocketAmount(1);
            _effect.setEffectName("A sturdy leather cap, increases strength by 3");
            _effect.setStrengthValue(5);
            _effect.setPhysicalDefense(2);
            _effect.setManaValue(10);
            _effect.setEffectAmount(4);
            this.setEffect(_effect);

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

            imgBrush.ImageSource = image;
            setImageBrush(imgBrush);
        }
Ejemplo n.º 22
0
        public LeatherGloves() : base()
        {
            _effect = new ItemsEffect();
            this.setItemName("Leather Gloves");
            this.setIsGloves(true);
            this.setSocketAmount(2);
            _effect.setEffectName("Gloves made from leather straps woven together, increases strength by 4");
            _effect.setStrengthValue(1);
            _effect.setPhysicalDefense(1);
            _effect.setManaValue(3);
            _effect.setEffectAmount(4);
            this.setEffect(_effect);

            ImageBrush  imgBrush = new ImageBrush();
            BitmapImage image    = new BitmapImage(new Uri(@"../../Images/Items/Heavy_Gloves.gif", 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);
        }
Ejemplo n.º 24
0
        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 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);
        }
Ejemplo n.º 26
0
        public LeatherVest() : base()
        {
            _effect = new ItemsEffect();
            this.setItemName("Leather Vest");
            this.setIsTorso(true);
            this.setSocketAmount(4);
            _effect.setEffectName("A vest made of stiff leather, increases strength by 5");
            _effect.setStrengthValue(3);
            _effect.setPhysicalDefense(1);
            _effect.setManaValue(5);
            _effect.setEffectAmount(6);
            this.setEffect(_effect);

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

            imgBrush.ImageSource = image;
            setImageBrush(imgBrush);
        }
        public AssassinHood() : base()
        {
            _effect = new ItemsEffect();
            this.setItemName("Assassin Hood");
            this.setIsHelmet(true);
            this.setSocketAmount(3);
            _effect.setEffectName("Face of darkness, increases strength by 5");
            _effect.setStrengthValue(5);
            _effect.setPhysicalDefense(3);
            _effect.setManaValue(15);
            _effect.setEffectAmount(5);
            this.setEffect(_effect);

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

            imgBrush.ImageSource = image;
            setImageBrush(imgBrush);
        }
        public ChainMailBoots() : base()
        {
            _effect = new ItemsEffect();
            this.setItemName("Chain Mail Boots");
            this.setIsBoots(true);
            this.setSocketAmount(2);
            _effect.setEffectName("Chain Mail boots made of steel ringlets that increase strength by 6");
            _effect.setStrengthValue(2);
            _effect.setPhysicalDefense(2);
            _effect.setManaValue(4);
            _effect.setEffectAmount(8);
            this.setEffect(_effect);

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

            imgBrush.ImageSource = image;
            setImageBrush(imgBrush);
        }
Ejemplo n.º 29
0
        public ChainMailGloves() : base()
        {
            _effect = new ItemsEffect();
            this.setItemName("Chain Mail Gloves");
            this.setIsGloves(true);
            this.setSocketAmount(2);
            _effect.setEffectName("Chain mail gloves made of interlocking steel that increase strength by 6");
            _effect.setStrengthValue(2);
            _effect.setPhysicalDefense(2);
            _effect.setManaValue(6);
            _effect.setEffectAmount(7);
            this.setEffect(_effect);

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

            imgBrush.ImageSource = image;
            setImageBrush(imgBrush);
        }
        public LeatherBoots() : base()
        {
            _effect = new ItemsEffect();
            this.setItemName("Leather Boots");
            this.setIsBoots(true);
            this.setSocketAmount(2);
            _effect.setEffectName("Boots made from leather that increase strength by 3");
            _effect.setStrengthValue(1);
            _effect.setPhysicalDefense(1);
            _effect.setManaValue(2);
            _effect.setEffectAmount(3);
            this.setEffect(_effect);

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

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