From 1f1f0ce090d867cfeddf3b77aba1fa26e27156cd Mon Sep 17 00:00:00 2001 From: Eddoursul Date: Tue, 15 Oct 2024 18:36:55 +0200 Subject: [PATCH] Automatically learn effects of unique ingredients --- Alchemy overhaul.esp | Bin 13548 -> 13853 bytes Autolearn effects of unique ingredients.esp | Bin 0 -> 2159 bytes Enderal SE v2.1.4 Changelog.txt | 6 ++++++ scripts/_00e_learnalleffects.pex | Bin 0 -> 772 bytes source/scripts/_00e_learnalleffects.psc | 9 +++++++++ 5 files changed, 15 insertions(+) create mode 100644 Autolearn effects of unique ingredients.esp create mode 100644 scripts/_00e_learnalleffects.pex create mode 100644 source/scripts/_00e_learnalleffects.psc diff --git a/Alchemy overhaul.esp b/Alchemy overhaul.esp index 41a24d8f7668d1b3fa2cc6598179f28bceb9901d..9aa5d949bcd32892a87486411e3ad1629a00bc8e 100644 GIT binary patch delta 200 zcmaEpIX7p55~Jou<&UgPyat=a*skeKR^VsRmSkiAg9#s)z$_gg&(+1#MTjBZz`!-$ zEjT_rKPRo&IVZ7v@&RLU9&QE@Ujf7~o_s+>bn<>44o0QP4+TW!ol+Bvz~Xv&nQ08Z z{w^Ur3``KyLFD9oDbdO2wD~4`DGJF-f~;}#bYWpodd&=C0o5`vC^&)?a!uxwP!+SC P!^8*|cL0e;01X2G+z%|& delta 20 ccmbQ6^CokG5~IdO<&UgPcl0)kv0c*x09jB6;{X5v diff --git a/Autolearn effects of unique ingredients.esp b/Autolearn effects of unique ingredients.esp new file mode 100644 index 0000000000000000000000000000000000000000..8640ab21c17fa7821ba2fbdabfa1755c5e6ad9ce GIT binary patch literal 2159 zcmbtVNpI6Y6n;rt+Cn9eT0krU3lNJaRe>T7EJ+&MG-{HTIAv2&G$fP6suNdZLzNo` z{sEgwwvp@^&o}SQ%=f+boK>_T19%JL zOSFF8jVN-a2X5bb8CijoT>$ZPEENJs#kA}y(57lkuMAMD0&*-H(Oa8SvO zQ5S>5GPr-BsuvN@_5`_wvz*3uc)Gp=&N-u5J`xmm^TW)~%^g$HiEI}f;9q!mMNPjY&ZHM^>4)bAH+p^GEp~az{2a;!vuIu%C&-2LALjBz+ z2X8{*;h>69oJUy%_UN9kur%C^?TvIcB4gIUIvRF+0@&pU+O6ads(;Bt>S2pg z$ASu@OP(r1jZ>}~S6_vj)Nl)+n@xvuiZPXPNW z>I8Ou8SKU~*v%y|jQym`_KuIuZ1*-|KUHI-;8(nVq`C(jKYvhOb~LyRmKT}O0waG@ xUp|SOxg48K9RD1B__GxpZ+o+{5$&ReaLC1u-1W7QVmOaY*xkS5V`5(A-47xA%NhUx literal 0 HcmV?d00001 diff --git a/Enderal SE v2.1.4 Changelog.txt b/Enderal SE v2.1.4 Changelog.txt index 003fe07c..b0478889 100644 --- a/Enderal SE v2.1.4 Changelog.txt +++ b/Enderal SE v2.1.4 Changelog.txt @@ -7,6 +7,12 @@ Beware, spoilers ahead! 2.1.4 (TBD) +- Revised alchemy system: +-- Merged two separate Damage Stamina groups and Drain Stamina into a single Damage Stamina group, applying damage over time. +-- Merged Damage Mana and Damage Mana temporary into a single Damage Mana group, applying damage over time. +-- Significantly increased effect from Damage Mana and Damage Stamina to finally make them useful. +-- Fixed the Slow effect almost never applying due to an engine bug. Improved magnitude consistency which was all over the place. +-- Effects of unique ingredients are discovered automatically when they are added to the inventory. - Chinese Simplified localization has been revised by DaisyComment (no translation of lines added after 2.0.12.4 yet). - Dimension Rift might get stuck in an infinite effect+sound loop if player left the cell while it's active. diff --git a/scripts/_00e_learnalleffects.pex b/scripts/_00e_learnalleffects.pex new file mode 100644 index 0000000000000000000000000000000000000000..c409ce996721dbfaccc774e12d1272c8d07517db GIT binary patch literal 772 zcmZ8f&2G~`5dJoCoS(K1grrURk$mG;1#aXPHDT=+B37?&(5y@e*X2l-GTs*Ecp2Y)75OYSbd<#sP}okNK=Y!akedD z3>HbEOH-72h=BI-*-okuuP|mFt#ZeU@|YTt95}(tH1;L=sb9Q_zdg-zNr5N{6V*g zDnX8&LJK|S-VO0wV8G=A9M&~~BSr`WTxy>P3zoR(`wM|d)u(%n8N>1;c4a6>lbST$liZeG-ZLLp F)PJ1^p^5+i literal 0 HcmV?d00001 diff --git a/source/scripts/_00e_learnalleffects.psc b/source/scripts/_00e_learnalleffects.psc new file mode 100644 index 00000000..9fe53eb6 --- /dev/null +++ b/source/scripts/_00e_learnalleffects.psc @@ -0,0 +1,9 @@ +Scriptname _00E_LearnAllEffects extends Ingredient + +Event OnContainerChanged(ObjectReference akNewContainer, ObjectReference akOldContainer) + + If akNewContainer && akNewContainer == Game.GetForm(0x14) + LearnAllEffects() + EndIf + +EndEvent