PRC8/trunk/scripts/prc_disp_irnskn.nss
Jaysyn904 1662218bb4 Initial upload.
Adding base PRC 4.19a files to repository.
2022-10-07 13:51:24 -04:00

27 lines
764 B
Plaintext

//::///////////////////////////////////////////////
//:: 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);
}