-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
78 additions
and
0 deletions.
There are no files selected for viewing
13 changes: 13 additions & 0 deletions
13
common/src/main/resources/data/scriptor/tomes/disabled_example.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"name": "Disabled Tome", | ||
"disabled": true, | ||
"author": "This tome is an example of how to disable existing tomes.", | ||
"spell": { | ||
"action": "inflame", | ||
"subject": "storm", | ||
"descriptors": [ | ||
"long", | ||
"slow" | ||
] | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
common/src/main/resources/data/scriptor/tomes/greater_smite.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"name": "Greater Smite", | ||
"author": "§iThe name is faded...", | ||
"spell": { | ||
"action": "smite", | ||
"subject": "storm", | ||
"descriptors": [ | ||
"strong" | ||
] | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
common/src/main/resources/data/scriptor/tomes/heal_self.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"name": "Heal Self", | ||
"author": "§iThe name is faded...", | ||
"spell": { | ||
"action": "heal", | ||
"subject": "self", | ||
"descriptors": [ | ||
"strong" | ||
] | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
common/src/main/resources/data/scriptor/tomes/healing_hands.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"name": "Healing Hands", | ||
"author": "§iThe name is faded...", | ||
"spell": { | ||
"action": "heal", | ||
"subject": "touch", | ||
"descriptors": [ | ||
"strong" | ||
] | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
common/src/main/resources/data/scriptor/tomes/hot_hands.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"name": "Hot Hands", | ||
"author": "§iThe name is faded...", | ||
"spell": { | ||
"action": "inflame", | ||
"subject": "touch", | ||
"descriptors": [ | ||
"long" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"name": "Immolate", | ||
"author": "Arnold the Unwise", | ||
"spell": { | ||
"action": "inflame", | ||
"subject": "self", | ||
"descriptors": [] | ||
} | ||
} |
12 changes: 12 additions & 0 deletions
12
common/src/main/resources/data/scriptor/tomes/wildfire.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"name": "Wildfire", | ||
"author": "§iThe name is faded...", | ||
"spell": { | ||
"action": "inflame", | ||
"subject": "storm", | ||
"descriptors": [ | ||
"long", | ||
"slow" | ||
] | ||
} | ||
} |