PRC8/nwn/nwnprc/trunk/scripts/tmp_t_blooded.nss
Jaysyn904 6ec137a24e 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.
2024-02-11 14:01:05 -05:00

27 lines
1.3 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//::///////////////////////////////////////////////
//:: Name Blooded One template test script
//:: FileName tmp_t_blooded
//::
//:://////////////////////////////////////////////
/*“Blooded” is a template that can be added to any humanoid (referred to hereafter as the “base creature”). It uses all the base creatures statistics and special abilities, except as listed here.
AC: Natural armor improves by +2.
Special Attacks: A blooded one retains all the special attacks of the base creature, and also gains the following special attack.
War Cry (Ex): Once per day, a blooded one can scream a special war cry. This causes all blooded ones within 30 feet (including itself) to gain a +1 morale bonus on all attack and damage rolls for 2d4 rounds.
This effect does not stack with other war cries.
Abilities: Adjust from the base creature as follows: Str +2, Con +4, Int 2.
Feats: Same as the base creature, except that a blooded one gains Combat Reflexes.
Level Adjustment: Same as the base creature +1.
*/
#include "prc_inc_template"
void main()
{
object oPC = OBJECT_SELF;
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_CONTINUE);
// Humanoid only
if(!PRCAmIAHumanoid(oPC))
{
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_END);
}
}