Mutation test scripts wrap-up
Mutation test scripts wrap-up. First batch of mutation test scripts is complete.
This commit is contained in:
parent
1428878101
commit
733c662a71
BIN
_content/ga_scripts/mut_t_ch_large.ncs
Normal file
BIN
_content/ga_scripts/mut_t_ch_large.ncs
Normal file
Binary file not shown.
60
_content/ga_scripts/mut_t_ch_large.nss
Normal file
60
_content/ga_scripts/mut_t_ch_large.nss
Normal file
@ -0,0 +1,60 @@
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
//:: Name Size Change, Large template test script
|
||||
//:: FileName mut_t_ch_large.nss
|
||||
//:: Copyright (c) 2022 NWNDS
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
/*
|
||||
Size Change, Large (Physical)
|
||||
The mutant is able to increase his size a single category at will.
|
||||
|
||||
|
||||
[Increase size -1 AC, -1 Attack, -4 Stealth. (7’ - 13’ high.), speed doesn't change]
|
||||
|
||||
|
||||
*/
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
//:: Created By: Jaysyn
|
||||
//:: Created On: 22/03/22
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
#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 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
|
||||
|| 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_SIZE_CHANGE_LARGE, oPC))
|
||||
{
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_END);
|
||||
}
|
||||
|
||||
}
|
BIN
_content/ga_scripts/mut_t_ch_small.ncs
Normal file
BIN
_content/ga_scripts/mut_t_ch_small.ncs
Normal file
Binary file not shown.
60
_content/ga_scripts/mut_t_ch_small.nss
Normal file
60
_content/ga_scripts/mut_t_ch_small.nss
Normal file
@ -0,0 +1,60 @@
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
//:: Name Size Change, Small template test script
|
||||
//:: FileName mut_t_ch_small.nss
|
||||
//:: Copyright (c) 2022 NWNDS
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
/*
|
||||
Size Change, Small (Physical)
|
||||
The mutant is able to decrease his size a single category at will.
|
||||
|
||||
|
||||
[Decrease Size, +1 AC, +1 Attack, +4 Stealth. (Less than 4’ 6” high.), speed doesn't change]
|
||||
|
||||
|
||||
*/
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
//:: Created By: Jaysyn
|
||||
//:: Created On: 22/03/22
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
#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 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
|
||||
|| 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_SIZE_CHANGE_SMALL, oPC))
|
||||
{
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_END);
|
||||
}
|
||||
|
||||
}
|
BIN
_content/ga_scripts/mut_t_photoskin.ncs
Normal file
BIN
_content/ga_scripts/mut_t_photoskin.ncs
Normal file
Binary file not shown.
61
_content/ga_scripts/mut_t_photoskin.nss
Normal file
61
_content/ga_scripts/mut_t_photoskin.nss
Normal file
@ -0,0 +1,61 @@
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
//:: Name Photosynthetic Skin template test script
|
||||
//:: FileName mut_t_photoskin.nss
|
||||
//:: Copyright (c) 2022 NWNDS
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
/*
|
||||
Photosynthetic Skin (Physical)
|
||||
The mutant does not need to eat if he spends at least three hours a day in sunlight (six hours in dim light). He can be moving and
|
||||
taking normal actions during this time. He still needs to drink normal amounts of water. For each hour spent in the sun, he heals 1d6 hit
|
||||
points of damage.
|
||||
|
||||
|
||||
[Heals 1d6 HP / hour in outside + daytime. Doesn't need food.]
|
||||
|
||||
*/
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
//:: Created By: Jaysyn
|
||||
//:: Created On: 22/03/22
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
#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 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
|
||||
|| 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_PHOTOSYNTHETIC_SKIN, oPC))
|
||||
{
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_END);
|
||||
}
|
||||
|
||||
}
|
BIN
_content/ga_scripts/mut_t_poison.ncs
Normal file
BIN
_content/ga_scripts/mut_t_poison.ncs
Normal file
Binary file not shown.
56
_content/ga_scripts/mut_t_poison.nss
Normal file
56
_content/ga_scripts/mut_t_poison.nss
Normal file
@ -0,0 +1,56 @@
|
||||
//::////////////////////////////////////////////////////////////////////////////
|
||||
//:: Name Poison template test script
|
||||
//:: FileName mut_t_poison.nss
|
||||
//:: Copyright (c) 2022 NWNDS
|
||||
//::////////////////////////////////////////////////////////////////////////////
|
||||
/*
|
||||
Poison (Physical / Plant)
|
||||
The mutant can generate a poison that is delivered by a natural attack, such as a bite, claws, horns, spit, sting, etc. The mutant can
|
||||
store enough poison for three successful attacks. It takes three hours to regenerate one dose. The mutant is immune to his own
|
||||
poison, and gains a +2 bonus on Health saves vs poison. The damage caused is either to Strength, Constitution or Dexterity,
|
||||
determined randomly.
|
||||
|
||||
Type: Injury; Save: Health DC10 plus half the mutant’s level plus MPS modifier. Onset: 1 round; Frequency: 1/round for 4 rounds;
|
||||
Effect: 1d4 damage; Cure: 2 consecutive saves.
|
||||
|
||||
|
||||
*/
|
||||
//::////////////////////////////////////////////////////////////////////////////
|
||||
//:: Created By: Jaysyn
|
||||
//:: Created On: 22/03/22
|
||||
//::////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
#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_POISON, oPC))
|
||||
{
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_END);
|
||||
}
|
||||
|
||||
}
|
BIN
_content/ga_scripts/mut_t_probshift.ncs
Normal file
BIN
_content/ga_scripts/mut_t_probshift.ncs
Normal file
Binary file not shown.
54
_content/ga_scripts/mut_t_probshift.nss
Normal file
54
_content/ga_scripts/mut_t_probshift.nss
Normal file
@ -0,0 +1,54 @@
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
//:: Name Probability Shift template test script
|
||||
//:: FileName mut_t_probshift.nss
|
||||
//:: Copyright (c) 2022 NWNDS
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
/*
|
||||
Probability Shift (Mental)
|
||||
The mutant is able to adjust the laws of probability. The mutant gains a pool of 5 points + 1 per MPS modifier that can be used to add
|
||||
to any ability or skill checks, saving throw, or attack roll that he makes each day. The power is activated as a swift action, and must be
|
||||
declared before the die roll is made. He cannot add more than 2 points to any roll.
|
||||
|
||||
Swift action to add +2 to all rolls for 3 + WIS Bonus rounds, 1 + WIS Bonus uses / day
|
||||
|
||||
|
||||
*/
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
//:: Created By: Jaysyn
|
||||
//:: Created On: 22/03/22
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
#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_PROBABILITY_SHIFT, oPC))
|
||||
{
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_END);
|
||||
}
|
||||
|
||||
}
|
BIN
_content/ga_scripts/mut_t_pthorns.ncs
Normal file
BIN
_content/ga_scripts/mut_t_pthorns.ncs
Normal file
Binary file not shown.
51
_content/ga_scripts/mut_t_pthorns.nss
Normal file
51
_content/ga_scripts/mut_t_pthorns.nss
Normal file
@ -0,0 +1,51 @@
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
//:: Name Poisonous Thorns template test script
|
||||
//:: FileName mut_t_pthorns.nss
|
||||
//:: Copyright (c) 2022 NWNDS
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
/*
|
||||
Poisonous Thorns (Plant)
|
||||
The plant's body is covered with small thorns. Anyone making strong contact with the plant (grappling, or a successful attack with a
|
||||
natural or light weapon) is scratched if they have less than a +5 armour or natural armour bonus. The thorns are coated in a poisonous
|
||||
dew that is constantly secreted, but dries out quickly, making it impractical to transfer the poison to weapons or to try and store it. The
|
||||
damage caused is either to Strength, Constitution or Dexterity, determined randomly. Type: injury; Save Health DC10 plus half the
|
||||
mutant’s level plus MPS modifier. Onset 1 round; Frequency 1/round for 4 rounds; Effect 1d4 damage; Cure 2 consecutive saves.
|
||||
|
||||
[OnHit poison from natural attacks & light weapons, DC = 10 + 1/2 HD + CON Bonus, Damage 1d4 CON, DEX or STR determined randomly]
|
||||
|
||||
*/
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
//:: Created By: Jaysyn
|
||||
//:: Created On: 22/03/22
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
#include "prc_alterations"
|
||||
#include "prc_inc_template"
|
||||
|
||||
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_POISONOUS_THORNS, oPC))
|
||||
{
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_END);
|
||||
}
|
||||
|
||||
}
|
BIN
_content/ga_scripts/mut_t_pyro.ncs
Normal file
BIN
_content/ga_scripts/mut_t_pyro.ncs
Normal file
Binary file not shown.
55
_content/ga_scripts/mut_t_pyro.nss
Normal file
55
_content/ga_scripts/mut_t_pyro.nss
Normal file
@ -0,0 +1,55 @@
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
//:: Name Pyrokinesis template test script
|
||||
//:: FileName mut_t_pyro.nss
|
||||
//:: Copyright (c) 2022 NWNDS
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
/*
|
||||
Pyrokinesis (Mental)
|
||||
The mutant has the ability to greatly & rapidly raise 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.
|
||||
|
||||
[50% Fire damage; See Notes]
|
||||
|
||||
|
||||
*/
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
//:: Created By: Jaysyn
|
||||
//:: Created On: 22/03/22
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
#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_PYROKINESIS, oPC))
|
||||
{
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_END);
|
||||
}
|
||||
|
||||
}
|
BIN
_content/ga_scripts/mut_t_quills.ncs
Normal file
BIN
_content/ga_scripts/mut_t_quills.ncs
Normal file
Binary file not shown.
61
_content/ga_scripts/mut_t_quills.nss
Normal file
61
_content/ga_scripts/mut_t_quills.nss
Normal file
@ -0,0 +1,61 @@
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
//:: Name Quills template test script
|
||||
//:: FileName mut_t_quills.nss
|
||||
//:: Copyright (c) 2022 NWNDS
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
/*
|
||||
Quills (Physical)
|
||||
The mutant can fire 1d4 quills as a ranged attack using the small, pressurized air sacs at the base of each. Each quill does 1d4
|
||||
damage (if small or medium sized) and has a range increment of 10 feet. (1d6 damage if large.) Multiple opponents can be targeted,
|
||||
but they must all be within 15’ of each other. The mutant can only fire a volley of quills every three rounds.
|
||||
|
||||
|
||||
[Quillfire, but a ranged touch, every 3 rounds]
|
||||
|
||||
*/
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
//:: Created By: Jaysyn
|
||||
//:: Created On: 22/03/22
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
#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 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
|
||||
|| 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_QUILLS, oPC))
|
||||
{
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_END);
|
||||
}
|
||||
|
||||
}
|
BIN
_content/ga_scripts/mut_t_radeyes.ncs
Normal file
BIN
_content/ga_scripts/mut_t_radeyes.ncs
Normal file
Binary file not shown.
63
_content/ga_scripts/mut_t_radeyes.nss
Normal file
63
_content/ga_scripts/mut_t_radeyes.nss
Normal file
@ -0,0 +1,63 @@
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
//:: Name Radiating Eyes template test script
|
||||
//:: FileName mut_t_radeyes.nss
|
||||
//:: Copyright (c) 2022 NWNDS
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
/*
|
||||
Radiating Eyes (Physical)
|
||||
The mutant has the ability to project a beam of radiation through its eyes, up to a range of 25 feet plus 5 feet per MPS modifier. If the
|
||||
mutant makes a successful ranged touch attack, a target suffers 2d6 radiation damage and must make a Health save or be sickened
|
||||
for a number of rounds equal to 5 +MPS modifier. The DC is equal to 10 + MPS mod + ½ level. (This damage cannot cause mutations,
|
||||
and only results in temporary radiation sickness.) The power can be used a number of times a day equal to 2 + MPS modifier. The
|
||||
mutant gains a +4 bonus to Health saves vs radiation, and their eyes always have a faint glow.
|
||||
|
||||
|
||||
[Medium ranged touch attack, 2d6 Radiation + Sickened DC: 10 + 1/2 HD + CON, 2 + CON Bonus uses / day, +4 Saves vs. Radiation (negative energy)]
|
||||
|
||||
*/
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
//:: Created By: Jaysyn
|
||||
//:: Created On: 22/03/22
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
#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 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
|
||||
|| 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_RADIATING_EYES, oPC))
|
||||
{
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_END);
|
||||
}
|
||||
|
||||
}
|
BIN
_content/ga_scripts/mut_t_razorleaf.ncs
Normal file
BIN
_content/ga_scripts/mut_t_razorleaf.ncs
Normal file
Binary file not shown.
50
_content/ga_scripts/mut_t_razorleaf.nss
Normal file
50
_content/ga_scripts/mut_t_razorleaf.nss
Normal file
@ -0,0 +1,50 @@
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
//:: Name Razor-Edged Leaves template test script
|
||||
//:: FileName mut_t_razorleaf.nss
|
||||
//:: Copyright (c) 2022 NWNDS
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
/*
|
||||
Razor-Edged Leaves (Plant)
|
||||
The plant's surface is covered in dangerous leaves. They look normal and safe, but each has a serrated edge that can cut and tear soft
|
||||
materials. If the plant has a natural attack, it gains an additional +1d6 slashing damage. Any creature grappling the plant takes 2d6
|
||||
damage each round from the leaves. Anyone striking the plant with an unarmed or natural attack suffers 1d6 points of damage, unless
|
||||
they succeed on a DC20 Reflex save.
|
||||
|
||||
[As Spines, but slashing damage.]
|
||||
|
||||
*/
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
//:: Created By: Jaysyn
|
||||
//:: Created On: 22/03/22
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
#include "prc_alterations"
|
||||
#include "prc_inc_template"
|
||||
|
||||
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_RAZOR_EDGED_LEAVES, oPC))
|
||||
{
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_END);
|
||||
}
|
||||
|
||||
}
|
BIN
_content/ga_scripts/mut_t_repulsion.ncs
Normal file
BIN
_content/ga_scripts/mut_t_repulsion.ncs
Normal file
Binary file not shown.
57
_content/ga_scripts/mut_t_repulsion.nss
Normal file
57
_content/ga_scripts/mut_t_repulsion.nss
Normal file
@ -0,0 +1,57 @@
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
//:: Name Repulsion template test script
|
||||
//:: FileName mut_t_repulsion.nss
|
||||
//:: Copyright (c) 2022 NWNDS
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
/*
|
||||
Repulsion (Mental)
|
||||
The mutant has the ability to project a beam of force that attempts to repulse all things along a line from the mutant. The line extends
|
||||
up to 20 feet, plus 5 feet per MPS modifier. All creatures (and unattended objects) not more than one size category larger than the
|
||||
mutant are subjected to a bull rush. A roll of 1d20 + BA + MS mod + MPS mod (instead of the mutant’s CMB), is compared against the
|
||||
CMD of each opponent. If the “attack” is successful, a target is pushed back 5 feet. For every 5 by which the attack exceeds the
|
||||
opponent’s CMD, the target is pushed back an additional 5 feet. Any opponent that strikes a solid object (or is hit by one) takes 1d6
|
||||
non-lethal damage per 10’ of movement. The power can be used a number of times a day equal to 3 + MPS modifier
|
||||
|
||||
|
||||
[Ranged Bull Rush, see notes]
|
||||
|
||||
*/
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
//:: Created By: Jaysyn
|
||||
//:: Created On: 22/03/22
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
#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_REPULSION, oPC))
|
||||
{
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_END);
|
||||
}
|
||||
|
||||
}
|
BIN
_content/ga_scripts/mut_t_shapechng.ncs
Normal file
BIN
_content/ga_scripts/mut_t_shapechng.ncs
Normal file
Binary file not shown.
58
_content/ga_scripts/mut_t_shapechng.nss
Normal file
58
_content/ga_scripts/mut_t_shapechng.nss
Normal file
@ -0,0 +1,58 @@
|
||||
//::////////////////////////////////////////////////////////////////////////////
|
||||
//:: Name Shapechange template test script
|
||||
//:: FileName mut_t_shapechng.nss
|
||||
//:: Copyright (c) 2022 NWNDS
|
||||
//::////////////////////////////////////////////////////////////////////////////
|
||||
/*
|
||||
Shapechange (Physical / Plant)
|
||||
The mutant is able to assume the form of any living creature (PSH, altered human, new animal or plant) of his size category that he has
|
||||
seen. If the form has any of the following abilities, you gain that ability: climb, fly, swim, natural attack. The mutant does not get any
|
||||
special abilities of the creature he imitates. For example, he can duplicate quills, but is not able to fire them. He can fly, but not do fancy
|
||||
aerial maneuvers. The character retains his attributes, saving throws, attack and skill bonuses, as well as physical and mental
|
||||
mutations not affected by the change. Clothing or equipment is never affected or duplicated. The change lasts for 20 minutes +5
|
||||
min/MPS modifier. Afterward the mutant can't shape change for another three hours.
|
||||
|
||||
|
||||
As Metamrophosis but ranged, 20 + WIS Bonus * 5 minutes & can only use every 3 hours.
|
||||
|
||||
|
||||
*/
|
||||
//::////////////////////////////////////////////////////////////////////////////
|
||||
//:: Created By: Jaysyn
|
||||
//:: Created On: 22/03/22
|
||||
//::////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
#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_SHAPECHANGE, oPC))
|
||||
{
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_END);
|
||||
}
|
||||
|
||||
}
|
BIN
_content/ga_scripts/mut_t_silkglands.ncs
Normal file
BIN
_content/ga_scripts/mut_t_silkglands.ncs
Normal file
Binary file not shown.
65
_content/ga_scripts/mut_t_silkglands.nss
Normal file
65
_content/ga_scripts/mut_t_silkglands.nss
Normal file
@ -0,0 +1,65 @@
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
//:: Name Silk Glands template test script
|
||||
//:: FileName mut_t_silkglands.nss
|
||||
//:: Copyright (c) 2022 NWNDS
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
/*
|
||||
Silk Glands (Physical)
|
||||
This mutation causes the mutant to generate a substance similar to spider silk within their body, which can be spun - creating durable
|
||||
strands that can be shaped at will. The mutant produces thin and silvery yet extremely strong filaments. The character becomes
|
||||
capable of spinning two types of silk - sticky and non-sticky strands.
|
||||
The former is used to spin webs that can catch and trap unwary enemies, and the latter is particularly useful for descending great
|
||||
distances, constructing barriers, or simply spinning out extremely lightweight and durable rope. In both cases, the strands have 14 hit
|
||||
points and a break DC of 30
|
||||
|
||||
|
||||
[Web (3+ HD / 5 uses per day) / Immunity to Web / Silk Creation]
|
||||
|
||||
|
||||
*/
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
//:: Created By: Jaysyn
|
||||
//:: Created On: 22/03/22
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
#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 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
|
||||
|| 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_SILK_GLANDS, oPC))
|
||||
{
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_END);
|
||||
}
|
||||
|
||||
}
|
BIN
_content/ga_scripts/mut_t_skelenhc.ncs
Normal file
BIN
_content/ga_scripts/mut_t_skelenhc.ncs
Normal file
Binary file not shown.
60
_content/ga_scripts/mut_t_skelenhc.nss
Normal file
60
_content/ga_scripts/mut_t_skelenhc.nss
Normal file
@ -0,0 +1,60 @@
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
//:: Name Skeletal Enhancement template test script
|
||||
//:: FileName mut_t_skelenhc.nss
|
||||
//:: Copyright (c) 2022 NWNDS
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
/*
|
||||
Skeletal Enhancement (Physical)
|
||||
The mutant's skeleton is far stronger than normal. He takes only half damage from bludgeoning weapons and falling damage
|
||||
|
||||
|
||||
[1/2 damage from falling & blunt damage.]
|
||||
|
||||
|
||||
*/
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
//:: Created By: Jaysyn
|
||||
//:: Created On: 22/03/22
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
#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 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
|
||||
|| 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_SKELETAL_ENHANCEMENT, oPC))
|
||||
{
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_END);
|
||||
}
|
||||
|
||||
}
|
BIN
_content/ga_scripts/mut_t_smokecld.ncs
Normal file
BIN
_content/ga_scripts/mut_t_smokecld.ncs
Normal file
Binary file not shown.
66
_content/ga_scripts/mut_t_smokecld.nss
Normal file
66
_content/ga_scripts/mut_t_smokecld.nss
Normal file
@ -0,0 +1,66 @@
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
//:: Name Smoke Cloud template test script
|
||||
//:: FileName mut_t_smokecld.nss
|
||||
//:: Copyright (c) 2022 NWNDS
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
/*
|
||||
Smoke Cloud (Physical)
|
||||
The mutant is able to produce a cloud of black, oily smoke, effectively blinding everyone within. The cloud instantly engulfs everything
|
||||
around the mutant within a radius of 15 feet + 5’ per MPS modifier, and remains in effect for 2 rounds + 1 round per MPS mod, after
|
||||
which it disappears almost instantly. The cloud blocks light in its confines, granting the mutant (and everyone else in the cloud) total
|
||||
concealment. The mutant cannot see in her own ink cloud, but she is immune to attacks of opportunity made within the cloud except
|
||||
from opponents who can somehow see within the cloud or can use a sense other than sight for targeting. The power requires an hour
|
||||
before it can be used again.
|
||||
|
||||
|
||||
[15' + CON Bonus *5 radius oily smoke blinds & grants total concealment. Mutant gets Spring Attack while in cloud.]
|
||||
|
||||
|
||||
|
||||
*/
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
//:: Created By: Jaysyn
|
||||
//:: Created On: 22/03/22
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
#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 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
|
||||
|| 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_SMOKE_CLOUD, oPC))
|
||||
{
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_END);
|
||||
}
|
||||
|
||||
}
|
BIN
_content/ga_scripts/mut_t_sonblast.ncs
Normal file
BIN
_content/ga_scripts/mut_t_sonblast.ncs
Normal file
Binary file not shown.
57
_content/ga_scripts/mut_t_sonblast.nss
Normal file
57
_content/ga_scripts/mut_t_sonblast.nss
Normal file
@ -0,0 +1,57 @@
|
||||
//::////////////////////////////////////////////////////////////////////////////
|
||||
//:: Name Sonic Blast template test script
|
||||
//:: FileName mut_t_sonblast.nss
|
||||
//:: Copyright (c) 2022 NWNDS
|
||||
//::////////////////////////////////////////////////////////////////////////////
|
||||
/*
|
||||
Sonic Blast (Physical / Plant)
|
||||
The character is able to project a beam of focused sub-sonic sound, as a ranged touch attack. It does 2d6 + MPS modifier of sonic
|
||||
damage. Maximum range is 20 feet plus 5’ per MPS mod. Fragile or brittle objects, such as glass, which fall within the area of effect,
|
||||
are likely to break or shatter. (Subject to GM decision.) The mutant can use this attack a number of times a day equal to 5 + MPS
|
||||
modifier. The character takes half damage from sonic and concussion attacks
|
||||
|
||||
|
||||
[Resist 50% Concussion (sonic) damage, 2d6 + STR Bonus concussion damage in a 20' + STR Bonus range cone, usable 5 + CON Bonus / day]
|
||||
|
||||
|
||||
|
||||
*/
|
||||
//::////////////////////////////////////////////////////////////////////////////
|
||||
//:: Created By: Jaysyn
|
||||
//:: Created On: 22/03/22
|
||||
//::////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
#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_SONIC_BLAST, oPC))
|
||||
{
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_END);
|
||||
}
|
||||
|
||||
}
|
BIN
_content/ga_scripts/mut_t_sonscream.ncs
Normal file
BIN
_content/ga_scripts/mut_t_sonscream.ncs
Normal file
Binary file not shown.
57
_content/ga_scripts/mut_t_sonscream.nss
Normal file
57
_content/ga_scripts/mut_t_sonscream.nss
Normal file
@ -0,0 +1,57 @@
|
||||
//::////////////////////////////////////////////////////////////////////////////
|
||||
//:: Name Sonic Scream template test script
|
||||
//:: FileName mut_t_sonscream.nss
|
||||
//:: Copyright (c) 2022 NWNDS
|
||||
//::////////////////////////////////////////////////////////////////////////////
|
||||
/*
|
||||
Sonic Scream (Physical / Plant)
|
||||
The character is able to project a beam of focused sub-sonic sound, as a ranged touch attack. It does 2d6 + MPS modifier of sonic
|
||||
damage. Maximum range is 20 feet plus 5’ per MPS mod. Fragile or brittle objects, such as glass, which fall within the area of effect,
|
||||
are likely to break or shatter. (Subject to GM decision.) The mutant can use this attack a number of times a day equal to 5 + MPS
|
||||
modifier. The character takes half damage from sonic and concussion attacks
|
||||
|
||||
|
||||
[Resist 50% Concussion (sonic) damage, 2d6 + STR Bonus concussion damage in a 20' + STR Bonus range cone, usable 5 + CON Bonus / day]
|
||||
|
||||
|
||||
|
||||
*/
|
||||
//::////////////////////////////////////////////////////////////////////////////
|
||||
//:: Created By: Jaysyn
|
||||
//:: Created On: 22/03/22
|
||||
//::////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
#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_SONIC_SCREAM, oPC))
|
||||
{
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_END);
|
||||
}
|
||||
|
||||
}
|
BIN
_content/ga_scripts/mut_t_spines.ncs
Normal file
BIN
_content/ga_scripts/mut_t_spines.ncs
Normal file
Binary file not shown.
62
_content/ga_scripts/mut_t_spines.nss
Normal file
62
_content/ga_scripts/mut_t_spines.nss
Normal file
@ -0,0 +1,62 @@
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
//:: Name Spines template test script
|
||||
//:: FileName mut_t_spines.nss
|
||||
//:: Copyright (c) 2022 NWNDS
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
/*
|
||||
Spines (Physical)
|
||||
Spines cannot be fired, but make the mutant a formidable unarmed combatant. In unarmed combat, he adds 1d6 piercing damage to
|
||||
any successful strike, if small or medium sized. (1d8 if large.) When struck by an unarmed opponent (or one using a natural attack), the
|
||||
opponent must make a DC 15 Reflex save or suffer 1d6 damage. If grappled, the opponent must make a DC 20 Reflex save or suffer
|
||||
1d6 damage.
|
||||
|
||||
[Adds 1d6 Piercing to all natural attacks, 1d6 piercing damage DC:15 Reflex when hit & 1d6 piercing damage DC:20 in a grapple.]
|
||||
|
||||
|
||||
*/
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
//:: Created By: Jaysyn
|
||||
//:: Created On: 22/03/22
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
#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 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
|
||||
|| 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_SPINES, oPC))
|
||||
{
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_END);
|
||||
}
|
||||
|
||||
}
|
BIN
_content/ga_scripts/mut_t_stunforce.ncs
Normal file
BIN
_content/ga_scripts/mut_t_stunforce.ncs
Normal file
Binary file not shown.
54
_content/ga_scripts/mut_t_stunforce.nss
Normal file
54
_content/ga_scripts/mut_t_stunforce.nss
Normal file
@ -0,0 +1,54 @@
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
//:: Name Stunning Force template test script
|
||||
//:: FileName mut_t_stunforce.nss
|
||||
//:: Copyright (c) 2022 NWNDS
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
/*
|
||||
Stunning Force (Mental)
|
||||
The character releases a mental blast of force in a cone-shaped burst. The range is 25 feet +5 feet per MPS modifier. All living
|
||||
creatures in the area of effect that fail a Mental Defence save are staggered for 1d6 rounds. Once he has used this power, the mutant
|
||||
cannot use it again for three hours.
|
||||
|
||||
|
||||
[Stagger 1d6 + WIS Bonus rounds all in 25' + WIS Bonus *5 range cone if fail 10 + 1/2 HD + WIS Bonus Will save, usable every 3 hours.]
|
||||
|
||||
*/
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
//:: Created By: Jaysyn
|
||||
//:: Created On: 22/03/22
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
#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_STUNNING_FORCE, oPC))
|
||||
{
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_END);
|
||||
}
|
||||
|
||||
}
|
BIN
_content/ga_scripts/mut_t_teleport.ncs
Normal file
BIN
_content/ga_scripts/mut_t_teleport.ncs
Normal file
Binary file not shown.
55
_content/ga_scripts/mut_t_teleport.nss
Normal file
55
_content/ga_scripts/mut_t_teleport.nss
Normal file
@ -0,0 +1,55 @@
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
//:: Name Teleportation template test script
|
||||
//:: FileName mut_t_teleport.nss
|
||||
//:: Copyright (c) 2022 NWNDS
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
/*
|
||||
Teleportation (Mental)
|
||||
Similar to telekinesis, this power allows the mutant to manipulate objects with his mind up to 25 meters away, plus 5 meters for every
|
||||
MPS modifier point. The “hand” can make fine manipulations that telekinesis cannot, but can’t lift anything weighing over 10 pounds.
|
||||
The hand is treated as having a Dexterity equal to the MPS score, and a Strength of half that. It can wield weapons that the mutant is
|
||||
proficient with.
|
||||
|
||||
|
||||
[Dimension Door 3 + WIS Bonus times per day.]
|
||||
|
||||
*/
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
//:: Created By: Jaysyn
|
||||
//:: Created On: 22/03/22
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
#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_TELEPORTATION, oPC))
|
||||
{
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_END);
|
||||
}
|
||||
|
||||
}
|
BIN
_content/ga_scripts/mut_t_tempcomp.ncs
Normal file
BIN
_content/ga_scripts/mut_t_tempcomp.ncs
Normal file
Binary file not shown.
55
_content/ga_scripts/mut_t_tempcomp.nss
Normal file
55
_content/ga_scripts/mut_t_tempcomp.nss
Normal file
@ -0,0 +1,55 @@
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
//:: Name Temporal Compression template test script
|
||||
//:: FileName mut_t_tempcomp.nss
|
||||
//:: Copyright (c) 2022 NWNDS
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
/*
|
||||
Temporal Compression (Mental)
|
||||
The mutant can “compress” time around himself, in effect, speeding up the affected individuals relative to those not affected. The
|
||||
mutant can affect himself and up to 1 other creature plus 1 per MPS modifier, each gaining the hasted condition. The mutant can
|
||||
maintain the power for 1d6 rounds plus 1 round per MPS modifier point, minimum 1 round. He can activate the power not more than
|
||||
twice in a period of 24 hours and affected targets must be within 30 feet.
|
||||
|
||||
|
||||
[Mass Haste, Self + 1 + 1 creature per WIS Bonus, lasts 6 + WIS Bonus rounds, can use twice a day.]
|
||||
|
||||
*/
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
//:: Created By: Jaysyn
|
||||
//:: Created On: 22/03/22
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
#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_TEMPORAL_COMPRESSION, oPC))
|
||||
{
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_END);
|
||||
}
|
||||
|
||||
}
|
BIN
_content/ga_scripts/mut_t_tempdil.ncs
Normal file
BIN
_content/ga_scripts/mut_t_tempdil.ncs
Normal file
Binary file not shown.
54
_content/ga_scripts/mut_t_tempdil.nss
Normal file
54
_content/ga_scripts/mut_t_tempdil.nss
Normal file
@ -0,0 +1,54 @@
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
//:: Name Temporal Dilation template test script
|
||||
//:: FileName mut_t_tempdil.nss
|
||||
//:: Copyright (c) 2022 NWNDS
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
/*
|
||||
Temporal Dilation (Mental)
|
||||
The mutant can “dilute” time around himself, in effect, slowing down the affected individuals relative to those not affected. The mutant
|
||||
can affect two creatures plus 1 per MPS modifier, each gaining the slowed condition. The mutant can maintain the power for 1d6
|
||||
rounds plus 1 round per MPS modifier point, minimum 1 round. He can activate the power not more than twice in a period of 24 hours
|
||||
and affected targets must be within 30 feet.
|
||||
|
||||
[Mass Slow, 2 + 1 creature per WIS Bonus, lasts 6 + WIS Bonus rounds, can use twice a day.]
|
||||
|
||||
*/
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
//:: Created By: Jaysyn
|
||||
//:: Created On: 22/03/22
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
#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_TEMPORAL_DILATION, oPC))
|
||||
{
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_END);
|
||||
}
|
||||
|
||||
}
|
BIN
_content/ga_scripts/mut_t_thorns.ncs
Normal file
BIN
_content/ga_scripts/mut_t_thorns.ncs
Normal file
Binary file not shown.
51
_content/ga_scripts/mut_t_thorns.nss
Normal file
51
_content/ga_scripts/mut_t_thorns.nss
Normal file
@ -0,0 +1,51 @@
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
//:: Name Thorns template test script
|
||||
//:: FileName mut_t_thorns.nss
|
||||
//:: Copyright (c) 2022 NWNDS
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
/*
|
||||
Thorns (Plant)
|
||||
The plant's body is covered with sharp thorns or spines. Any creature grappling or striking the plant with an unarmed or natural attack
|
||||
takes 1d6 + MPS mod in piercing damage each round. The thorns cannot damage hard materials such as stone or metal. The plant
|
||||
can strike with a vine, branch, or limb as a natural attack that causes 1d6 damage plus MPS modifier. (If it already has a natural attack,
|
||||
the thorns add 1 + MPS modifier to the damage that attack causes.) Damage stated is for a medium size plant. (1d4 if small, 1d8 if
|
||||
large.)
|
||||
|
||||
[As Razor-Edged Leaves but piercing damage & no grapple benefit]
|
||||
|
||||
*/
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
//:: Created By: Jaysyn
|
||||
//:: Created On: 22/03/22
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
#include "prc_alterations"
|
||||
#include "prc_inc_template"
|
||||
|
||||
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_THORNS, oPC))
|
||||
{
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_END);
|
||||
}
|
||||
|
||||
}
|
BIN
_content/ga_scripts/mut_t_tk_hand.ncs
Normal file
BIN
_content/ga_scripts/mut_t_tk_hand.ncs
Normal file
Binary file not shown.
55
_content/ga_scripts/mut_t_tk_hand.nss
Normal file
55
_content/ga_scripts/mut_t_tk_hand.nss
Normal file
@ -0,0 +1,55 @@
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
//:: Name Telekinetic Hand template test script
|
||||
//:: FileName mut_t_tk_hand.nss
|
||||
//:: Copyright (c) 2022 NWNDS
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
/*
|
||||
Telekinetic Hand (Mental)
|
||||
Similar to telekinesis, this power allows the mutant to manipulate objects with his mind up to 25 meters away, plus 5 meters for every
|
||||
MPS modifier point. The “hand” can make fine manipulations that telekinesis cannot, but can’t lift anything weighing over 10 pounds.
|
||||
The hand is treated as having a Dexterity equal to the MPS score, and a Strength of half that. It can wield weapons that the mutant is
|
||||
proficient with.
|
||||
|
||||
|
||||
[Telekinetic hand has DEX = WIS & STR = 3/4 WIS, weilds light weapons (summon?)]
|
||||
|
||||
*/
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
//:: Created By: Jaysyn
|
||||
//:: Created On: 22/03/22
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
#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_TELEKINETIC_HAND, oPC))
|
||||
{
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_END);
|
||||
}
|
||||
|
||||
}
|
BIN
_content/ga_scripts/mut_t_totalheal.ncs
Normal file
BIN
_content/ga_scripts/mut_t_totalheal.ncs
Normal file
Binary file not shown.
56
_content/ga_scripts/mut_t_totalheal.nss
Normal file
56
_content/ga_scripts/mut_t_totalheal.nss
Normal file
@ -0,0 +1,56 @@
|
||||
//::////////////////////////////////////////////////////////////////////////////
|
||||
//:: Name Total Healing template test script
|
||||
//:: FileName mut_t_totalheal.nss
|
||||
//:: Copyright (c) 2022 NWNDS
|
||||
//::////////////////////////////////////////////////////////////////////////////
|
||||
/*
|
||||
Total Healing (Physical / Plant)
|
||||
The character can heal lost hit points at a rate greater than normal, and even regrow lost or damaged body parts. The character heals
|
||||
a number of hit points each minute equal to 2 + MPS modifier, minimum 1 point. A lost limb or body part is completely restored within
|
||||
24 hours. The mutant also gains a +2 enhancement bonus on Health saves vs disease, poison and radiation.
|
||||
|
||||
|
||||
[Regenerate 2 + 1/2 CON Bonus per turn, +2 saves vs disease, poison & radiation.]
|
||||
|
||||
|
||||
|
||||
*/
|
||||
//::////////////////////////////////////////////////////////////////////////////
|
||||
//:: Created By: Jaysyn
|
||||
//:: Created On: 22/03/22
|
||||
//::////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
#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_TOTAL_HEALING, oPC))
|
||||
{
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_END);
|
||||
}
|
||||
|
||||
}
|
BIN
_content/ga_scripts/mut_t_willforce.ncs
Normal file
BIN
_content/ga_scripts/mut_t_willforce.ncs
Normal file
Binary file not shown.
53
_content/ga_scripts/mut_t_willforce.nss
Normal file
53
_content/ga_scripts/mut_t_willforce.nss
Normal file
@ -0,0 +1,53 @@
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
//:: Name Will Force template test script
|
||||
//:: FileName mut_t_willforce.nss
|
||||
//:: Copyright (c) 2022 NWNDS
|
||||
//::///////////////////////////////////////////////////////////////////////////
|
||||
/*
|
||||
Will Force (Mental)
|
||||
The mutant can increase any one of his own mental mutations or mental attributes (Intelligence, Wisdom or Charisma) by using
|
||||
this power. The mutation or attribute increases by 3 + MPS modifier (maximum 10) for 5 + MPS modifier rounds. The power initially
|
||||
functions once per day. For every third level the character has obtained they gain an additional use per day
|
||||
|
||||
[Boost one mental stat by 3/4 WIS Bonus for 3 + WIS Bonus rounds, usable 1 + HD / 3 times per day]
|
||||
|
||||
*/
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
//:: Created By: Jaysyn
|
||||
//:: Created On: 22/03/22
|
||||
//:://////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
#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_WILL_FORCE, oPC))
|
||||
{
|
||||
SetExecutedScriptReturnValue(X2_EXECUTE_SCRIPT_END);
|
||||
}
|
||||
|
||||
}
|
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user