Removed Iron Will from Drow

Removed Iron Will from Drow & replaced it with an intrinsic bonus.  Racial constants cleanup. Lowercased "others" folder contents.
This commit is contained in:
Jaysyn904
2024-06-09 23:04:18 -04:00
parent 31a7a88252
commit 1234fa8f60
36 changed files with 30 additions and 4636 deletions

View File

@@ -317,7 +317,11 @@ void main()
SetCompositeBonus(oSkin, "Aranea_Spot", 2, ITEM_PROPERTY_SKILL_BONUS, SKILL_SPOT);
SetCompositeBonus(oSkin, "Aranea_Listen", 2, ITEM_PROPERTY_SKILL_BONUS, SKILL_LISTEN);
}
if(GetRacialType(oPC) == RACIAL_TYPE_KRINTH)
if(GetRacialType(oPC) == RACIAL_TYPE_DROW_MALE || GetRacialType(oPC) == RACIAL_TYPE_DROW_FEMALE)
{
SetCompositeBonus(oSkin, "DrowWillSave", 2, ITEM_PROPERTY_SAVING_THROW_BONUS_SPECIFIC, SAVING_THROW_WILL);
}
if(GetRacialType(oPC) == RACIAL_TYPE_KRINTH)
{
SetCompositeBonus(oSkin, "KrinthSave", 1, ITEM_PROPERTY_SAVING_THROW_BONUS, SAVING_THROW_ALL);
}