Diehard had incorrect prereqs
Diehard had incorrect prereqs. Non-Dex TWF ranger was being blocked from taking ITWF.
This commit is contained in:
parent
93c1b5785d
commit
6fb03d4d2a
@ -3298,7 +3298,7 @@
|
||||
3294 FEAT_WEAPON_TEMPUS_KUKRI 16822972 16822945 ife_X2WpCh **** **** **** **** **** **** **** **** 118 **** 0 0 0 **** **** **** **** 0.5 **** 94 **** **** **** **** **** **** **** **** **** **** FEAT_WEAPON_TEMPUS_KUKRI 1 **** **** **** **** **** 0 1
|
||||
3295 FEAT_ARMY_POWER 16822973 16822974 id_war **** **** **** **** **** **** **** **** **** **** 0 0 0 8 5 2219 **** 0.5 1 **** 1 **** **** **** **** **** **** **** **** **** FEAT_ARMY_POWER 6 0 **** **** **** **** 0 1
|
||||
3296 FEAT_BATTLEFORGER 16822983 16822984 ife_X2SkFCrAr **** **** **** **** **** **** **** **** **** **** 0 0 0 **** **** **** **** 0.5 **** **** **** **** **** **** **** **** **** **** **** **** FEAT_BATTLEFORGER 6 **** **** **** **** **** 0 1
|
||||
3297 FEAT_DIEHARD 16822975 16822976 ife_dibod 2 **** **** **** **** **** **** **** 22 40 0 0 1 **** **** **** **** 0.5 **** **** **** **** **** **** **** **** **** **** **** **** FEAT_DIEHARD 6 **** 8 **** **** **** 0 1
|
||||
3297 FEAT_DIEHARD 16822975 16822976 ife_dibod **** **** **** **** **** **** **** **** 2568 **** 0 0 1 **** **** **** **** 0.5 **** **** **** **** **** **** **** **** **** **** **** **** FEAT_DIEHARD 6 **** **** **** **** **** 0 1
|
||||
3298 FEAT_IDENTIFY 16822985 16822986 is_Identify **** **** **** **** **** **** **** **** **** **** 0 0 0 **** **** 86 **** 0.5 3 **** 1 **** **** **** **** **** **** **** **** **** FEAT_IDENTIFY 6 **** **** **** **** **** 0 1
|
||||
3299 FEAT_ENCHANT_WEAPON1 16822977 16822978 is_X2MagcWeap **** **** **** **** **** **** **** **** **** **** 0 0 0 9 **** 2220 3300 0.5 1 **** 1 **** **** **** **** **** **** **** **** **** FEAT_ENCHANT_WEAPON1 6 **** **** **** **** **** 0 1
|
||||
3300 FEAT_ENCHANT_WEAPON2 16822979 16822980 is_X2MagcWeap **** **** **** **** **** **** **** **** **** **** 0 0 0 9 **** 2220 3301 0.5 1 **** 1 **** **** **** **** **** **** **** **** **** FEAT_ENCHANT_WEAPON2 6 **** **** **** **** **** 0 1
|
||||
|
@ -2433,19 +2433,26 @@ int ToB()
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
if (GetHasFeat(FEAT_IMPROVED_TWO_WEAPON_FIGHTING) && !GetHasFeat(FEAT_AMBIDEXTERITY) && !GetPRCSwitch(PRC_35_TWO_WEAPON_FIGHTING) && !GetLevelByClass(CLASS_TYPE_TEMPEST) && 9 > GetLevelByClass(CLASS_TYPE_RANGER))
|
||||
if (GetHasFeat(FEAT_IMPROVED_TWO_WEAPON_FIGHTING) && !GetHasFeat(FEAT_AMBIDEXTERITY) && !GetPRCSwitch(PRC_35_TWO_WEAPON_FIGHTING) && !GetLevelByClass(CLASS_TYPE_TEMPEST) && 9 > !GetLevelByClass(CLASS_TYPE_RANGER))
|
||||
{
|
||||
FloatingTextStringOnCreature("You must have ambidexterity to take Improved Two Weapon Fighting", OBJECT_SELF, FALSE);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
if (GetHasFeat(FEAT_IMPROVED_TWO_WEAPON_FIGHTING) && GetPRCSwitch(PRC_35_TWO_WEAPON_FIGHTING) && 17 > GetAbilityScore(OBJECT_SELF, ABILITY_DEXTERITY, TRUE) && !GetLevelByClass(CLASS_TYPE_TEMPEST) && 9 > GetLevelByClass(CLASS_TYPE_RANGER))
|
||||
if (GetHasFeat(FEAT_IMPROVED_TWO_WEAPON_FIGHTING) && GetPRCSwitch(PRC_35_TWO_WEAPON_FIGHTING) && 17 > GetAbilityScore(OBJECT_SELF, ABILITY_DEXTERITY, TRUE) && !GetLevelByClass(CLASS_TYPE_TEMPEST) &&
|
||||
GetLevelByClass(CLASS_TYPE_RANGER) < 9)
|
||||
{
|
||||
FloatingTextStringOnCreature("You must have 17 Dexterity to take Improved Two Weapon Fighting under 3.5 rules", OBJECT_SELF, FALSE);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
if (GetHasFeat(FEAT_TWO_WEAPON_FIGHTING) && GetPRCSwitch(PRC_35_TWO_WEAPON_FIGHTING) && 15 > GetAbilityScore(OBJECT_SELF, ABILITY_DEXTERITY, TRUE) && !GetLevelByClass(CLASS_TYPE_RANGER) && 2 > GetLevelByClass(CLASS_TYPE_CW_SAMURAI))
|
||||
/* if (GetHasFeat(FEAT_IMPROVED_TWO_WEAPON_FIGHTING) && GetPRCSwitch(PRC_35_TWO_WEAPON_FIGHTING) && 17 > GetAbilityScore(OBJECT_SELF, ABILITY_DEXTERITY, TRUE) && !GetLevelByClass(CLASS_TYPE_TEMPEST) && 9 > !GetLevelByClass(CLASS_TYPE_RANGER))
|
||||
{
|
||||
FloatingTextStringOnCreature("You must have 17 Dexterity to take Improved Two Weapon Fighting under 3.5 rules", OBJECT_SELF, FALSE);
|
||||
return TRUE;
|
||||
} */
|
||||
|
||||
if (GetHasFeat(FEAT_TWO_WEAPON_FIGHTING) && GetPRCSwitch(PRC_35_TWO_WEAPON_FIGHTING) && 15 > GetAbilityScore(OBJECT_SELF, ABILITY_DEXTERITY, TRUE) && !GetLevelByClass(CLASS_TYPE_RANGER) && 2 > !GetLevelByClass(CLASS_TYPE_CW_SAMURAI))
|
||||
{
|
||||
FloatingTextStringOnCreature("You must have 15 Dexterity to take Two Weapon Fighting under 3.5 rules", OBJECT_SELF, FALSE);
|
||||
return TRUE;
|
||||
|
@ -8318,9 +8318,9 @@ Prerequisite: Access to Army.
|
||||
Specifics: Inspire Allies: Able to inspire allies within 30 feet, giving them +2 on saving throws, attacks rolls, ability checks (turning), skill checks and damages rolls. Allies must be able to hear you.
|
||||
The effect will last for charisma modifier rounds.
|
||||
Use: Automatic.</entry>
|
||||
<entry id="45759" lang="en" sex="m">Die Hard</entry>
|
||||
<entry id="45759" lang="en" sex="m">Diehard</entry>
|
||||
<entry id="45760" lang="en" sex="m">Type of Feat: General
|
||||
Prerequisite: Base Attack Bonus 2, Iron Will, Toughness, Crusader level 10 or Battleguard of Tempus level 7
|
||||
Prerequisite: Endurance or Crusader level 10 or Battleguard of Tempus level 7
|
||||
Specifics: When your hit points are reduced to 0 or below, you automatically become stable. You heal to 1 HP. Your bonus attack decreases and your spells fail.
|
||||
Use: Automatic.</entry>
|
||||
<entry id="45761" lang="en" sex="m">Enchant Weapon +1</entry>
|
||||
|
Loading…
x
Reference in New Issue
Block a user