From: Daniel Karbach Date: Fri, 10 Aug 2012 15:23:44 +0000 (+0200) Subject: added Selan's IP attacks X-Git-Url: http://git.localhorst.tv/?a=commitdiff_plain;h=85a45ccdf9e845ff585f43b585fe2fc738cc1be1;hp=c1443f347c55be69ad35d332ecb9f21dd85d965e;p=l2e.git added Selan's IP attacks --- diff --git a/src/main.cpp b/src/main.cpp index 3e22349..d9769de 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -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;