From 7c5c82d1d48aafa3d67a74ad063e62428d7f7752 Mon Sep 17 00:00:00 2001 From: Daniel Karbach Date: Fri, 31 Aug 2012 23:46:35 +0200 Subject: [PATCH] sorry, forgot the spells source file --- test-data/spells.l2s | 61 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 test-data/spells.l2s diff --git a/test-data/spells.l2s b/test-data/spells.l2s new file mode 100644 index 0000000..ec3f1c8 --- /dev/null +++ b/test-data/spells.l2s @@ -0,0 +1,61 @@ +export Spell championSpell { + name: "Champion", + cost: 16, + battle: true, + targets: TargetingMode { + ally: true, + multiple: true + } +} + +export Spell escapeSpell { + name: "Escape", + cost: 8, + battle: false +} + +export Spell rallySpell { + name: "Rally", + cost: 10, + battle: true, + targets: TargetingMode { + ally: true, + multiple: true + } +} + +export Spell resetSpell { + name: "Reset", + cost: 0, + battle: false +} + +export Spell strongSpell { + name: "Strong", + cost: 3, + battle: true, + targets: TargetingMode { + ally: true, + multiple: true + } +} + +export Spell strongerSpell { + name: "Stronger", + cost: 8, + battle: true, + targets: TargetingMode { + ally: true, + multiple: true + } +} + +export Spell valorSpell { + name: "Valor", + cost: 30, + battle: true, + targets: TargetingMode { + ally: true, + multiple: true + } +} -- 2.39.2