Skip to content

Commit

Permalink
Fix gift research bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
SariusSkelrets committed Nov 2, 2024
1 parent f2b87b8 commit 3fcf8a1
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 8 deletions.
2 changes: 0 additions & 2 deletions data/mods/Xedra_Evolved/effects/effects.json
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,6 @@
{
"type": "effect_type",
"id": "vampire_virus_ascendant",
"//": "Currently unobtainable. Needs to be player choice and significant quest/difficulty to advance to this stage. VAMPIRE4 will be gated behind this.",
"name": [ "Terminal Porphyria" ],
"desc": [ "Your skin is deathly white and will redden and burn when exposed to the sun." ],
"apply_message": "You've chosen to embrace this illness and enhance your curse.",
Expand All @@ -427,7 +426,6 @@
{
"type": "effect_type",
"id": "vampire_virus_post_mortal",
"//": "Currently unobtainable. Needs to be player choice and significant quest/difficulty to advance to this stage. VAMPIRE5 will be gated behind this.",
"name": [ "Homo sapiens homovorus" ],
"desc": [
"Your skin is deathly white, your eyes are solid red except for a huge pupil, the only food you can consume is human blood, and if sunlight hits you that part of your body instantly burns."
Expand Down
21 changes: 15 additions & 6 deletions data/mods/Xedra_Evolved/recipes/vampire.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@
"//": "This should contain all tier 1 vampire powers",
"condition": { "u_has_effect": "effect_vampire_studying_blood_gifts" },
"effect": [
{ "u_lose_effect": "effect_vampire_studying_blood_gifts" },
{
"u_roll_remainder": [
"EYEGLEAM",
Expand All @@ -107,7 +106,6 @@
"//": "This should contain all tier 2 vampire powers",
"condition": { "u_has_effect": "effect_vampire_studying_blood_gifts" },
"effect": [
{ "u_lose_effect": "effect_vampire_studying_blood_gifts" },
{
"u_roll_remainder": [
"BLOODHEAL",
Expand All @@ -130,7 +128,6 @@
"//": "This should contain all tier 3 vampire powers",
"condition": { "u_has_effect": "effect_vampire_studying_blood_gifts" },
"effect": [
{ "u_lose_effect": "effect_vampire_studying_blood_gifts" },
{
"u_roll_remainder": [ "BLOODHASTE", "MAGICFORBLOOD", "HYPNOTIC_GAZE", "BLOODBANK", "VAMPIRE_COMMAND_BEAST", "VAMPIRE_EARTH_SLUMBER" ],
"type": "mutation",
Expand All @@ -145,7 +142,6 @@
"//": "This should contain all tier 4 vampire powers",
"condition": { "u_has_effect": "effect_vampire_studying_blood_gifts" },
"effect": [
{ "u_lose_effect": "effect_vampire_studying_blood_gifts" },
{
"u_roll_remainder": [
"TRUE_VAMPIRE_POWER",
Expand All @@ -166,10 +162,20 @@
{
"type": "effect_on_condition",
"id": "EOC_XE_VAMPIRE_BLOOD_RESEARCH_RESULTS_05",
"//": "This checks if the vampire has the required tier before trying to give them tier 5 powers",
"condition": { "u_has_trait": "BLOOD_DRINKER" },
"effect": [ { "run_eocs": "EOC_XE_VAMPIRE_BLOOD_RESEARCH_RESULTS_05_REAL" } ],
"false_effect": [
{ "run_eocs": "EOC_XE_VAMPIRE_BLOOD_RESEARCH_RESULTS_04" },
{ "u_message": "Your vampirism isn't potent enough to unlock a gift of this level, so you have to settle for a weaker gift.", "type": "bad" }
]
},
{
"type": "effect_on_condition",
"id": "EOC_XE_VAMPIRE_BLOOD_RESEARCH_RESULTS_05_REAL",
"//": "This should contain all tier 5 vampire powers",
"condition": { "u_has_effect": "effect_vampire_studying_blood_gifts" },
"effect": [
{ "u_lose_effect": "effect_vampire_studying_blood_gifts" },
{
"u_roll_remainder": [
"VAMPIRE_MASTER_MORTAL_MIND",
Expand Down Expand Up @@ -199,13 +205,16 @@
"effect": [
{ "u_message": "You learn a new blood gift.", "popup": true },
{ "run_eocs": "EOC_MIST_FORM_BEFORE_LAST_BREATH" },
{ "u_lose_effect": "effect_vampire_studying_blood_gifts" },
{ "u_add_effect": "effect_vampire_recently_learned_blood_gifts", "duration": "5 days" }
]
},
{
"type": "effect_on_condition",
"id": "EOC_XE_VAMPIRE_BLOOD_RESEARCH_FAILURE",
"effect": [ { "u_message": "Your experiments are fruitless. You'll have to try again." } ]
"effect": [
{ "u_lose_effect": "effect_vampire_studying_blood_gifts" },
{ "u_message": "Your experiments are fruitless. You'll have to try again." } ]
},
{
"type": "effect_on_condition",
Expand Down

0 comments on commit 3fcf8a1

Please sign in to comment.