| This is the transcript of a script file, which runs certain tasks in the game upon execution. |
| Details | |
|---|---|
| Type | Decompiled script |
| Editor ID | CalmHeartScript
|
| Form ID | 00167720 |
This script temporarily increases the player's health by 50 points when the effect starts and removes that bonus when the effect ends, effectively providing a temporary health boost.
scn CalmHeartScript
begin ScriptEffectStart
int iHealth;
set iHealth to ((GetBaseAV health) + 50);
SetAV health iHealth;
end
begin ScriptEffectFinish
int iHealth;
set iHealth to ((GetBaseAV health) - 50);
SetAV health iHealth;
end