From: Daniel Karbach Date: Fri, 31 Aug 2012 21:46:35 +0000 (+0200) Subject: sorry, forgot the spells source file X-Git-Url: http://git.localhorst.tv/?a=commitdiff_plain;ds=sidebyside;h=7c5c82d1d48aafa3d67a74ad063e62428d7f7752;hp=27c650023e0fb9e5549caeff0989faccd564b9cb;p=l2e.git sorry, forgot the spells source file --- 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 + } +}