Finished PRC8 integration

Finished PRC8 integration.  Moved creature abilities to top hak.  Setup tooling.  Created release archive
This commit is contained in:
Jaysyn904
2024-03-12 21:27:23 -04:00
parent 7b9e44ebbb
commit e5b3f6ad61
958 changed files with 1491 additions and 630 deletions

View File

@@ -15,6 +15,7 @@ or it will be undestroyable.
//:: Created By: Mark "Levian Del'Orr" Fritzlen
//:: Created On: June 21, 2002
//:://////////////////////////////////////////////
#include "prc_inc_racial"
void FoundSecretTrapdoor(object oFinder);
@@ -36,26 +37,29 @@ void main()
//NOT SURE OF THESE RULES...NEED TO CHECK AD&D PLAYERS GUIDE
if (GetLevelByClass(CLASS_TYPE_ROGUE, oFinder) > 0)
{
iClassModifier = 2;
iClassModifier =+ 2;
}
else if (GetLevelByClass(CLASS_TYPE_RANGER, oFinder) > 0 ||
GetLevelByClass (CLASS_TYPE_BARD, oFinder) > 0)
{
iClassModifier = 1;
iClassModifier =+ 1;
}
//Assign Race Modifier
//NOT SURE OF THESE RULES...NEED TO CHECK AD&D PLAYERS GUIDE
if (GetRacialType(oFinder) == RACIAL_TYPE_DWARF ||
GetRacialType(oFinder) == RACIAL_TYPE_ELF)
if (MyPRCGetRacialType(oFinder) == RACIAL_TYPE_DWARF ||
MyPRCGetRacialType(oFinder) == RACIAL_TYPE_ELF)
{
iRaceModifier = 2;
iRaceModifier =+ 2;
}
else if (GetRacialType(oFinder) == RACIAL_TYPE_HALFELF)
else if (MyPRCGetRacialType(oFinder) == RACIAL_TYPE_HALFELF)
{
iRaceModifier = 1;
iRaceModifier =+ 1;
}
if (GetHasFeat(FEAT_KEEN_SENSE, oFinder))
{
iRaceModifier =+ 2;
}
//Assign Skill Modifier
//NOT SURE OF THESE RULES...NEED TO CHECK AD&D PLAYERS GUIDE
//Just assigning the search skill value