Updated Release Archive

Updated Release Archive.  Fixed Mage-killer prereqs.  Removed old LETO & ConvoCC related files.  Added organized spell scroll store.  Fixed Gloura spellbook. Various TLK fixes.  Reorganized Repo.  Removed invalid user folders. Added DocGen back in.
This commit is contained in:
Jaysyn904
2023-08-22 10:00:21 -04:00
parent 3acda03f30
commit 5914ed2ab5
22853 changed files with 57524 additions and 47307 deletions

View File

@@ -0,0 +1,30 @@
/*:://////////////////////////////////////////////
//:: Trap Name One Rock Fall trap
//:: Trap FileName PHS_T_OneRock
//:://////////////////////////////////////////////
//:: Trap Description / Effects
//:://////////////////////////////////////////////
One rock falls onto the entering object/person who set it off. Visual effect
and 3d6 bludgeoning damage, relfex for none.
//:://////////////////////////////////////////////
//:: Created By: Jasperre
//::////////////////////////////////////////////*/
#include "PHS_INC_SPELLS"
void main()
{
// Declare major variables
object oTarget = GetEnteringObject();
// Reflex adjusted
int nDam = GetReflexAdjustedDamage(d6(3), oTarget, 20, SAVING_THROW_TYPE_TRAP);
if(nDam > 0)
{
effect eDam = EffectDamage(nDam, DAMAGE_TYPE_BLUDGEONING);
effect eVis = EffectVisualEffect(VFX_IMP_FLAME_S);
// Apply damage
PHS_ApplyInstantAndVFX(oTarget, eVis, eDam);
}
}