Updated AMS marker feats

Updated AMS marker feats.  Removed arcane & divine marker feats.  Updated Dread Necromancer for epic progression. Updated weapon baseitem models.  Updated new weapons for crafting & npc equip.
 Updated prefix.  Updated release archive.
This commit is contained in:
Jaysyn904
2024-02-11 14:01:05 -05:00
parent 618cd42b82
commit 6ec137a24e
24762 changed files with 1528530 additions and 0 deletions

View File

@@ -0,0 +1,76 @@
//::///////////////////////////////////////////////
//:: Name Crypt Spawn template test script
//:: FileName tmp_t_cryptspawn
//::
//:://////////////////////////////////////////////
/*
*/
//:://////////////////////////////////////////////
//:: Created By: Jaysyn
//:: Created On: 2022/03/07
//:://////////////////////////////////////////////
/*CREATING A CRYPT SPAWN
“Crypt spawn” is a template that can be applied to any living creature (referred to hereafter as the “base creature”). The base creatures type changes to “undead.” It uses all the base creatures statistics and special abilities except as noted here.
Hit Dice: Increase to d12.
AC: A crypt spawn gains a natural armor bonus (see the table below). If the base creature already has natural armor, use the better value.
Hit Dice Natural Armor
14 +1
58 +2
912 +3
1316 +4
17+ +5
Special Qualities: A crypt spawn retains all the special qualities of the base creature and those listed below, and also gains the undead type.
Darkvision (Ex): A crypt spawn can see in complete darkness as if it were daylight.
Turn Resistance (Ex): A crypt spawn has +2 turn resistance.
Abilities: As an undead creature, a crypt spawn has no Constitution score.
Skills: A crypt spawn receives a +4 racial bonus on Intimidate checks. Otherwise as the base creature.
Climate/Terrain: Same as the base creature and underground.
Organization: Same as the base creature.
Challenge Rating: Same as the base creature +1.
Treasure: Same as the base creature.
Alignment: Usually evil. Few nonevil beings are willing to submit to the undeath after death spell or become an undead creature.
Level Adjustment: Same as base creature +2
*/
#include "prc_inc_template"
void main()
{
object oPC = OBJECT_SELF;
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_CONTINUE);
//:: Any living creature.
int nRace = MyPRCGetRacialType(oPC);
if(nRace == RACIAL_TYPE_CONSTRUCT ||
nRace == RACIAL_TYPE_UNDEAD)
{
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_END);
}
//:: If it's already undead, it can't become undead again.
if(GetHasTemplate(TEMPLATE_LICH, oPC) ||
GetHasTemplate(TEMPLATE_DEMILICH, oPC) ||
GetHasTemplate(TEMPLATE_CRYPTSPAWN, oPC) ||
GetLevelByClass(CLASS_TYPE_BAELNORN, oPC) > 0 ||
GetLevelByClass(CLASS_TYPE_LICH, oPC) > 0)
{
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_END);
}
}