]> git.localhorst.tv Git - l2e.git/commitdiff
sorry, forgot the spells source file
authorDaniel Karbach <daniel.karbach@localhorst.tv>
Fri, 31 Aug 2012 21:46:35 +0000 (23:46 +0200)
committerDaniel Karbach <daniel.karbach@localhorst.tv>
Fri, 31 Aug 2012 21:46:35 +0000 (23:46 +0200)
test-data/spells.l2s [new file with mode: 0644]

diff --git a/test-data/spells.l2s b/test-data/spells.l2s
new file mode 100644 (file)
index 0000000..ec3f1c8
--- /dev/null
@@ -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
+       }
+}