forked from sbordeyne/rpg-text
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspells.json
36 lines (36 loc) · 816 Bytes
/
spells.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"fireball": {
"type": "aoe/damage",
"damage": "lvl d6",
"effects": "burning",
"level": 3,
"job": "spellcaster",
"description": "[caster] casted fireball on [target] and dealt [amount] damage!",
"cost": 20
},
"icicle": {
"type": "st/damage",
"level": 2,
"job": "spellcaster",
"damage": "2d6",
"effects": "frozen",
"description": "[caster] casted icicle on [target] and dealt [amount] damage!",
"cost": 10
},
"rage": {
"level": 2,
"job": "warrior",
"type": "st/buff",
"effects": "rage",
"description": "[caster] used rage!",
"cost": 5
},
"minor_healing": {
"level": 2,
"job": "cleric",
"type": "st/heal",
"damage": "lvl d4",
"description": "[caster] healed [target] for [amount]!",
"cost": 10
}
}