diff --git a/_content/ga_2das/iprp_feats.2da b/_content/ga_2das/iprp_feats.2da index 69257c36..6788b919 100644 --- a/_content/ga_2das/iprp_feats.2da +++ b/_content/ga_2das/iprp_feats.2da @@ -4670,7 +4670,7 @@ 4666 **** ReservedForISCAndESS **** **** 4667 **** ReservedForISCAndESS **** **** 4668 **** ReservedForISCAndESS **** **** -4669 **** ReservedForISCAndESS **** **** +4669 110699 FEAT_BLINDSIGHT_5_FEET 1 485 4670 110705 Blindsight 1 488 4671 16789998 Hwarlock_Hellfire_Spear 0 23533 4672 16789999 Hwarlock_Hellfire_Glaive 0 23534 diff --git a/_content/ga_scripts/mut_m_ab_acid.ncs b/_content/ga_scripts/mut_m_ab_acid.ncs new file mode 100644 index 00000000..fbd6cdc2 Binary files /dev/null and b/_content/ga_scripts/mut_m_ab_acid.ncs differ diff --git a/_content/ga_scripts/mut_m_ab_acid.nss b/_content/ga_scripts/mut_m_ab_acid.nss new file mode 100644 index 00000000..da92317e --- /dev/null +++ b/_content/ga_scripts/mut_m_ab_acid.nss @@ -0,0 +1,43 @@ +//:://////////////////////////////////////////////////////////////////////////// +//:: Name Energy Absorption: Acid template maintain script +//:: FileName mut_m_ab_acid.nss +//:: Copyright (c) 2022 NWNDS +//:://////////////////////////////////////////////////////////////////////////// +/* +Energy Absorption: Acid (Physical / Plant) +The character gains Energy Resistance, ignoring the first 10 points + CON +modifier of damage from a particular type of energy attack. + +[Ignores 10 + CON Bonus of caustic damage] + +*/ +//:://////////////////////////////////////////////////////////////////////////// +//:: Created By: Jaysyn +//:: Created On: 22/03/20 +//:://////////////////////////////////////////////////////////////////////////// + + +#include "prc_alterations" +#include "prc_inc_template" +#include "prc_racial_const" + +void main() +{ + +//:: Declare major variables + object oPC = OBJECT_SELF; + object oSkin = GetPCSkin(oPC); + int iHD = GetHitDice(oPC); + int nBonus; + itemproperty ipIP; + +//:: Immunity to Acid + ipIP = ItemPropertyDamageImmunity(IP_CONST_DAMAGETYPE_ACID, IP_CONST_DAMAGEIMMUNITY_100_PERCENT); + IPSafeAddItemProperty(oSkin, ipIP, 0.0, X2_IP_ADDPROP_POLICY_KEEP_EXISTING, FALSE, FALSE); + +//:: Marker Feat + ipIP = PRCItemPropertyBonusFeat(IP_CONST_FEAT_MUT_ENERGY_ABSOPTION_ACID); + IPSafeAddItemProperty(oSkin, ipIP, 0.0, X2_IP_ADDPROP_POLICY_KEEP_EXISTING, FALSE, FALSE); + + +} \ No newline at end of file diff --git a/_content/ga_scripts/mut_m_im_acid.ncs b/_content/ga_scripts/mut_m_im_acid.ncs new file mode 100644 index 00000000..12aabbea Binary files /dev/null and b/_content/ga_scripts/mut_m_im_acid.ncs differ diff --git a/_content/ga_scripts/mut_m_im_acid.nss b/_content/ga_scripts/mut_m_im_acid.nss new file mode 100644 index 00000000..ef8342bb --- /dev/null +++ b/_content/ga_scripts/mut_m_im_acid.nss @@ -0,0 +1,41 @@ +//:://///////////////////////////////////////////////////////////////////////// +//:: Name Immunity: Acid template maintain script +//:: FileName mut_m_im_acid.nss +//:: Copyright (c) 2022 NWNDS +//:://///////////////////////////////////////////////////////////////////////// +/* +Immunity: Acid (Physical / Plant) +The mutant is immune to a particular form of damage or hazard. + +[Immune to acid damage] + +*/ +//::////////////////////////////////////////////////////////////////////////// +//:: Created By: Jaysyn +//:: Created On: 22/03/25 +//::////////////////////////////////////////////////////////////////////////// + + +#include "prc_alterations" +#include "prc_inc_template" +#include "prc_racial_const" + +void main() +{ + +//:: Declare major variables + object oPC = OBJECT_SELF; + object oSkin = GetPCSkin(oPC); + int iHD = GetHitDice(oPC); + int nBonus; + itemproperty ipIP; + +//:: Immunity to Acid + ipIP = ItemPropertyDamageImmunity(IP_CONST_DAMAGETYPE_ACID, IP_CONST_DAMAGEIMMUNITY_100_PERCENT); + IPSafeAddItemProperty(oSkin, ipIP, 0.0, X2_IP_ADDPROP_POLICY_KEEP_EXISTING, FALSE, FALSE); + +//:: Marker Feat + ipIP = PRCItemPropertyBonusFeat(IP_CONST_FEAT_MUT_IMMUNITY_ACID); + IPSafeAddItemProperty(oSkin, ipIP, 0.0, X2_IP_ADDPROP_POLICY_KEEP_EXISTING, FALSE, FALSE); + +} \ No newline at end of file diff --git a/_content/ga_scripts/mut_m_im_cold.ncs b/_content/ga_scripts/mut_m_im_cold.ncs new file mode 100644 index 00000000..a50fd25f Binary files /dev/null and b/_content/ga_scripts/mut_m_im_cold.ncs differ diff --git a/_content/ga_scripts/mut_m_im_cold.nss b/_content/ga_scripts/mut_m_im_cold.nss new file mode 100644 index 00000000..8fd1e817 --- /dev/null +++ b/_content/ga_scripts/mut_m_im_cold.nss @@ -0,0 +1,41 @@ +//:://///////////////////////////////////////////////////////////////////////// +//:: Name Immunity: Cold template maintain script +//:: FileName mut_m_im_cold.nss +//:: Copyright (c) 2022 NWNDS +//:://///////////////////////////////////////////////////////////////////////// +/* +Immunity: Cold (Physical / Plant) +The mutant is immune to a particular form of damage or hazard. + +[Immune to cold damage] + +*/ +//::////////////////////////////////////////////////////////////////////////// +//:: Created By: Jaysyn +//:: Created On: 22/03/25 +//::////////////////////////////////////////////////////////////////////////// + + +#include "prc_alterations" +#include "prc_inc_template" +#include "prc_racial_const" + +void main() +{ + +//:: Declare major variables + object oPC = OBJECT_SELF; + object oSkin = GetPCSkin(oPC); + int iHD = GetHitDice(oPC); + int nBonus; + itemproperty ipIP; + +//:: Immunity to Cold + ipIP = ItemPropertyDamageImmunity(IP_CONST_DAMAGETYPE_COLD, IP_CONST_DAMAGEIMMUNITY_100_PERCENT); + IPSafeAddItemProperty(oSkin, ipIP, 0.0, X2_IP_ADDPROP_POLICY_KEEP_EXISTING, FALSE, FALSE); + +//:: Marker Feat + ipIP = PRCItemPropertyBonusFeat(IP_CONST_FEAT_MUT_IMMUNITY_COLD); + IPSafeAddItemProperty(oSkin, ipIP, 0.0, X2_IP_ADDPROP_POLICY_KEEP_EXISTING, FALSE, FALSE); + +} \ No newline at end of file diff --git a/_content/ga_scripts/mut_m_im_drain.ncs b/_content/ga_scripts/mut_m_im_drain.ncs new file mode 100644 index 00000000..141d04cd Binary files /dev/null and b/_content/ga_scripts/mut_m_im_drain.ncs differ diff --git a/_content/ga_scripts/mut_m_im_drain.nss b/_content/ga_scripts/mut_m_im_drain.nss new file mode 100644 index 00000000..23115f80 --- /dev/null +++ b/_content/ga_scripts/mut_m_im_drain.nss @@ -0,0 +1,42 @@ +//:://///////////////////////////////////////////////////////////////////////// +//:: Name Immunity: Ability Drain template maintain script +//:: FileName mut_m_im_drain.nss +//:: Copyright (c) 2022 NWNDS +//:://///////////////////////////////////////////////////////////////////////// +/* +Immunity: Ability Drain (Physical / Plant) +The mutant is immune to a particular form of damage or hazard. + +[Immune to Ability Score damage] + +*/ +//::////////////////////////////////////////////////////////////////////////// +//:: Created By: Jaysyn +//:: Created On: 22/03/25 +//::////////////////////////////////////////////////////////////////////////// + + +#include "prc_alterations" +#include "prc_inc_template" +#include "prc_racial_const" + +void main() +{ + +//:: Declare major variables + object oPC = OBJECT_SELF; + object oSkin = GetPCSkin(oPC); + int iHD = GetHitDice(oPC); + int nBonus; + itemproperty ipIP; + +//:: Immunity to Ability Damage + ipIP = PRCItemPropertyBonusFeat(IP_CONST_FEAT_IMMUNITY_ABILITY_DECREASE); + IPSafeAddItemProperty(oSkin, ipIP, 0.0, X2_IP_ADDPROP_POLICY_KEEP_EXISTING, FALSE, FALSE); + +//:: Marker Feat + ipIP = PRCItemPropertyBonusFeat(IP_CONST_FEAT_MUT_IMMUNITY_ABILITY_DRAIN); + IPSafeAddItemProperty(oSkin, ipIP, 0.0, X2_IP_ADDPROP_POLICY_KEEP_EXISTING, FALSE, FALSE); + + +} \ No newline at end of file diff --git a/_content/ga_scripts/mut_m_im_elec.ncs b/_content/ga_scripts/mut_m_im_elec.ncs new file mode 100644 index 00000000..6f833029 Binary files /dev/null and b/_content/ga_scripts/mut_m_im_elec.ncs differ diff --git a/_content/ga_scripts/mut_m_im_elec.nss b/_content/ga_scripts/mut_m_im_elec.nss new file mode 100644 index 00000000..cac8b4de --- /dev/null +++ b/_content/ga_scripts/mut_m_im_elec.nss @@ -0,0 +1,41 @@ +//:://///////////////////////////////////////////////////////////////////////// +//:: Name Immunity: Electricity template maintain script +//:: FileName mut_m_im_elec.nss +//:: Copyright (c) 2022 NWNDS +//:://///////////////////////////////////////////////////////////////////////// +/* +Immunity: Electricity (Physical / Plant) +The mutant is immune to a particular form of damage or hazard. + +[Immune to electrical damage] + +*/ +//::////////////////////////////////////////////////////////////////////////// +//:: Created By: Jaysyn +//:: Created On: 22/03/25 +//::////////////////////////////////////////////////////////////////////////// + + +#include "prc_alterations" +#include "prc_inc_template" +#include "prc_racial_const" + +void main() +{ + +//:: Declare major variables + object oPC = OBJECT_SELF; + object oSkin = GetPCSkin(oPC); + int iHD = GetHitDice(oPC); + int nBonus; + itemproperty ipIP; + +//:: Immunity to Electricity + ipIP = ItemPropertyDamageImmunity(IP_CONST_DAMAGETYPE_ELECTRICAL, IP_CONST_DAMAGEIMMUNITY_100_PERCENT); + IPSafeAddItemProperty(oSkin, ipIP, 0.0, X2_IP_ADDPROP_POLICY_KEEP_EXISTING, FALSE, FALSE); + +//:: Marker Feat + ipIP = PRCItemPropertyBonusFeat(IP_CONST_FEAT_MUT_IMMUNITY_ELECTRICITY); + IPSafeAddItemProperty(oSkin, ipIP, 0.0, X2_IP_ADDPROP_POLICY_KEEP_EXISTING, FALSE, FALSE); + +} \ No newline at end of file diff --git a/_content/ga_scripts/mut_m_im_fire.ncs b/_content/ga_scripts/mut_m_im_fire.ncs new file mode 100644 index 00000000..dfe34c18 Binary files /dev/null and b/_content/ga_scripts/mut_m_im_fire.ncs differ diff --git a/_content/ga_scripts/mut_m_im_fire.nss b/_content/ga_scripts/mut_m_im_fire.nss new file mode 100644 index 00000000..ec228884 --- /dev/null +++ b/_content/ga_scripts/mut_m_im_fire.nss @@ -0,0 +1,42 @@ +//:://///////////////////////////////////////////////////////////////////////// +//:: Name Immunity: Fire template maintain script +//:: FileName mut_m_im_fire.nss +//:: Copyright (c) 2022 NWNDS +//:://///////////////////////////////////////////////////////////////////////// +/* +Immunity: Fire (Physical / Plant) +The mutant is immune to a particular form of damage or hazard. + +[Immune to fire damage] + +*/ +//::////////////////////////////////////////////////////////////////////////// +//:: Created By: Jaysyn +//:: Created On: 22/03/25 +//::////////////////////////////////////////////////////////////////////////// + + +#include "prc_alterations" +#include "prc_inc_template" +#include "prc_racial_const" + +void main() +{ + + //:: Declare major variables + object oPC = OBJECT_SELF; + object oSkin = GetPCSkin(oPC); + int iHD = GetHitDice(oPC); + int nBonus; + itemproperty ipIP; + +//:: Immunity to Fire + ipIP = ItemPropertyDamageImmunity(IP_CONST_DAMAGETYPE_FIRE, IP_CONST_DAMAGEIMMUNITY_100_PERCENT); + IPSafeAddItemProperty(oSkin, ipIP, 0.0, X2_IP_ADDPROP_POLICY_KEEP_EXISTING, FALSE, FALSE); + +//:: Marker Feat + ipIP = PRCItemPropertyBonusFeat(IP_CONST_FEAT_MUT_IMMUNITY_FIRE); + IPSafeAddItemProperty(oSkin, ipIP, 0.0, X2_IP_ADDPROP_POLICY_KEEP_EXISTING, FALSE, FALSE); + + +} \ No newline at end of file diff --git a/_content/ga_scripts/mut_m_im_hold.ncs b/_content/ga_scripts/mut_m_im_hold.ncs new file mode 100644 index 00000000..aa2f0fce Binary files /dev/null and b/_content/ga_scripts/mut_m_im_hold.ncs differ diff --git a/_content/ga_scripts/mut_m_im_hold.nss b/_content/ga_scripts/mut_m_im_hold.nss new file mode 100644 index 00000000..c5e98fa4 --- /dev/null +++ b/_content/ga_scripts/mut_m_im_hold.nss @@ -0,0 +1,41 @@ +//:://///////////////////////////////////////////////////////////////////////// +//:: Name Immunity: Paralysis template maintain script +//:: FileName mut_m_im_hold.nss +//:: Copyright (c) 2022 NWNDS +//:://///////////////////////////////////////////////////////////////////////// +/* +Immunity: Paralysis (Physical / Plant) +The mutant is immune to a particular form of damage or hazard. + +[Immune to paralysis] + +*/ +//::////////////////////////////////////////////////////////////////////////// +//:: Created By: Jaysyn +//:: Created On: 22/03/25 +//::////////////////////////////////////////////////////////////////////////// + + +#include "prc_alterations" +#include "prc_inc_template" +#include "prc_racial_const" + +void main() +{ + +//:: Declare major variables + object oPC = OBJECT_SELF; + object oSkin = GetPCSkin(oPC); + int iHD = GetHitDice(oPC); + int nBonus; + itemproperty ipIP; + +//:: Immunity to Paralysis + ipIP = PRCItemPropertyBonusFeat(IP_CONST_FEAT_IMMUNITY_PARALYSIS); + IPSafeAddItemProperty(oSkin, ipIP, 0.0, X2_IP_ADDPROP_POLICY_KEEP_EXISTING, FALSE, FALSE); + +//:: Marker Feat + ipIP = PRCItemPropertyBonusFeat(IP_CONST_FEAT_MUT_IMMUNITY_PARALYSIS); + IPSafeAddItemProperty(oSkin, ipIP, 0.0, X2_IP_ADDPROP_POLICY_KEEP_EXISTING, FALSE, FALSE); + +} \ No newline at end of file diff --git a/_content/ga_scripts/mut_m_im_mind.ncs b/_content/ga_scripts/mut_m_im_mind.ncs new file mode 100644 index 00000000..36bff237 Binary files /dev/null and b/_content/ga_scripts/mut_m_im_mind.ncs differ diff --git a/_content/ga_scripts/mut_m_im_mind.nss b/_content/ga_scripts/mut_m_im_mind.nss new file mode 100644 index 00000000..a56b975f --- /dev/null +++ b/_content/ga_scripts/mut_m_im_mind.nss @@ -0,0 +1,41 @@ +//:://///////////////////////////////////////////////////////////////////////// +//:: Name Immunity: Mind-effects template test script +//:: FileName mut_m_im_mind.nss +//:: Copyright (c) 2022 NWNDS +//:://///////////////////////////////////////////////////////////////////////// +/* +Immunity: Mind-effects (Physical / Plant) +The mutant is immune to a particular form of damage or hazard. + +[Immune to mind affecting powers] + +*/ +//::////////////////////////////////////////////////////////////////////////// +//:: Created By: Jaysyn +//:: Created On: 22/03/25 +//::////////////////////////////////////////////////////////////////////////// + + +#include "prc_alterations" +#include "prc_inc_template" +#include "prc_racial_const" + +void main() +{ + +//:: Declare major variables + object oPC = OBJECT_SELF; + object oSkin = GetPCSkin(oPC); + int iHD = GetHitDice(oPC); + int nBonus; + itemproperty ipIP; + +//:: Immunity to Mind Effects + ipIP = PRCItemPropertyBonusFeat(IP_CONST_FEAT_IMMUNITY_MIND_SPELLS); + IPSafeAddItemProperty(oSkin, ipIP, 0.0, X2_IP_ADDPROP_POLICY_KEEP_EXISTING, FALSE, FALSE); + +//:: Marker Feat + ipIP = PRCItemPropertyBonusFeat(IP_CONST_FEAT_MUT_IMMUNITY_MIND); + IPSafeAddItemProperty(oSkin, ipIP, 0.0, X2_IP_ADDPROP_POLICY_KEEP_EXISTING, FALSE, FALSE); + +} \ No newline at end of file diff --git a/_content/ga_scripts/mut_m_im_poison.ncs b/_content/ga_scripts/mut_m_im_poison.ncs new file mode 100644 index 00000000..483ed497 Binary files /dev/null and b/_content/ga_scripts/mut_m_im_poison.ncs differ diff --git a/_content/ga_scripts/mut_m_im_poison.nss b/_content/ga_scripts/mut_m_im_poison.nss new file mode 100644 index 00000000..78a01ee0 --- /dev/null +++ b/_content/ga_scripts/mut_m_im_poison.nss @@ -0,0 +1,42 @@ +//:://///////////////////////////////////////////////////////////////////////// +//:: Name Immunity: Poison template maintain script +//:: FileName mut_m_im_poison.nss +//:: Copyright (c) 2022 NWNDS +//:://///////////////////////////////////////////////////////////////////////// +/* +Immunity: Poison (Physical / Plant) +The mutant is immune to a particular form of damage or hazard. + +[Immune to poison] + +*/ +//::////////////////////////////////////////////////////////////////////////// +//:: Created By: Jaysyn +//:: Created On: 22/03/25 +//::////////////////////////////////////////////////////////////////////////// + + +#include "prc_alterations" +#include "prc_inc_template" +#include "prc_racial_const" + +void main() +{ + +//:: Declare major variables + object oPC = OBJECT_SELF; + object oSkin = GetPCSkin(oPC); + int iHD = GetHitDice(oPC); + int nBonus; + itemproperty ipIP; + +//:: Immunity to Poison + ipIP = PRCItemPropertyBonusFeat(IP_CONST_FEAT_IMMUNITY_POISON); + IPSafeAddItemProperty(oSkin, ipIP, 0.0, X2_IP_ADDPROP_POLICY_KEEP_EXISTING, FALSE, FALSE); + +//:: Marker Feat + ipIP = PRCItemPropertyBonusFeat(IP_CONST_FEAT_MUT_IMMUNITY_POISON); + IPSafeAddItemProperty(oSkin, ipIP, 0.0, X2_IP_ADDPROP_POLICY_KEEP_EXISTING, FALSE, FALSE); + + +} \ No newline at end of file diff --git a/_content/ga_scripts/mut_m_im_rads.ncs b/_content/ga_scripts/mut_m_im_rads.ncs new file mode 100644 index 00000000..f04ebe11 Binary files /dev/null and b/_content/ga_scripts/mut_m_im_rads.ncs differ diff --git a/_content/ga_scripts/mut_m_im_rads.nss b/_content/ga_scripts/mut_m_im_rads.nss new file mode 100644 index 00000000..76cea342 --- /dev/null +++ b/_content/ga_scripts/mut_m_im_rads.nss @@ -0,0 +1,42 @@ +//:://///////////////////////////////////////////////////////////////////////// +//:: Name Immunity: Radiation template maintain script +//:: FileName mut_m_im_rads.nss +//:: Copyright (c) 2022 NWNDS +//:://///////////////////////////////////////////////////////////////////////// +/* +Immunity: Radiation (Physical / Plant) +The mutant is immune to a particular form of damage or hazard. + +[Immune to radiation damage (negative energy)] + +*/ +//::////////////////////////////////////////////////////////////////////////// +//:: Created By: Jaysyn +//:: Created On: 22/03/25 +//::////////////////////////////////////////////////////////////////////////// + + +#include "prc_alterations" +#include "prc_inc_template" +#include "prc_racial_const" + +void main() +{ + +//:: Declare major variables + object oPC = OBJECT_SELF; + object oSkin = GetPCSkin(oPC); + int iHD = GetHitDice(oPC); + int nBonus; + itemproperty ipIP; + +//:: Immunity to Radiation (negative energy) + ipIP = ItemPropertyDamageImmunity(IP_CONST_DAMAGETYPE_NEGATIVE, IP_CONST_DAMAGEIMMUNITY_100_PERCENT); + IPSafeAddItemProperty(oSkin, ipIP, 0.0, X2_IP_ADDPROP_POLICY_KEEP_EXISTING, FALSE, FALSE); + +//:: Marker Feat + ipIP = PRCItemPropertyBonusFeat(IP_CONST_FEAT_MUT_IMMUNITY_RADIATION); + IPSafeAddItemProperty(oSkin, ipIP, 0.0, X2_IP_ADDPROP_POLICY_KEEP_EXISTING, FALSE, FALSE); + + +} \ No newline at end of file diff --git a/_content/ga_scripts/mut_m_im_sick.ncs b/_content/ga_scripts/mut_m_im_sick.ncs new file mode 100644 index 00000000..6b2ed9ec Binary files /dev/null and b/_content/ga_scripts/mut_m_im_sick.ncs differ diff --git a/_content/ga_scripts/mut_m_im_sick.nss b/_content/ga_scripts/mut_m_im_sick.nss new file mode 100644 index 00000000..a886b730 --- /dev/null +++ b/_content/ga_scripts/mut_m_im_sick.nss @@ -0,0 +1,42 @@ +//:://///////////////////////////////////////////////////////////////////////// +//:: Name Immunity: Disease template maintain script +//:: FileName mut_m_im_sick.nss +//:: Copyright (c) 2022 NWNDS +//:://///////////////////////////////////////////////////////////////////////// +/* +Immunity: Disease (Physical / Plant) +The mutant is immune to a particular form of damage or hazard. + +[Immune to disease] + +*/ +//::////////////////////////////////////////////////////////////////////////// +//:: Created By: Jaysyn +//:: Created On: 22/03/25 +//::////////////////////////////////////////////////////////////////////////// + + +#include "prc_alterations" +#include "prc_inc_template" +#include "prc_racial_const" + +void main() +{ + +//:: Declare major variables + object oPC = OBJECT_SELF; + object oSkin = GetPCSkin(oPC); + int iHD = GetHitDice(oPC); + int nBonus; + itemproperty ipIP; + +//:: Immunity to Disease + ipIP = PRCItemPropertyBonusFeat(IP_CONST_FEAT_IMMUNITY_DISEASE); + IPSafeAddItemProperty(oSkin, ipIP, 0.0, X2_IP_ADDPROP_POLICY_KEEP_EXISTING, FALSE, FALSE); + +//:: Marker Feat + ipIP = PRCItemPropertyBonusFeat(IP_CONST_FEAT_MUT_IMMUNITY_DISEASE); + IPSafeAddItemProperty(oSkin, ipIP, 0.0, X2_IP_ADDPROP_POLICY_KEEP_EXISTING, FALSE, FALSE); + + +} \ No newline at end of file diff --git a/_content/ga_scripts/mut_m_im_sonic.ncs b/_content/ga_scripts/mut_m_im_sonic.ncs new file mode 100644 index 00000000..cf79ac1a Binary files /dev/null and b/_content/ga_scripts/mut_m_im_sonic.ncs differ diff --git a/_content/ga_scripts/mut_m_im_sonic.nss b/_content/ga_scripts/mut_m_im_sonic.nss new file mode 100644 index 00000000..e33234cb --- /dev/null +++ b/_content/ga_scripts/mut_m_im_sonic.nss @@ -0,0 +1,41 @@ +//:://///////////////////////////////////////////////////////////////////////// +//:: Name Immunity: Concussion template maintain script +//:: FileName mut_m_im_sonic.nss +//:: Copyright (c) 2022 NWNDS +//:://///////////////////////////////////////////////////////////////////////// +/* +Immunity: Concussion (Physical / Plant) +The mutant is immune to a particular form of damage or hazard. + +[Immune to concussion (sonic) damage] + +*/ +//::////////////////////////////////////////////////////////////////////////// +//:: Created By: Jaysyn +//:: Created On: 22/03/25 +//::////////////////////////////////////////////////////////////////////////// + + +#include "prc_alterations" +#include "prc_inc_template" +#include "prc_racial_const" + +void main() +{ + +//:: Declare major variables + object oPC = OBJECT_SELF; + object oSkin = GetPCSkin(oPC); + int iHD = GetHitDice(oPC); + int nBonus; + itemproperty ipIP; + +//:: Immunity to Sonic + ipIP = ItemPropertyDamageImmunity(IP_CONST_DAMAGETYPE_SONIC, IP_CONST_DAMAGEIMMUNITY_100_PERCENT); + IPSafeAddItemProperty(oSkin, ipIP, 0.0, X2_IP_ADDPROP_POLICY_KEEP_EXISTING, FALSE, FALSE); + +//:: Marker Feat + ipIP = PRCItemPropertyBonusFeat(IP_CONST_FEAT_MUT_IMMUNITY_CONCUSSION); + IPSafeAddItemProperty(oSkin, ipIP, 0.0, X2_IP_ADDPROP_POLICY_KEEP_EXISTING, FALSE, FALSE); + +} \ No newline at end of file diff --git a/_content/ga_scripts/mut_m_lowlight.ncs b/_content/ga_scripts/mut_m_lowlight.ncs new file mode 100644 index 00000000..6591aa27 Binary files /dev/null and b/_content/ga_scripts/mut_m_lowlight.ncs differ diff --git a/_content/ga_scripts/mut_m_lowlight.nss b/_content/ga_scripts/mut_m_lowlight.nss new file mode 100644 index 00000000..95f2b216 --- /dev/null +++ b/_content/ga_scripts/mut_m_lowlight.nss @@ -0,0 +1,43 @@ +//:://///////////////////////////////////////////////////////////////////////// +//:: Name Low-light Vision template maintain script +//:: FileName mut_m_lowlight.nss +//:: Copyright (c) 2022 NWNDS +//:://///////////////////////////////////////////////////////////////////////// +/* +Low-light Vision (Physical) +Characters with low-light vision have eyes that are so sensitive to light that they can see twice as far as normal in dim light. Low-light +vision is color vision. Characters with low-light vision can see outdoors on a moonlit night as well as they can during the day. The +character's normal daylight light vision is unaffected + +[Low-Light Vision] + +*/ +//::////////////////////////////////////////////////////////////////////////// +//:: Created By: Jaysyn +//:: Created On: 22/03/25 +//::////////////////////////////////////////////////////////////////////////// + + +#include "prc_alterations" +#include "prc_inc_template" +#include "prc_racial_const" + +void main() +{ + +//:: Declare major variables + object oPC = OBJECT_SELF; + object oSkin = GetPCSkin(oPC); + int iHD = GetHitDice(oPC); + int nBonus; + itemproperty ipIP; + +//:: Low Light Vision + ipIP = PRCItemPropertyBonusFeat(IP_CONST_FEAT_LOWLIGHT_VISION); + IPSafeAddItemProperty(oSkin, ipIP, 0.0, X2_IP_ADDPROP_POLICY_KEEP_EXISTING, FALSE, FALSE); + +//:: Marker Feat + ipIP = PRCItemPropertyBonusFeat(IP_CONST_FEAT_MUT_LOW_LIGHT_VISION); + IPSafeAddItemProperty(oSkin, ipIP, 0.0, X2_IP_ADDPROP_POLICY_KEEP_EXISTING, FALSE, FALSE); + +} \ No newline at end of file diff --git a/_content/ga_scripts/mut_m_skelenhc.ncs b/_content/ga_scripts/mut_m_skelenhc.ncs new file mode 100644 index 00000000..6bb08c5c Binary files /dev/null and b/_content/ga_scripts/mut_m_skelenhc.ncs differ diff --git a/_content/ga_scripts/mut_m_skelenhc.nss b/_content/ga_scripts/mut_m_skelenhc.nss new file mode 100644 index 00000000..2078efd3 --- /dev/null +++ b/_content/ga_scripts/mut_m_skelenhc.nss @@ -0,0 +1,43 @@ +//:://///////////////////////////////////////////////////////////////////////// +//:: Name Skeletal Enhancement template maintain script +//:: FileName mut_m_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/25 +//::////////////////////////////////////////////////////////////////////////// + + +#include "prc_alterations" +#include "prc_inc_template" +#include "prc_racial_const" + +void main() +{ + +//:: Declare major variables + object oPC = OBJECT_SELF; + object oSkin = GetPCSkin(oPC); + int iHD = GetHitDice(oPC); + int nBonus; + itemproperty ipIP; + +//:: 50% Resistant to Bludgeoning + ipIP = ItemPropertyDamageImmunity(IP_CONST_DAMAGETYPE_BLUDGEONING, IP_CONST_DAMAGEIMMUNITY_50_PERCENT); + IPSafeAddItemProperty(oSkin, ipIP, 0.0, X2_IP_ADDPROP_POLICY_KEEP_EXISTING, FALSE, FALSE); + +//:: Marker Feat + ipIP = PRCItemPropertyBonusFeat(IP_CONST_FEAT_MUT_SKELETAL_ENHANCEMENT); + IPSafeAddItemProperty(oSkin, ipIP, 0.0, X2_IP_ADDPROP_POLICY_KEEP_EXISTING, FALSE, FALSE); + +} \ No newline at end of file diff --git a/_content/ga_scripts/mut_m_touch.ncs b/_content/ga_scripts/mut_m_touch.ncs new file mode 100644 index 00000000..8e32ec33 Binary files /dev/null and b/_content/ga_scripts/mut_m_touch.ncs differ diff --git a/_content/ga_scripts/mut_m_touch.nss b/_content/ga_scripts/mut_m_touch.nss new file mode 100644 index 00000000..23c19fa8 --- /dev/null +++ b/_content/ga_scripts/mut_m_touch.nss @@ -0,0 +1,55 @@ +//:://///////////////////////////////////////////////////////////////////////// +//:: Name Heightened Touch template maintain script +//:: FileName mut_m_touch.nss +//:: Copyright (c) 2022 NWNDS +//:://///////////////////////////////////////////////////////////////////////// +/* +Heightened Touch (Physical) +The mutant's sense of touch becomes fine enough to distinguish slight changes +in texture, moisture, temperature, residues etc + +[Blindsight, +3 craft skills] + + +*/ +//::////////////////////////////////////////////////////////////////////////// +//:: Created By: Jaysyn +//:: Created On: 22/03/25 +//::////////////////////////////////////////////////////////////////////////// + + +#include "prc_alterations" +#include "prc_inc_template" +#include "prc_racial_const" + +void main() +{ + +//:: Declare major variables + object oPC = OBJECT_SELF; + object oSkin = GetPCSkin(oPC); + int iHD = GetHitDice(oPC); + int nBonus; + itemproperty ipIP; + +//:: Add Craft Armor bonus + SetCompositeBonus(oSkin, "HeightTouchCraftArmor", 3, ITEM_PROPERTY_SKILL_BONUS, SKILL_CRAFT_ARMOR); + +//:: Add Craft General bonus + SetCompositeBonus(oSkin, "HeightTouchCraftGeneral", 3, ITEM_PROPERTY_SKILL_BONUS, SKILL_CRAFT_GENERAL); + +//:: Add Craft Trap bonus + SetCompositeBonus(oSkin, "HeightTouchCraftTrap", 3, ITEM_PROPERTY_SKILL_BONUS, SKILL_CRAFT_TRAP); + +//:: Add Craft Weapon bonus + SetCompositeBonus(oSkin, "HeightTouchCraftWeapon", 3, ITEM_PROPERTY_SKILL_BONUS, SKILL_CRAFT_WEAPON); + +//:: Blindsight + ipIP = PRCItemPropertyBonusFeat(FEAT_BLINDSIGHT_5_FEET); + IPSafeAddItemProperty(oSkin, ipIP, 0.0, X2_IP_ADDPROP_POLICY_KEEP_EXISTING, FALSE, FALSE); + +//:: Marker Feat + ipIP = PRCItemPropertyBonusFeat(IP_CONST_FEAT_MUT_HEIGHTENED_TOUCH); + IPSafeAddItemProperty(oSkin, ipIP, 0.0, X2_IP_ADDPROP_POLICY_KEEP_EXISTING, FALSE, FALSE); + +} \ No newline at end of file diff --git a/_content/ga_scripts/mut_m_vision.ncs b/_content/ga_scripts/mut_m_vision.ncs new file mode 100644 index 00000000..8c4f6da9 Binary files /dev/null and b/_content/ga_scripts/mut_m_vision.ncs differ diff --git a/_content/ga_scripts/mut_m_vision.nss b/_content/ga_scripts/mut_m_vision.nss new file mode 100644 index 00000000..a5e960ad --- /dev/null +++ b/_content/ga_scripts/mut_m_vision.nss @@ -0,0 +1,49 @@ +//:://///////////////////////////////////////////////////////////////////////// +//:: Name Heightened Vision template maintain script +//:: FileName mut_m_vision.nss +//:: Copyright (c) 2022 NWNDS +//:://///////////////////////////////////////////////////////////////////////// +/* +Heightened Vision (Physical) +The mutant can see twice the distance compared to most creatures. They gain +Low-Light vision + +[Low-light Vision, Spot +2 & Search +2] + + +*/ +//::////////////////////////////////////////////////////////////////////////// +//:: Created By: Jaysyn +//:: Created On: 22/03/25 +//::////////////////////////////////////////////////////////////////////////// + + +#include "prc_alterations" +#include "prc_inc_template" +#include "prc_racial_const" + +void main() +{ + +//:: Declare major variables + object oPC = OBJECT_SELF; + object oSkin = GetPCSkin(oPC); + int iHD = GetHitDice(oPC); + int nBonus; + itemproperty ipIP; + +//:: Add Spot bonus + SetCompositeBonus(oSkin, "HeightenedVisionSpot", 2, ITEM_PROPERTY_SKILL_BONUS, SKILL_SPOT); + +//:: Add Search bonus + SetCompositeBonus(oSkin, "HeightenedVisionSearch", 2, ITEM_PROPERTY_SKILL_BONUS, SKILL_SEARCH); + +//:: Low Light Vision + ipIP = PRCItemPropertyBonusFeat(IP_CONST_FEAT_LOWLIGHT_VISION); + IPSafeAddItemProperty(oSkin, ipIP, 0.0, X2_IP_ADDPROP_POLICY_KEEP_EXISTING, FALSE, FALSE); + +//:: Marker Feat + ipIP = PRCItemPropertyBonusFeat(IP_CONST_FEAT_MUT_HEIGHTENED_VISION); + IPSafeAddItemProperty(oSkin, ipIP, 0.0, X2_IP_ADDPROP_POLICY_KEEP_EXISTING, FALSE, FALSE); + +} \ No newline at end of file diff --git a/_notes/Gamma Age Mutations Workbook.xlsx b/_notes/Gamma Age Mutations Workbook.xlsx index c8cf035e..a7ed8b0f 100644 Binary files a/_notes/Gamma Age Mutations Workbook.xlsx and b/_notes/Gamma Age Mutations Workbook.xlsx differ