X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=test-data%2Fitems.l2s;h=4b49dd6dd457fc763860d46c8d1872a01740aef6;hb=912b8a26b19243e43d0fd2e47d50733d947f5836;hp=f1734a74132efc7ba21f9ed4af0b614feaf83238;hpb=771a3daeecf527a9b5873e412e263ad251c59ab5;p=l2e.git diff --git a/test-data/items.l2s b/test-data/items.l2s index f1734a7..4b49dd6 100644 --- a/test-data/items.l2s +++ b/test-data/items.l2s @@ -1,66 +1,69 @@ +include "constants.l2h" +include "ikaris.l2h" + export Sprite potionIcon { - image: "test-data/item-icons.png", + image: :"item-icons.png", size: <16,16> } export Sprite ballIcon { - image: "test-data/item-icons.png", + image: :"item-icons.png", size: <16,16>, offset: <0,16> } export Sprite crankIcon { - image: "test-data/item-icons.png", + image: :"item-icons.png", size: <16,16>, offset: <0,32> } export Sprite spearIcon { - image: "test-data/item-icons.png", + image: :"item-icons.png", size: <16,16>, offset: <0,48> } export Sprite swordIcon { - image: "test-data/item-icons.png", + image: :"item-icons.png", size: <16,16>, offset: <0,64> } export Sprite axIcon { - image: "test-data/item-icons.png", + image: :"item-icons.png", size: <16,16>, offset: <0,80> } export Sprite rodIcon { - image: "test-data/item-icons.png", + image: :"item-icons.png", size: <16,16>, offset: <0,96> } export Sprite armorIcon { - image: "test-data/item-icons.png", + image: :"item-icons.png", size: <16,16>, offset: <0,112> } export Sprite shieldIcon { - image: "test-data/item-icons.png", + image: :"item-icons.png", size: <16,16>, offset: <0,128> } export Sprite helmetIcon { - image: "test-data/item-icons.png", + image: :"item-icons.png", size: <16,16>, offset: <0,144> } export Sprite ringIcon { - image: "test-data/item-icons.png", + image: :"item-icons.png", size: <16,16>, offset: <0,160> } export Sprite jewelIcon { - image: "test-data/item-icons.png", + image: :"item-icons.png", size: <16,16>, offset: <0,176> } export SimpleAnimation swordAttackAnimation { sprite: Sprite { - image: "test-data/attack-sword.png", + image: :"attack-sword.png", size: <96,96> }, frametime: twoFramesTime, @@ -73,21 +76,70 @@ export Item antidoteItem { menuicon: potionIcon, battle: true, targets: TargetingMode { - ally: true, - single: true + faction: ally, + mode: single } } +export Item eagleRockItem { + name: "Eagle rock", + menuicon: jewelIcon, + ikari: diveIkari +} export Item escapeItem { name: "Escape", battle: false } +export Item evilJewelItem { + name: "Evil jewel", + menuicon: jewelIcon, + ikari: gloomyIkari +} +export Item ghostRingItem { + name: "Ghost ring", + menuicon: ringIcon, + ikari: destroyIkari +} export Item hiPotionItem { name: "Hi-Potion", menuicon: potionIcon, battle: true, targets: TargetingMode { - ally: true, - single: true + faction: ally, + mode: single + } +} +export Item holyCapItem { + name: "Holy cap", + menuicon: helmetIcon, + ikari: vulnerableIkari +} +export Item holyRobeItem { + name: "Holy robe", + menuicon: armorIcon, + ikari: crisisCureIkari +} +export Item holyShieldItem { + name: "Holy shield", + menuicon: shieldIcon, + ikari: lightGuardIkari +} +export Item krakenRockItem { + name: "Kraken rock", + menuicon: jewelIcon, + ikari: tenLeggerIkari +} +export Item legendHelmItem { + name: "Legend helm", + menuicon: helmetIcon, + ikari: boomerangIkari +} +export Item lizardBlowItem { + name: "Lizard blow", + menuicon: swordIcon, + ikari: dragonRushIkari, + targets: TargetingMode { + faction: enemy, + mode: single } } export Item magicJarItem { @@ -95,38 +147,91 @@ export Item magicJarItem { menuicon: potionIcon, battle: true, targets: TargetingMode { - ally: true, - single: true + faction: ally, + mode: single } } +export Item megaShieldItem { + name: "Mega shield", + menuicon: shieldIcon, + ikari: ironBarrierIkari +} export Item powerPotionItem { name: "Power potion", menuicon: potionIcon, battle: false } +export Item powerRingItem { + name: "Power ring", + menuicon: ringIcon, + ikari: trickIkari +} +export Item rocketRingItem { + name: "Rocket ring", + menuicon: ringIcon, + ikari: fakeIkari +} export Item sleepBallItem { name: "Sleep ball", menuicon: ballIcon, battle: true, targets: TargetingMode { - enemy: true, - single: true + faction: enemy, + mode: single + } +} +export Item sProRingItem { + name: "S-pro ring", + menuicon: ringIcon, + ikari: courageIkari +} +export Item zircoAxItem { + name: "Zirco ax", + menuicon: axIcon, + ikari: torrentIkari, + targets: TargetingMode { + faction: enemy, + mode: single } } +export Item zircoGlovesItem { + name: "Zirco gloves", + menuicon: shieldIcon, + ikari: forcefieldIkari +} +export Item zircoHelmetItem { + name: "Zirco helmet", + menuicon: helmetIcon, + ikari: slowIkari +} export Item zirconArmorItem { name: "Zircon armor", menuicon: armorIcon, battle: false, ikari: magicCureIkari } +export Item zirconPlateItem { + name: "Zircon plate", + menuicon: armorIcon, + ikari: suddenCureIkari +} export Item zircoSwordItem { name: "Zirco sword", menuicon: swordIcon, battle: false, targets: TargetingMode { - enemy: true, - single: true + faction: enemy, + mode: single }, ikari: firestormIkari, attackanimation: swordAttackAnimation } +export Item zircoWhipItem { + name: "Zirco whip", + menuicon: rodIcon, + targets: TargetingMode { + faction: enemy, + mode: single + }, + ikari: thundershriekIkari +}