Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add false eoc to Vampvirus checks in Xedra Evolved #64562

Merged
merged 8 commits into from
Mar 27, 2023
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 13 additions & 3 deletions data/mods/Xedra_Evolved/effects/vampvirus.json
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,11 @@
}
]
},
{
"type": "effect_on_condition",
"id": "EOC_COMPLETED_ROLL_REMAINDER",
"effect": { "u_message": "You flush with desire as you think about blood." }
},
{
"type": "effect_on_condition",
"id": "EOC_VAMPIRES",
Expand Down Expand Up @@ -121,7 +126,12 @@
"id": "eoc_vampvirus_1_trait",
"condition": { "u_has_trait": "VAMPIRE" },
"effect": [
{ "u_roll_remainder": [ "EYEGLEAM", "STAMINAFORBLOOD" ], "type": "mutation", "true_eocs": [ "EOC_VAMPVIRUS1" ] },
{
"u_roll_remainder": [ "EYEGLEAM", "STAMINAFORBLOOD" ],
"type": "mutation",
"true_eocs": [ "EOC_VAMPVIRUS1" ],
"false_eocs": [ "EOC_COMPLETED_ROLL_REMAINDER" ]
},
{ "u_message": "Suddenly you feel your heart pounding and you realize a new ability." }
],
"false_effect": [
Expand All @@ -146,7 +156,7 @@
"id": "eoc_vampvirus_2_trait",
"condition": { "u_has_trait": "VAMPIRE2" },
"effect": [
{ "u_roll_remainder": [ "BLOODHEAL", "COAGULANTWEAVE" ], "type": "mutation", "true_eocs": [ "EOC_VAMPVIRUS2" ] },
{ "u_roll_remainder": [ "BLOODHEAL", "COAGULANTWEAVE" ], "type": "mutation", "true_eocs": [ "EOC_VAMPVIRUS2" ], "false_eocs": [ "EOC_COMPLETED_ROLL_REMAINDER" ] },
Maleclypse marked this conversation as resolved.
Show resolved Hide resolved
Maleclypse marked this conversation as resolved.
Show resolved Hide resolved
{ "u_message": "Suddenly you feel your heart slowing and you realize a new ability." }
],
"false_effect": [
Expand All @@ -171,7 +181,7 @@
"id": "eoc_vampvirus_3_trait",
"condition": { "u_has_trait": "VAMPIRE3" },
"effect": [
{ "u_roll_remainder": [ "BLOODHASTE", "HYPNOTIC_GAZE" ], "type": "mutation", "true_eocs": [ "EOC_VAMPVIRUS2" ] },
{ "u_roll_remainder": [ "BLOODHASTE", "HYPNOTIC_GAZE" ], "type": "mutation", "false_eocs": [ "EOC_COMPLETED_ROLL_REMAINDER" ] },
Maleclypse marked this conversation as resolved.
Show resolved Hide resolved
{
"u_message": "You feel the absence of your heart beating for several seconds and then it resumes at this new rhythm."
}
Expand Down