]> git.localhorst.tv Git - l2e.git/blob - test-data/spells.l2s
moved most of the remaining data from main to test.l2s
[l2e.git] / test-data / spells.l2s
1 export Spell championSpell {
2         name: "Champion",
3         cost: 16,
4         battle: true,
5         targets: TargetingMode {
6                 ally: true,
7                 multiple: true
8         }
9 }
10
11 export Spell escapeSpell {
12         name: "Escape",
13         cost: 8,
14         battle: false
15 }
16
17 export Spell rallySpell {
18         name: "Rally",
19         cost: 10,
20         battle: true,
21         targets: TargetingMode {
22                 ally: true,
23                 multiple: true
24         }
25 }
26
27 export Spell resetSpell {
28         name: "Reset",
29         cost: 0,
30         battle: false
31 }
32
33 export Spell strongSpell {
34         name: "Strong",
35         cost: 3,
36         battle: true,
37         targets: TargetingMode {
38                 ally: true,
39                 multiple: true
40         }
41 }
42
43 export Spell strongerSpell {
44         name: "Stronger",
45         cost: 8,
46         battle: true,
47         targets: TargetingMode {
48                 ally: true,
49                 multiple: true
50         }
51 }
52
53 export Spell valorSpell {
54         name: "Valor",
55         cost: 30,
56         battle: true,
57         targets: TargetingMode {
58                 ally: true,
59                 multiple: true
60         }
61 }