-
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.
* Initial commit * Initial commit * Change scaling * Correct documentation
- Loading branch information
1 parent
efec09a
commit 2f576bd
Showing
7 changed files
with
99 additions
and
96 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
[ | ||
{ | ||
"type": "effect_on_condition", | ||
"id": "EOC_PHOTOKIN_CAMOUFLAGE_SWITCHER", | ||
"effect": [ | ||
{ | ||
"switch": { "math": [ "u_spell_level('photokinetic_camouflage')" ] }, | ||
"cases": [ | ||
{ "case": 0, "effect": { "u_add_trait": "PHOTOKINETIC_CAMOUFLAGE_1" } }, | ||
{ "case": 4, "effect": { "u_add_trait": "PHOTOKINETIC_CAMOUFLAGE_2" } }, | ||
{ "case": 8, "effect": { "u_add_trait": "PHOTOKINETIC_CAMOUFLAGE_3" } }, | ||
{ "case": 12, "effect": { "u_add_trait": "PHOTOKINETIC_CAMOUFLAGE_4" } }, | ||
{ "case": 16, "effect": { "u_add_trait": "PHOTOKINETIC_CAMOUFLAGE_5" } }, | ||
{ "case": 20, "effect": { "u_add_trait": "PHOTOKINETIC_CAMOUFLAGE_6" } } | ||
] | ||
} | ||
] | ||
} | ||
] |
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,62 @@ | ||
[ | ||
{ | ||
"type": "mutation", | ||
"//": "This and following are all necessary because stealth_modifier is mutation only. Redo the whole thing once it isn't.", | ||
"id": "PHOTOKINETIC_CAMOUFLAGE_1", | ||
"name": { "str": "Chameleoflage" }, | ||
"points": 1, | ||
"description": "Your powers are blending nearby light to make you harder to spot.", | ||
"stealth_modifier": 15, | ||
"valid": false | ||
}, | ||
{ | ||
"type": "mutation", | ||
"//": "This and following are all necessary because stealth_modifier is mutation only. Redo the whole thing once it isn't.", | ||
"id": "PHOTOKINETIC_CAMOUFLAGE_2", | ||
"name": { "str": "Chameleoflage" }, | ||
"points": 1, | ||
"description": "Your powers are blending nearby light to make you harder to spot.", | ||
"stealth_modifier": 25, | ||
"valid": false | ||
}, | ||
{ | ||
"type": "mutation", | ||
"//": "This and following are all necessary because stealth_modifier is mutation only. Redo the whole thing once it isn't.", | ||
"id": "PHOTOKINETIC_CAMOUFLAGE_3", | ||
"name": { "str": "Chameleoflage" }, | ||
"points": 1, | ||
"description": "Your powers are blending nearby light to make you harder to spot.", | ||
"stealth_modifier": 35, | ||
"valid": false | ||
}, | ||
{ | ||
"type": "mutation", | ||
"//": "This and following are all necessary because stealth_modifier is mutation only. Redo the whole thing once it isn't.", | ||
"id": "PHOTOKINETIC_CAMOUFLAGE_4", | ||
"name": { "str": "Chameleoflage" }, | ||
"points": 1, | ||
"description": "Your powers are blending nearby light to make you harder to spot.", | ||
"stealth_modifier": 43, | ||
"valid": false | ||
}, | ||
{ | ||
"type": "mutation", | ||
"//": "This and following are all necessary because stealth_modifier is mutation only. Redo the whole thing once it isn't.", | ||
"id": "PHOTOKINETIC_CAMOUFLAGE_5", | ||
"name": { "str": "Chameleoflage" }, | ||
"points": 1, | ||
"description": "Your powers are blending nearby light to make you harder to spot.", | ||
"stealth_modifier": 50, | ||
"valid": false | ||
}, | ||
{ | ||
"type": "mutation", | ||
"//": "This and following are all necessary because stealth_modifier is mutation only. Redo the whole thing once it isn't.", | ||
"id": "PHOTOKINETIC_CAMOUFLAGE_6", | ||
"name": { "str": "Chameleoflage" }, | ||
"points": 1, | ||
"description": "Your powers are blending nearby light to make you harder to spot.", | ||
"stealth_modifier": 55, | ||
"valid": false | ||
} | ||
] |
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