From 879792be09c09080e970866015d5cda8be734438 Mon Sep 17 00:00:00 2001 From: Nim <128169402+Nimfar11@users.noreply.github.com> Date: Wed, 2 Apr 2025 16:11:48 +0300 Subject: [PATCH] Fix mana damage (#1106) * fix mana damage * mana potion * fix rev * ehh * hmm * nop * Update target_effect_creation_on_water.yml --------- Co-authored-by: Ed <96445749+TheShuEd@users.noreply.github.com> --- .../target_effect_creation_on_water.yml | 42 ++++++++++++++++++- 1 file changed, 40 insertions(+), 2 deletions(-) diff --git a/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/target_effect_creation_on_water.yml b/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/target_effect_creation_on_water.yml index 0236c9974f..0d8f211b2a 100644 --- a/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/target_effect_creation_on_water.yml +++ b/Resources/Prototypes/_CP14/Recipes/Reactions/Thaumaturgy/target_effect_creation_on_water.yml @@ -266,7 +266,7 @@ amount: 1 products: CP14BasicEffectEmpty: 2 - CP14BasicEffectDrunk: 1 + CP14BasicEffectHealManaDepletion: 1 CP14BasicEffectHealMana: 1 effects: - !type:CP14AffectSolutionTemperature @@ -330,4 +330,42 @@ addTemperature: -150 # CP14BasicEffectSleep -# CP14BasicEffectUnsleep \ No newline at end of file +# CP14BasicEffectUnsleep + +- type: reaction + id: CP14WaterBrewingHealManaDepletion + minTemp: 500 + priority: 1 + reactants: + CP14EssenceLife: + amount: 1 + CP14EssenceEnergia: + amount: 2 + Water: + amount: 1 + products: + CP14BasicEffectEmpty: 2 + CP14BasicEffectDrunk: 1 + CP14BasicEffectHealManaDepletion: 1 + effects: + - !type:CP14AffectSolutionTemperature + addTemperature: -150 + +- type: reaction + id: CP14WaterBrewingDamageManaDepletion + minTemp: 500 + priority: 1 + reactants: + CP14EssenceEnergia: + amount: 2 + CP14EssencePoison: + amount: 1 + Water: + amount: 1 + products: + CP14BasicEffectEmpty: 2 + CP14BasicEffectDrunk: 1 + CP14BasicEffectDamageManaDepletion: 1 + effects: + - !type:CP14AffectSolutionTemperature + addTemperature: -150