More mutation test scripts
More mutation test scripts.
This commit is contained in:
parent
87f8946c50
commit
d05b6f5971
@ -5,7 +5,18 @@
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
/*
|
||||
Adaptation (Plant)
|
||||
The plant can adapt (become immune) to a particular attack form that has harmed it. On the round it is attacked, it must decide whether or not to begin the process of adaptation. It can drop a previous immunity to adapt to a new attack. The plant can have a total of two adapted immunities at any given time. It takes five days for the plant to complete the adaptation process. There are no restrictions to its activities during this time. For example, if it adapts to fire attacks, it grows a flame resistant bark. If it adapts to bludgeoning attacks, its surface becomes flexible and pliant. For the purposes of this mutation, physical attacks are divided into slashing, piercing and bludgeoning attacks; energy attacks into acid, cold, electricity, fire/heat, sonic/concussion and radiation - adaptation must be made to each individually. Gunshots are considered to be piercing attacks
|
||||
The plant can adapt (become immune) to a particular attack form that has harmed
|
||||
it. On the round it is attacked, it must decide whether or not to begin the
|
||||
process of adaptation. It can drop a previous immunity to adapt to a new attack.
|
||||
The plant can have a total of two adapted immunities at any given time. It takes
|
||||
five days for the plant to complete the adaptation process. There are no
|
||||
restrictions to its activities during this time. For example, if it adapts to
|
||||
fire attacks, it grows a flame resistant bark. If it adapts to bludgeoning
|
||||
attacks, its surface becomes flexible and pliant. For the purposes of this
|
||||
mutation, physical attacks are divided into slashing, piercing and bludgeoning
|
||||
attacks; energy attacks into acid, cold, electricity, fire/heat,
|
||||
sonic/concussion and radiation - adaptation must be made to each individually.
|
||||
Gunshots are considered to be piercing attacks
|
||||
|
||||
*/
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
|
Binary file not shown.
@ -4,7 +4,7 @@
|
||||
//:: Copyright (c) 2022 NWNDS
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
/*
|
||||
Adherence
|
||||
Adherence (Physical)
|
||||
Fine hooks or hairs on the mutant’s hands and feet allows him to climb easily
|
||||
or even cling to the ceiling. The character must have hands and feet uncovered
|
||||
to use this ability, and must be carrying no more than a medium load. The
|
||||
@ -26,9 +26,17 @@ void main()
|
||||
object oPC = OBJECT_SELF;
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_CONTINUE);
|
||||
|
||||
//:: Any living genotype except oozes, cyborgs & shapechangers
|
||||
//:: No pure strain humans, plants, oozes, cyborgs, shapechangers or non-living genotypes
|
||||
int nRace = MyPRCGetRacialType(oPC);
|
||||
if(nRace == RACIAL_TYPE_CONSTRUCT
|
||||
|| nRace == RACIAL_TYPE_PLANT
|
||||
|| nRace == RACIAL_TYPE_PSH
|
||||
|| nRace == RACIAL_TYPE_SHRUBO
|
||||
|| nRace == RACIAL_TYPE_BLOOM
|
||||
|| nRace == RACIAL_TYPE_MYCO
|
||||
|| nRace == RACIAL_TYPE_CULEN
|
||||
|| nRace == RACIAL_TYPE_ENT
|
||||
|| nRace == RACIAL_TYPE_CREEP
|
||||
|| nRace == RACIAL_TYPE_SMLBOT
|
||||
|| nRace == RACIAL_TYPE_MEDBOT
|
||||
|| nRace == RACIAL_TYPE_LRGBOT
|
||||
@ -40,7 +48,7 @@ void main()
|
||||
|| nRace == RACIAL_TYPE_UNDEAD)
|
||||
{
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_END);
|
||||
}
|
||||
}
|
||||
|
||||
//:: Can't get this mutation twice.
|
||||
if(GetHasTemplate(MUT_ADHERENCE, oPC))
|
||||
|
Binary file not shown.
@ -4,7 +4,7 @@
|
||||
//:: Copyright (c) 2022 NWNDS
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
/*
|
||||
Adrenaline Boost
|
||||
Adrenaline Boost (Physical)
|
||||
The Subject's adrenal gland starts to secrete a far more potent type of
|
||||
adrenaline, enabling them to react to threats faster. The mutant gains a +2 bonus
|
||||
on their initiative checks and a +1 bonus on her Reflex saves
|
||||
@ -25,10 +25,17 @@ void main()
|
||||
object oPC = OBJECT_SELF;
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_CONTINUE);
|
||||
|
||||
//:: Any living genotype except oozes, cyborgs & shapechangers
|
||||
//:: No pure strain humans, plants, oozes, cyborgs & shapechangers
|
||||
int nRace = MyPRCGetRacialType(oPC);
|
||||
|
||||
if(nRace == RACIAL_TYPE_CONSTRUCT
|
||||
|| nRace == RACIAL_TYPE_PLANT
|
||||
|| nRace == RACIAL_TYPE_PSH
|
||||
|| nRace == RACIAL_TYPE_SHRUBO
|
||||
|| nRace == RACIAL_TYPE_BLOOM
|
||||
|| nRace == RACIAL_TYPE_MYCO
|
||||
|| nRace == RACIAL_TYPE_CULEN
|
||||
|| nRace == RACIAL_TYPE_ENT
|
||||
|| nRace == RACIAL_TYPE_CREEP
|
||||
|| nRace == RACIAL_TYPE_SMLBOT
|
||||
|| nRace == RACIAL_TYPE_MEDBOT
|
||||
|| nRace == RACIAL_TYPE_LRGBOT
|
||||
@ -40,7 +47,7 @@ void main()
|
||||
|| nRace == RACIAL_TYPE_UNDEAD)
|
||||
{
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_END);
|
||||
}
|
||||
}
|
||||
|
||||
//:: Can't get this mutation twice.
|
||||
if(GetHasTemplate(MUT_ADRENALINE_BOOST, oPC))
|
||||
|
Binary file not shown.
@ -4,7 +4,7 @@
|
||||
//:: Copyright (c) 2022 NWNDS
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
/*
|
||||
Alteration
|
||||
Alteration (Physical)
|
||||
The subject can change his face with mere concentration. Bones, cartilage and
|
||||
flesh respond to a whim, as do skin and eye colour. Even the hairline can
|
||||
shift, and a beard can sprout or vanish within minutes
|
||||
@ -25,10 +25,17 @@ void main()
|
||||
object oPC = OBJECT_SELF;
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_CONTINUE);
|
||||
|
||||
//:: Any living genotype except oozes, cyborgs & shapechangers
|
||||
//:: No pure strain humans, plants, oozes, cyborgs & shapechangers
|
||||
int nRace = MyPRCGetRacialType(oPC);
|
||||
|
||||
if(nRace == RACIAL_TYPE_CONSTRUCT
|
||||
|| nRace == RACIAL_TYPE_PLANT
|
||||
|| nRace == RACIAL_TYPE_PSH
|
||||
|| nRace == RACIAL_TYPE_SHRUBO
|
||||
|| nRace == RACIAL_TYPE_BLOOM
|
||||
|| nRace == RACIAL_TYPE_MYCO
|
||||
|| nRace == RACIAL_TYPE_CULEN
|
||||
|| nRace == RACIAL_TYPE_ENT
|
||||
|| nRace == RACIAL_TYPE_CREEP
|
||||
|| nRace == RACIAL_TYPE_SMLBOT
|
||||
|| nRace == RACIAL_TYPE_MEDBOT
|
||||
|| nRace == RACIAL_TYPE_LRGBOT
|
||||
@ -40,7 +47,7 @@ void main()
|
||||
|| nRace == RACIAL_TYPE_UNDEAD)
|
||||
{
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_END);
|
||||
}
|
||||
}
|
||||
|
||||
//:: Can't get this mutation twice.
|
||||
if(GetHasTemplate(MUT_ALTERATION, oPC))
|
||||
|
Binary file not shown.
@ -4,9 +4,9 @@
|
||||
//:: Copyright (c) 2022 NWNDS
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
/*
|
||||
Body Control
|
||||
The mutant can temporarily enhance one of his physical ability scores. He
|
||||
chooses one attribute (Strength, Dexterity or Constitution) and increases it by
|
||||
Body Control (Physical)
|
||||
The mutant can temporarily enhance one of their physical ability scores. They
|
||||
chooses one attribute (Strength, Dexterity or Constitution) and increase it by
|
||||
1 + 1 / 5 HD.
|
||||
|
||||
Uses: 1 + HD / 3 uses per day.
|
||||
@ -30,9 +30,17 @@ void main()
|
||||
object oPC = OBJECT_SELF;
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_CONTINUE);
|
||||
|
||||
//:: Any living genotype except oozes, cyborgs & shapechangers
|
||||
//:: No pure strain humans, plants, oozes, cyborgs, shapechangers or non-living genotypes
|
||||
int nRace = MyPRCGetRacialType(oPC);
|
||||
if(nRace == RACIAL_TYPE_CONSTRUCT
|
||||
|| nRace == RACIAL_TYPE_PLANT
|
||||
|| nRace == RACIAL_TYPE_PSH
|
||||
|| nRace == RACIAL_TYPE_SHRUBO
|
||||
|| nRace == RACIAL_TYPE_BLOOM
|
||||
|| nRace == RACIAL_TYPE_MYCO
|
||||
|| nRace == RACIAL_TYPE_CULEN
|
||||
|| nRace == RACIAL_TYPE_ENT
|
||||
|| nRace == RACIAL_TYPE_CREEP
|
||||
|| nRace == RACIAL_TYPE_SMLBOT
|
||||
|| nRace == RACIAL_TYPE_MEDBOT
|
||||
|| nRace == RACIAL_TYPE_LRGBOT
|
||||
@ -47,7 +55,7 @@ void main()
|
||||
}
|
||||
|
||||
//:: Can't get this mutation twice.
|
||||
if(GetHasTemplate(MUT_ADHERENCE, oPC))
|
||||
if(GetHasTemplate(MUT_BODY_CONTROL, oPC))
|
||||
{
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_END);
|
||||
}
|
||||
|
Binary file not shown.
@ -1,19 +1,22 @@
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
//:: Name Adherence template test script
|
||||
//:: FileName tmp_t_adherence.nss
|
||||
//:: Name Chameleon template test script
|
||||
//:: FileName mut_t_chameleon.nss
|
||||
//:: Copyright (c) 2022 NWNDS
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
/*
|
||||
Adherence
|
||||
Fine hooks or hairs on the mutant’s hands and feet allows him to climb easily
|
||||
or even cling to the ceiling. The character must have hands and feet uncovered
|
||||
to use this ability, and must be carrying no more than a medium load. The
|
||||
mutant gains a +8 to Climb checks and a 4 to grapple checks.
|
||||
Chameleon (Physical / Plant)
|
||||
This mutation allows the character to blend into any background. His body
|
||||
coloration changes to match the colours of any background that is within three
|
||||
feet. Be aware that his clothes or other belongings do not change colour. His
|
||||
skin (or leaves) continuously change as the mutant moves. The mutant can decide
|
||||
to make his skin any single colour not related to his background, or can choose
|
||||
to look like his normal self. When chameleon power is activate, the character's
|
||||
gained a bonus to all Stealth skill checks equal to 5 + DEX modifier.
|
||||
|
||||
*/
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
//:: Created By: Jaysyn
|
||||
//:: Created On: 22/03/19
|
||||
//:: Created On: 22/03/20
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
@ -26,7 +29,7 @@ void main()
|
||||
object oPC = OBJECT_SELF;
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_CONTINUE);
|
||||
|
||||
//:: Any living genotype except oozes, cyborgs & shapechangers
|
||||
//:: Any living genotype except pure strain humans, oozes, cyborgs & shapechangers
|
||||
int nRace = MyPRCGetRacialType(oPC);
|
||||
if(nRace == RACIAL_TYPE_CONSTRUCT
|
||||
|| nRace == RACIAL_TYPE_SMLBOT
|
||||
@ -34,6 +37,7 @@ void main()
|
||||
|| nRace == RACIAL_TYPE_LRGBOT
|
||||
|| nRace == RACIAL_TYPE_DROID
|
||||
|| nRace == RACIAL_TYPE_OOZE
|
||||
|| nRace == RACIAL_TYPE_PSH
|
||||
|| nRace == RACIAL_TYPE_SHAPECHANGER
|
||||
|| nRace == RACIAL_TYPE_CYBORG
|
||||
|| nRace == RACIAL_TYPE_ELEMENTAL
|
||||
@ -43,7 +47,7 @@ void main()
|
||||
}
|
||||
|
||||
//:: Can't get this mutation twice.
|
||||
if(GetHasTemplate(MUT_ADHERENCE, oPC))
|
||||
if(GetHasTemplate(MUT_CHAMELEON, oPC))
|
||||
{
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_END);
|
||||
}
|
||||
|
BIN
_content/ga_scripts/mut_t_claws.ncs
Normal file
BIN
_content/ga_scripts/mut_t_claws.ncs
Normal file
Binary file not shown.
62
_content/ga_scripts/mut_t_claws.nss
Normal file
62
_content/ga_scripts/mut_t_claws.nss
Normal file
@ -0,0 +1,62 @@
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
//:: Name Claws template test script
|
||||
//:: FileName mut_t_claws.nss
|
||||
//:: Copyright (c) 2022 NWNDS
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
/*
|
||||
Claws (Physical)
|
||||
The mutant’s hands now have tough bony claws. Whether they sprout from
|
||||
fingertips, the back of the hand, or even the side of the hand is up to the
|
||||
player, as is their exact appearance. The character may now cause lethal damage
|
||||
with unarmed attacks, and is never considered unarmed. A medium size mutant
|
||||
causes 1d6 damage plus STR modifier, with a slashing & piercing attack. (1d4
|
||||
damage if small, 1d8 if large.)
|
||||
|
||||
*/
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
//:: Created By: Jaysyn
|
||||
//:: Created On: 22/03/20
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
#include "prc_alterations"
|
||||
#include "prc_inc_template"
|
||||
#include "prc_racial_const"
|
||||
|
||||
void main()
|
||||
{
|
||||
object oPC = OBJECT_SELF;
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_CONTINUE);
|
||||
|
||||
//:: No pure strain humans, plants, oozes, cyborgs & shapechangers
|
||||
int nRace = MyPRCGetRacialType(oPC);
|
||||
if(nRace == RACIAL_TYPE_CONSTRUCT
|
||||
|| nRace == RACIAL_TYPE_PLANT
|
||||
|| nRace == RACIAL_TYPE_PSH
|
||||
|| nRace == RACIAL_TYPE_SHRUBO
|
||||
|| nRace == RACIAL_TYPE_BLOOM
|
||||
|| nRace == RACIAL_TYPE_MYCO
|
||||
|| nRace == RACIAL_TYPE_CULEN
|
||||
|| nRace == RACIAL_TYPE_ENT
|
||||
|| nRace == RACIAL_TYPE_CREEP
|
||||
|| nRace == RACIAL_TYPE_SMLBOT
|
||||
|| nRace == RACIAL_TYPE_MEDBOT
|
||||
|| nRace == RACIAL_TYPE_LRGBOT
|
||||
|| nRace == RACIAL_TYPE_DROID
|
||||
|| nRace == RACIAL_TYPE_OOZE
|
||||
|| nRace == RACIAL_TYPE_SHAPECHANGER
|
||||
|| nRace == RACIAL_TYPE_CYBORG
|
||||
|| nRace == RACIAL_TYPE_ELEMENTAL
|
||||
|| nRace == RACIAL_TYPE_UNDEAD)
|
||||
|
||||
{
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_END);
|
||||
}
|
||||
|
||||
//:: Can't get this mutation twice.
|
||||
if(GetHasTemplate(MUT_CLAWS, oPC))
|
||||
{
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_END);
|
||||
}
|
||||
|
||||
}
|
BIN
_content/ga_scripts/mut_t_confusion.ncs
Normal file
BIN
_content/ga_scripts/mut_t_confusion.ncs
Normal file
Binary file not shown.
52
_content/ga_scripts/mut_t_confusion.nss
Normal file
52
_content/ga_scripts/mut_t_confusion.nss
Normal file
@ -0,0 +1,52 @@
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
//:: Name Confusion template test script
|
||||
//:: FileName mut_t_confusion.nss
|
||||
//:: Copyright (c) 2022 NWNDS
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
/*
|
||||
Confusion (Mental)
|
||||
A single living creature within range, targeted by this mutation makes a Will
|
||||
save, or is confused for 1d6 rounds + 1 round / 2 HD of the mutant. A confused
|
||||
target makes a d% roll each round to see what action they take. This power can
|
||||
be used a number of times per day equal to 3 plus WIS modifier.
|
||||
|
||||
*/
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
//:: Created By: Jaysyn
|
||||
//:: Created On: 22/03/20
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
#include "prc_alterations"
|
||||
#include "prc_inc_template"
|
||||
#include "prc_racial_const"
|
||||
|
||||
void main()
|
||||
{
|
||||
object oPC = OBJECT_SELF;
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_CONTINUE);
|
||||
|
||||
//:: Any living genotype except oozes, cyborgs & shapechangers
|
||||
int nRace = MyPRCGetRacialType(oPC);
|
||||
|
||||
if(nRace == RACIAL_TYPE_CONSTRUCT
|
||||
|| nRace == RACIAL_TYPE_SMLBOT
|
||||
|| nRace == RACIAL_TYPE_MEDBOT
|
||||
|| nRace == RACIAL_TYPE_LRGBOT
|
||||
|| nRace == RACIAL_TYPE_DROID
|
||||
|| nRace == RACIAL_TYPE_OOZE
|
||||
|| nRace == RACIAL_TYPE_SHAPECHANGER
|
||||
|| nRace == RACIAL_TYPE_CYBORG
|
||||
|| nRace == RACIAL_TYPE_ELEMENTAL
|
||||
|| nRace == RACIAL_TYPE_UNDEAD)
|
||||
{
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_END);
|
||||
}
|
||||
|
||||
//:: Can't get this mutation twice.
|
||||
if(GetHasTemplate(MUT_CONFUSION, oPC))
|
||||
{
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_END);
|
||||
}
|
||||
|
||||
}
|
BIN
_content/ga_scripts/mut_t_constrict.ncs
Normal file
BIN
_content/ga_scripts/mut_t_constrict.ncs
Normal file
Binary file not shown.
49
_content/ga_scripts/mut_t_constrict.nss
Normal file
49
_content/ga_scripts/mut_t_constrict.nss
Normal file
@ -0,0 +1,49 @@
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
//:: Name Constriction template test script
|
||||
//:: FileName mut_t_constrict.nss
|
||||
//:: Copyright (c) 2022 NWNDS
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
/*
|
||||
Constriction (Plant)
|
||||
The plant has branches, vines, or tendrils capable of grappling and constricting
|
||||
an opponent. The vines grant the plant a +6 to its grapple check & a slam
|
||||
attack of 1d4 damage if the plant does not already have one. Once it has
|
||||
grappled a target, it may add 1d6 damage each round it maintains the grapple.
|
||||
|
||||
*/
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
//:: Created By: Jaysyn
|
||||
//:: Created On: 22/03/20
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
#include "prc_alterations"
|
||||
#include "prc_inc_template"
|
||||
#include "prc_racial_const"
|
||||
|
||||
void main()
|
||||
{
|
||||
object oPC = OBJECT_SELF;
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_CONTINUE);
|
||||
|
||||
//:: Plants only
|
||||
int nRace = MyPRCGetRacialType(oPC);
|
||||
|
||||
if(nRace != RACIAL_TYPE_PLANT
|
||||
&& nRace != RACIAL_TYPE_SHRUBO
|
||||
&& nRace != RACIAL_TYPE_BLOOM
|
||||
&& nRace != RACIAL_TYPE_MYCO
|
||||
&& nRace != RACIAL_TYPE_CULEN
|
||||
&& nRace != RACIAL_TYPE_ENT
|
||||
&& nRace != RACIAL_TYPE_CREEP)
|
||||
{
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_END);
|
||||
}
|
||||
|
||||
//:: Can't get this mutation twice.
|
||||
if(GetHasTemplate(MUT_CONSTRICTION, oPC))
|
||||
{
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_END);
|
||||
}
|
||||
|
||||
}
|
BIN
_content/ga_scripts/mut_t_cryo.ncs
Normal file
BIN
_content/ga_scripts/mut_t_cryo.ncs
Normal file
Binary file not shown.
55
_content/ga_scripts/mut_t_cryo.nss
Normal file
55
_content/ga_scripts/mut_t_cryo.nss
Normal file
@ -0,0 +1,55 @@
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
//:: Name Cryokinesis template test script
|
||||
//:: FileName mut_t_cryo.nss
|
||||
//:: Copyright (c) 2022 NWNDS
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
/*
|
||||
Cryokensis (Mental)
|
||||
The mutant has the ability to greatly & rapidly reduce the ambient temperature in an area.
|
||||
|
||||
|
||||
|
||||
The long range power affects either an area with a 5’ radius, or a single small or medium sized target. If the target is a creature (or a held object) the mutant requires a successful mental touch attack. To activate the power is full-round action, and maintaining it is a standard action. Initially, the mutant heats (or cools) an area, causing 1d6 points of damage to anything within the target area. On each successive round pyrokinesis or cryokinesis causes an additional 1d6 of damage, up to a maximum of 6d6 damage. The mutant can maintain the power for a maximum of 3 + MPS modifier rounds. After that he cannot use it again for three hours. If he stops during the build-up of power, he cannot resume or reactivate the power. Mutants with pyro/cryokinesis take half damage from heat/cold damage (respectively). Once damage reaches 3d6, flammable materials will catch fire (pyrokinesis), or water will freeze (cyrokinesis). If pyro/cryokinesis is applied to an object, a creature continuing to hold the object will take damage as it heats or cools.
|
||||
|
||||
|
||||
|
||||
*/
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
//:: Created By: Jaysyn
|
||||
//:: Created On: 22/03/20
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
#include "prc_alterations"
|
||||
#include "prc_inc_template"
|
||||
#include "prc_racial_const"
|
||||
|
||||
void main()
|
||||
{
|
||||
object oPC = OBJECT_SELF;
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_CONTINUE);
|
||||
|
||||
//:: Any living genotype except oozes, cyborgs & shapechangers
|
||||
int nRace = MyPRCGetRacialType(oPC);
|
||||
|
||||
if(nRace == RACIAL_TYPE_CONSTRUCT
|
||||
|| nRace == RACIAL_TYPE_SMLBOT
|
||||
|| nRace == RACIAL_TYPE_MEDBOT
|
||||
|| nRace == RACIAL_TYPE_LRGBOT
|
||||
|| nRace == RACIAL_TYPE_DROID
|
||||
|| nRace == RACIAL_TYPE_OOZE
|
||||
|| nRace == RACIAL_TYPE_SHAPECHANGER
|
||||
|| nRace == RACIAL_TYPE_CYBORG
|
||||
|| nRace == RACIAL_TYPE_ELEMENTAL
|
||||
|| nRace == RACIAL_TYPE_UNDEAD)
|
||||
{
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_END);
|
||||
}
|
||||
|
||||
//:: Can't get this mutation twice.
|
||||
if(GetHasTemplate(MUT_CRYOKINESIS, oPC))
|
||||
{
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_END);
|
||||
}
|
||||
|
||||
}
|
BIN
_content/ga_scripts/mut_t_darkvision.ncs
Normal file
BIN
_content/ga_scripts/mut_t_darkvision.ncs
Normal file
Binary file not shown.
51
_content/ga_scripts/mut_t_darkvision.nss
Normal file
51
_content/ga_scripts/mut_t_darkvision.nss
Normal file
@ -0,0 +1,51 @@
|
||||
//::////////////////////////////////////////////////////////////////////////////
|
||||
//:: Name Darkvision template test script
|
||||
//:: FileName mut_t_darkvision.nss
|
||||
//:: Copyright (c) 2022 NWNDS
|
||||
//::////////////////////////////////////////////////////////////////////////////
|
||||
/*
|
||||
Darkvision (Physical / Plant)
|
||||
The character has an extraordinary ability to see in darkness without requiring
|
||||
a light source, such as at night or underground. Vision is black-and-white only.
|
||||
The presence of light does not spoil darkvision.
|
||||
|
||||
*/
|
||||
//::////////////////////////////////////////////////////////////////////////////
|
||||
//:: Created By: Jaysyn
|
||||
//:: Created On: 22/03/20
|
||||
//::////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
#include "prc_alterations"
|
||||
#include "prc_inc_template"
|
||||
#include "prc_racial_const"
|
||||
|
||||
void main()
|
||||
{
|
||||
object oPC = OBJECT_SELF;
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_CONTINUE);
|
||||
|
||||
//:: Any living genotype except pure strain humans, oozes, cyborgs & shapechangers
|
||||
int nRace = MyPRCGetRacialType(oPC);
|
||||
if(nRace == RACIAL_TYPE_CONSTRUCT
|
||||
|| nRace == RACIAL_TYPE_SMLBOT
|
||||
|| nRace == RACIAL_TYPE_MEDBOT
|
||||
|| nRace == RACIAL_TYPE_LRGBOT
|
||||
|| nRace == RACIAL_TYPE_DROID
|
||||
|| nRace == RACIAL_TYPE_OOZE
|
||||
|| nRace == RACIAL_TYPE_PSH
|
||||
|| nRace == RACIAL_TYPE_SHAPECHANGER
|
||||
|| nRace == RACIAL_TYPE_CYBORG
|
||||
|| nRace == RACIAL_TYPE_ELEMENTAL
|
||||
|| nRace == RACIAL_TYPE_UNDEAD)
|
||||
{
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_END);
|
||||
}
|
||||
|
||||
//:: Can't get this mutation twice.
|
||||
if(GetHasTemplate(MUT_DARKVISION, oPC))
|
||||
{
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_END);
|
||||
}
|
||||
|
||||
}
|
BIN
_content/ga_scripts/mut_t_deathfield.ncs
Normal file
BIN
_content/ga_scripts/mut_t_deathfield.ncs
Normal file
Binary file not shown.
53
_content/ga_scripts/mut_t_deathfield.nss
Normal file
53
_content/ga_scripts/mut_t_deathfield.nss
Normal file
@ -0,0 +1,53 @@
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
//:: Name Death Field template test script
|
||||
//:: FileName mut_t_deathfield.nss
|
||||
//:: Copyright (c) 2022 NWNDS
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
/*
|
||||
Death-field (Mental)
|
||||
The mutant can harm all living things within 20 feet. When activated any living
|
||||
creature in range takes 2d6 lethal radiation damage plus CON modifier, each
|
||||
round. Once activated, it can be kept active as a swift action. The mutant
|
||||
takes half of this damage as non-lethal damage. This non-lethal damage is
|
||||
healed at a rate of 1 hit point per hour per character level.
|
||||
|
||||
*/
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
//:: Created By: Jaysyn
|
||||
//:: Created On: 22/03/20
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
#include "prc_alterations"
|
||||
#include "prc_inc_template"
|
||||
#include "prc_racial_const"
|
||||
|
||||
void main()
|
||||
{
|
||||
object oPC = OBJECT_SELF;
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_CONTINUE);
|
||||
|
||||
//:: Any living genotype except oozes, cyborgs & shapechangers
|
||||
int nRace = MyPRCGetRacialType(oPC);
|
||||
|
||||
if(nRace == RACIAL_TYPE_CONSTRUCT
|
||||
|| nRace == RACIAL_TYPE_SMLBOT
|
||||
|| nRace == RACIAL_TYPE_MEDBOT
|
||||
|| nRace == RACIAL_TYPE_LRGBOT
|
||||
|| nRace == RACIAL_TYPE_DROID
|
||||
|| nRace == RACIAL_TYPE_OOZE
|
||||
|| nRace == RACIAL_TYPE_SHAPECHANGER
|
||||
|| nRace == RACIAL_TYPE_CYBORG
|
||||
|| nRace == RACIAL_TYPE_ELEMENTAL
|
||||
|| nRace == RACIAL_TYPE_UNDEAD)
|
||||
{
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_END);
|
||||
}
|
||||
|
||||
//:: Can't get this mutation twice.
|
||||
if(GetHasTemplate(MUT_DEATH_FIELD_GENERATION, oPC))
|
||||
{
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_END);
|
||||
}
|
||||
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user