-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Magiclysm] Add spell school deficiency traits (#76230)
* Initial commit * Add cost too * Fix names * Add NPC traits
- Loading branch information
1 parent
515ac7b
commit ced900e
Showing
5 changed files
with
233 additions
and
2 deletions.
There are no files selected for viewing
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
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
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
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
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,82 @@ | ||
[ | ||
{ | ||
"type": "mutation", | ||
"id": "NO_CASTING_CHANNELING_SPELLS", | ||
"name": "School Deficiency: Channeling", | ||
"points": -2, | ||
"description": "No matter how hard you try, you never managed to master channeling spells. You are unable to cast any spell of the channeling school.", | ||
"starting_trait": true, | ||
"purifiable": false, | ||
"valid": false | ||
}, | ||
{ | ||
"type": "mutation", | ||
"id": "NO_CASTING_EVOCATION_SPELLS", | ||
"name": "School Deficiency: Evocation", | ||
"points": -2, | ||
"description": "No matter how hard you try, you never managed to master evocation spells. You are unable to cast any spell of the evocation school.", | ||
"starting_trait": true, | ||
"purifiable": false, | ||
"valid": false | ||
}, | ||
{ | ||
"type": "mutation", | ||
"id": "NO_CASTING_CONJURATION_SPELLS", | ||
"name": "School Deficiency: Conjuration", | ||
"points": -2, | ||
"description": "No matter how hard you try, you never managed to master conjuration spells. You are unable to cast any spell of the conjuration school.", | ||
"starting_trait": true, | ||
"purifiable": false, | ||
"valid": false | ||
}, | ||
{ | ||
"type": "mutation", | ||
"id": "NO_CASTING_ENHANCEMENT_SPELLS", | ||
"name": "School Deficiency: Enhancement", | ||
"points": -2, | ||
"description": "No matter how hard you try, you never managed to master enhancement spells. You are unable to cast any spell of the enhancement school.", | ||
"starting_trait": true, | ||
"purifiable": false, | ||
"valid": false | ||
}, | ||
{ | ||
"type": "mutation", | ||
"id": "NO_CASTING_ENERVATION_SPELLS", | ||
"name": "School Deficiency: Enervation", | ||
"points": -2, | ||
"description": "No matter how hard you try, you never managed to master enervation spells. You are unable to cast any spell of the enervation school.", | ||
"starting_trait": true, | ||
"purifiable": false, | ||
"valid": false | ||
}, | ||
{ | ||
"type": "mutation", | ||
"id": "NO_CASTING_CONVEYANCE_SPELLS", | ||
"name": "School Deficiency: Conveyance", | ||
"points": -2, | ||
"description": "No matter how hard you try, you never managed to master conveyance spells. You are unable to cast any spell of the conveyance school.", | ||
"starting_trait": true, | ||
"purifiable": false, | ||
"valid": false | ||
}, | ||
{ | ||
"type": "mutation", | ||
"id": "NO_CASTING_RESTORATION_SPELLS", | ||
"name": "School Deficiency: Restoration", | ||
"points": -2, | ||
"description": "No matter how hard you try, you never managed to master restoration spells. You are unable to cast any spell of the restoration school.", | ||
"starting_trait": true, | ||
"purifiable": false, | ||
"valid": false | ||
}, | ||
{ | ||
"type": "mutation", | ||
"id": "NO_CASTING_TRANSFORMATION_SPELLS", | ||
"name": "School Deficiency: Transformation", | ||
"points": -2, | ||
"description": "No matter how hard you try, you never managed to master transformation spells. You are unable to cast any spell of the transformation school.", | ||
"starting_trait": true, | ||
"purifiable": false, | ||
"valid": false | ||
} | ||
] |