-
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.
- Loading branch information
1 parent
de53902
commit d5c4811
Showing
6 changed files
with
233 additions
and
4 deletions.
There are no files selected for viewing
137 changes: 137 additions & 0 deletions
137
data/mods/Xedra_Evolved/eocs/playable_changeling_advancement_eocs.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,137 @@ | ||
[ | ||
{ | ||
"type": "effect_on_condition", | ||
"id": "EOC_PLAYABLE_CHANGELING_COMMONER_CHOOSE_HERITAGE", | ||
"eoc_type": "EVENT", | ||
"required_event": "character_wakes_up", | ||
"condition": { "test_eoc": "EOC_TEST_CHANGELING_COMMONER_INITIAL_CONDITIONS" }, | ||
"effect": [ | ||
{ | ||
"u_message": "That night, you dream of your parents and the unknown place of your birth. Who were they?", | ||
"type": "info" | ||
}, | ||
{ | ||
"run_eoc_selector": [ | ||
"EOC_PLAYABLE_CHANGELING_COMMONER_CHOOSE_HERITAGE_BROWNIE", | ||
"EOC_PLAYABLE_CHANGELING_COMMONER_CHOOSE_HERITAGE_POOKA", | ||
"EOC_PLAYABLE_CHANGELING_COMMONER_CHOOSE_HERITAGE_SELKIE", | ||
"EOC_PLAYABLE_CHANGELING_COMMONER_CHOOSE_HERITAGE_TROW" | ||
], | ||
"names": [ "Brownie", "Pooka", "Selkie", "Trow" ], | ||
"title": "What is your heritage?", | ||
"descriptions": [ | ||
"Your parents were brownies, the simple, down-to-earth crafters of the fae.", | ||
"Your parents were pookas, shapechangers that can take animal forms.", | ||
"Your parents were selkies, who spend part of the time upon land and part of the time as a seal in the sea", | ||
"Your parents were trow, tough as stone, who dwell beneath the earth." | ||
] | ||
} | ||
] | ||
}, | ||
{ | ||
"type": "effect_on_condition", | ||
"id": "EOC_PLAYABLE_CHANGELING_COMMONER_CHOOSE_HERITAGE_BROWNIE", | ||
"condition": { "test_eoc": "EOC_TEST_CHANGELING_COMMONER_INITIAL_CONDITIONS" }, | ||
"effect": [ | ||
{ "u_add_trait": "FAIR_FOLK_COMMONER_BROWNIE" }, | ||
{ "u_add_trait": "UNKNOWING_CHANGELING_COMMONER_CHOICE" }, | ||
{ "u_message": "XE_CHANGELING_COMMONER_BROWNIE", "type": "neutral", "snippet": true } | ||
] | ||
}, | ||
{ | ||
"type": "effect_on_condition", | ||
"id": "EOC_PLAYABLE_CHANGELING_COMMONER_CHOOSE_HERITAGE_POOKA", | ||
"condition": { "test_eoc": "EOC_TEST_CHANGELING_COMMONER_INITIAL_CONDITIONS" }, | ||
"effect": [ | ||
{ "u_add_trait": "FAIR_FOLK_COMMONER_POOKA" }, | ||
{ "u_add_trait": "UNKNOWING_CHANGELING_COMMONER_CHOICE" }, | ||
{ "u_message": "XE_CHANGELING_COMMONER_POOKA", "type": "neutral", "snippet": true } | ||
] | ||
}, | ||
{ | ||
"type": "effect_on_condition", | ||
"id": "EOC_PLAYABLE_CHANGELING_COMMONER_CHOOSE_HERITAGE_SELKIE", | ||
"condition": { "test_eoc": "EOC_TEST_CHANGELING_COMMONER_INITIAL_CONDITIONS" }, | ||
"effect": [ | ||
{ "u_add_trait": "FAIR_FOLK_COMMONER_SELKIE" }, | ||
{ "u_add_trait": "UNKNOWING_CHANGELING_COMMONER_CHOICE" }, | ||
{ "u_message": "XE_CHANGELING_COMMONER_SELKIE", "type": "neutral", "snippet": true } | ||
] | ||
}, | ||
{ | ||
"type": "effect_on_condition", | ||
"id": "EOC_PLAYABLE_CHANGELING_COMMONER_CHOOSE_HERITAGE_TROW", | ||
"condition": { "test_eoc": "EOC_TEST_CHANGELING_COMMONER_INITIAL_CONDITIONS" }, | ||
"effect": [ | ||
{ "u_add_trait": "FAIR_FOLK_COMMONER_TROW" }, | ||
{ "u_add_trait": "UNKNOWING_CHANGELING_COMMONER_CHOICE" }, | ||
{ "u_message": "XE_CHANGELING_COMMONER_TROW", "type": "neutral", "snippet": true } | ||
] | ||
}, | ||
{ | ||
"type": "effect_on_condition", | ||
"id": "EOC_PLAYABLE_CHANGELING_NOBLE_NEW_POWERS", | ||
"eoc_type": "EVENT", | ||
"required_event": "character_wakes_up", | ||
"condition": { | ||
"and": [ { "u_has_trait": "UNKNOWING_CHANGELING_NOBLE" }, { "math": [ "u_vitamin('changeling_dreams')", ">=", "1" ] } ] | ||
}, | ||
"effect": [ ] | ||
}, | ||
{ | ||
"type": "effect_on_condition", | ||
"id": "EOC_PLAYABLE_CHANGELING_BROWNIE_NEW_POWERS", | ||
"eoc_type": "EVENT", | ||
"required_event": "character_wakes_up", | ||
"condition": { | ||
"and": [ | ||
{ "u_has_trait": "UNKNOWING_CHANGELING_COMMONER" }, | ||
{ "u_has_trait": "FAIR_FOLK_COMMONER_BROWNIE" }, | ||
{ "math": [ "u_vitamin('changeling_dreams')", ">=", "1" ] } | ||
] | ||
}, | ||
"effect": [ ] | ||
}, | ||
{ | ||
"type": "effect_on_condition", | ||
"id": "EOC_PLAYABLE_CHANGELING_POOKA_NEW_POWERS", | ||
"eoc_type": "EVENT", | ||
"required_event": "character_wakes_up", | ||
"condition": { | ||
"and": [ | ||
{ "u_has_trait": "UNKNOWING_CHANGELING_COMMONER" }, | ||
{ "u_has_trait": "FAIR_FOLK_COMMONER_POOKA" }, | ||
{ "math": [ "u_vitamin('changeling_dreams')", ">=", "1" ] } | ||
] | ||
}, | ||
"effect": [ ] | ||
}, | ||
{ | ||
"type": "effect_on_condition", | ||
"id": "EOC_PLAYABLE_CHANGELING_SELKIE_NEW_POWERS", | ||
"eoc_type": "EVENT", | ||
"required_event": "character_wakes_up", | ||
"condition": { | ||
"and": [ | ||
{ "u_has_trait": "UNKNOWING_CHANGELING_COMMONER" }, | ||
{ "u_has_trait": "FAIR_FOLK_COMMONER_SELKIE" }, | ||
{ "math": [ "u_vitamin('changeling_dreams')", ">=", "1" ] } | ||
] | ||
}, | ||
"effect": [ ] | ||
}, | ||
{ | ||
"type": "effect_on_condition", | ||
"id": "EOC_PLAYABLE_CHANGELING_TROW_NEW_POWERS", | ||
"eoc_type": "EVENT", | ||
"required_event": "character_wakes_up", | ||
"condition": { | ||
"and": [ | ||
{ "u_has_trait": "UNKNOWING_CHANGELING_COMMONER" }, | ||
{ "u_has_trait": "FAIR_FOLK_COMMONER_TROW" }, | ||
{ "math": [ "u_vitamin('changeling_dreams')", ">=", "1" ] } | ||
] | ||
}, | ||
"effect": [ ] | ||
} | ||
] |
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 |
---|---|---|
|
@@ -72,5 +72,9 @@ | |
{ | ||
"type": "mutation_type", | ||
"id": "MANA_SIPHON" | ||
}, | ||
{ | ||
"type": "mutation_type", | ||
"id": "HERITAGE" | ||
} | ||
] |
16 changes: 16 additions & 0 deletions
16
data/mods/Xedra_Evolved/mutations/playable_changeline_eocs.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
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
27 changes: 27 additions & 0 deletions
27
data/mods/Xedra_Evolved/snippets/playable_changeling_dreams.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,27 @@ | ||
[ | ||
{ | ||
"type": "snippet", | ||
"category": "XE_CHANGELING_NOBLE", | ||
"text": [ "You have bad dreams." ] | ||
}, | ||
{ | ||
"type": "snippet", | ||
"category": "XE_CHANGELING_COMMONER_BROWNIE", | ||
"text": [ "You have bad dreams." ] | ||
}, | ||
{ | ||
"type": "snippet", | ||
"category": "XE_CHANGELING_COMMONER_POOKA", | ||
"text": [ "You have bad dreams." ] | ||
}, | ||
{ | ||
"type": "snippet", | ||
"category": "XE_CHANGELING_COMMONER_SELKIE", | ||
"text": [ "You have bad dreams." ] | ||
}, | ||
{ | ||
"type": "snippet", | ||
"category": "XE_CHANGELING_COMMONER_TROW", | ||
"text": [ "You have bad dreams." ] | ||
} | ||
] |
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