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;