-
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.
[Xedra Evolved] If you habitually murder the Fair Folk they all hate …
…you (#79269) * Initial commit * Change trait name * Add Boann's reaction * Dogs bay when they see you * Add witchwood sword * Add biological damage to the Huntsman's attacks * Add reduced healing to huntsman's attacks * Implement suggestions from code review
- Loading branch information
1 parent
953dbcf
commit 0230a96
Showing
11 changed files
with
451 additions
and
89 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
[ | ||
{ | ||
"type": "effect_on_condition", | ||
"id": "become_fire_fae", | ||
"condition": { "not": { "u_has_flag": "MUTATION_THRESHOLD" } }, | ||
"effect": [ | ||
{ | ||
"u_message": "You imbibed the concoction and you feel your soul merge with an alien power, becoming attuned to fire.", | ||
"type": "good" | ||
}, | ||
{ "u_add_trait": "SALAMANDER" }, | ||
{ "u_learn_recipe": "mutagen_flamekin" }, | ||
{ "u_learn_recipe": "charred_sacrifice" } | ||
], | ||
"false_effect": [ { "u_message": "The power attempts to take hold, but is rebuffed by something sinister within you." } ] | ||
}, | ||
{ | ||
"type": "effect_on_condition", | ||
"id": "become_doll_fae", | ||
"condition": { "not": { "u_has_flag": "MUTATION_THRESHOLD" } }, | ||
"//": "Each potion is one trait", | ||
"effect": [ | ||
{ "u_message": "As you imbibe the concoction, you feel the stolen power fusing with your essence." }, | ||
{ | ||
"if": { "not": { "u_has_any_trait": [ "FALSE_ARVORE_HATRED" ] } }, | ||
"then": { "u_add_trait": "FALSE_HOMULLUS_HATRED" }, | ||
"else": { "u_add_trait": "FAE_ENMITY" } | ||
}, | ||
{ "math": [ "u_vitamin('mutagen_dollkin')", "+=", "500" ] }, | ||
{ "math": [ "u_vitamin('mutagen')", "+=", "1000" ] }, | ||
{ "u_mutate": 0 }, | ||
{ "math": [ "u_vitamin('mutagen_dollkin')", "-=", "500" ] }, | ||
{ "math": [ "u_vitamin('mutagen')", "-=", "1000" ] } | ||
], | ||
"false_effect": [ { "u_message": "The power attempts to take hold, but is rebuffed by something sinister within you." } ] | ||
}, | ||
{ | ||
"type": "effect_on_condition", | ||
"id": "become_air_fae", | ||
"condition": { "not": { "u_has_flag": "MUTATION_THRESHOLD" } }, | ||
"effect": [ | ||
{ | ||
"u_message": "You imbibed the concoction and you feel your soul merge with an alien power, becoming attuned to the winds." | ||
}, | ||
{ "u_add_trait": "SYLPH" }, | ||
{ "u_learn_recipe": "mutagen_airkin" }, | ||
{ "u_learn_recipe": "ethereal_draught" } | ||
], | ||
"false_effect": [ { "u_message": "The power attempts to take hold, but is rebuffed by something sinister within you." } ] | ||
}, | ||
{ | ||
"type": "effect_on_condition", | ||
"id": "become_water_fae", | ||
"condition": { "not": { "u_has_flag": "MUTATION_THRESHOLD" } }, | ||
"effect": [ | ||
{ | ||
"u_message": "You imbibed the concoction and you feel your soul merge with an alien power, becoming attuned to the waters." | ||
}, | ||
{ "u_add_trait": "UNDINE" }, | ||
{ "u_learn_recipe": "mutagen_waterkin" }, | ||
{ "u_learn_recipe": "cerulean_poultice" } | ||
], | ||
"false_effect": [ { "u_message": "The power attempts to take hold, but is rebuffed by something sinister within you." } ] | ||
}, | ||
{ | ||
"type": "effect_on_condition", | ||
"id": "become_earth_fae", | ||
"condition": { "not": { "u_has_flag": "MUTATION_THRESHOLD" } }, | ||
"effect": [ | ||
{ | ||
"u_message": "You imbibed the concoction and you feel your soul merge with an alien power, becoming attuned to the earth." | ||
}, | ||
{ "u_add_trait": "IERDE" }, | ||
{ "u_learn_recipe": "mutagen_earthkin" }, | ||
{ "u_learn_recipe": "cthonic_poultice" } | ||
], | ||
"false_effect": [ { "u_message": "The power attempts to take hold, but is rebuffed by something sinister within you." } ] | ||
}, | ||
{ | ||
"type": "effect_on_condition", | ||
"id": "become_plant_fae", | ||
"condition": { "not": { "u_has_flag": "MUTATION_THRESHOLD" } }, | ||
"effect": [ | ||
{ "u_message": "As you imbibe the concoction, you feel the stolen power fusing with your essence." }, | ||
{ | ||
"if": { "not": { "u_has_any_trait": [ "FALSE_HOMULLUS_HATRED" ] } }, | ||
"then": { "u_add_trait": "FALSE_ARVORE_HATRED" }, | ||
"else": { "u_add_trait": "FAE_ENMITY" } | ||
}, | ||
{ "math": [ "u_vitamin('mutagen_plantkin')", "+=", "500" ] }, | ||
{ "math": [ "u_vitamin('mutagen')", "+=", "1000" ] }, | ||
{ "u_mutate": 0 }, | ||
{ "math": [ "u_vitamin('mutagen_plantkin')", "-=", "500" ] }, | ||
{ "math": [ "u_vitamin('mutagen')", "-=", "1000" ] } | ||
], | ||
"false_effect": [ { "u_message": "The power attempts to take hold, but is rebuffed by something sinister within you." } ] | ||
} | ||
] |
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
Oops, something went wrong.