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