]> git.localhorst.tv Git - l2e.git/commitdiff
added Selan's IP attacks
authorDaniel Karbach <daniel.karbach@localhorst.tv>
Fri, 10 Aug 2012 15:23:44 +0000 (17:23 +0200)
committerDaniel Karbach <daniel.karbach@localhorst.tv>
Fri, 10 Aug 2012 15:23:44 +0000 (17:23 +0200)
src/main.cpp

index 3e223491aeb4a280f1f4874851a64573fd445188..d9769de270a3a9f37447e9ed611e33aa7ee9fc83 100644 (file)
@@ -382,26 +382,56 @@ int main(int argc, char **argv) {
                Item zircoWhip;
                zircoWhip.SetName("Zirco whip");
                zircoWhip.SetMenuIcon(&rodIcon);
+               Ikari thundershriek;
+               thundershriek.SetName("Thundershriek");
+               thundershriek.SetCost(88);
+               thundershriek.GetTargetingMode().TargetAllEnemies();
+               zircoWhip.SetIkari(&thundershriek);
                selan.SetWeapon(&zircoWhip);
                Item zirconPlate;
                zirconPlate.SetName("Zircon plate");
                zirconPlate.SetMenuIcon(&armorIcon);
+               Ikari suddenCure;
+               suddenCure.SetName("Sudden cure");
+               suddenCure.SetCost(38);
+               suddenCure.GetTargetingMode().TargetAllAllies();
+               zirconPlate.SetIkari(&suddenCure);
                selan.SetArmor(&zirconPlate);
                Item zircoGloves;
                zircoGloves.SetName("Zirco gloves");
                zircoGloves.SetMenuIcon(&shieldIcon);
+               Ikari forcefield;
+               forcefield.SetName("Forcefield");
+               forcefield.SetCost(26);
+               forcefield.GetTargetingMode().TargetAllAllies();
+               zircoGloves.SetIkari(&forcefield);
                selan.SetShield(&zircoGloves);
                Item holyCap;
                holyCap.SetName("Holy cap");
                holyCap.SetMenuIcon(&helmetIcon);
+               Ikari vulnerable;
+               vulnerable.SetName("Vulnerable");
+               vulnerable.SetCost(77);
+               vulnerable.GetTargetingMode().TargetAllEnemies();
+               holyCap.SetIkari(&vulnerable);
                selan.SetHelmet(&holyCap);
                Item ghostRing;
                ghostRing.SetName("Ghost ring");
                ghostRing.SetMenuIcon(&ringIcon);
+               Ikari destroy;
+               destroy.SetName("Destroy");
+               destroy.SetCost(77);
+               destroy.GetTargetingMode().TargetMultipleEnemies();
+               ghostRing.SetIkari(&destroy);
                selan.SetRing(&ghostRing);
                Item eagleRock;
                eagleRock.SetName("Eagle rock");
                eagleRock.SetMenuIcon(&jewelIcon);
+               Ikari dive;
+               dive.SetName("Dive");
+               dive.SetCost(50);
+               dive.GetTargetingMode().TargetSingleEnemy();
+               eagleRock.SetIkari(&dive);
                selan.SetJewel(&eagleRock);
 
                Item zircoAx;