Further file organization

Further file organization
This commit is contained in:
Jaysyn904
2023-08-23 22:11:00 -04:00
parent 3062876237
commit d87fe14826
22364 changed files with 0 additions and 3253 deletions

View File

@@ -0,0 +1,26 @@
//::///////////////////////////////////////////////
//:: Stoneskin
//:: NW_S0_Stoneskin
//:: Copyright (c) 2001 Bioware Corp.
//:://////////////////////////////////////////////
/*
Gives the creature touched 10/+5
damage reduction. This lasts for 1 hour per
caster level or until 10 * Caster Level (100 Max)
is dealt to the person.
*/
//:://////////////////////////////////////////////
//:: Created By: Preston Watamaniuk
//:: Created On: March 16 , 2001
//:://////////////////////////////////////////////
//:: Last Updated By: Preston Watamaniuk, On: April 11, 2001
//:: modified by mr_bumpkin Dec 4, 2003
#include "inc_newspellbook"
#include "prc_inc_core"
void main()
{
int nLevel = 15;
DoRacialSLA(SPELL_STONESKIN, nLevel, 0);
}