diff --git a/nwn/nwnprc/trunk/2das/feat.2da b/nwn/nwnprc/trunk/2das/feat.2da
index 89921f95..8f95475c 100644
--- a/nwn/nwnprc/trunk/2das/feat.2da
+++ b/nwn/nwnprc/trunk/2das/feat.2da
@@ -25998,7 +25998,7 @@
25994 **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** ****
25995 **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** ****
25996 **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** ****
-25997 **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** ****
+25997 FEAT_INVESTIGATOR 16990414 16990415 ife_alertness **** **** **** **** **** **** **** **** **** **** 0 0 1 **** **** **** **** 0.5 **** **** **** **** **** **** **** **** **** **** **** **** FEAT_INVESTIGATOR 5 **** **** **** **** **** 0 1
25998 FEAT_CHARMING_THE_ARROW 16990312 16990313 if_charm_arrow **** **** **** **** **** **** **** **** **** **** 0 0 1 **** **** **** **** 1 **** **** **** 3239 4718 **** **** **** **** **** **** **** FEAT_CHARMING_THE_ARROW 6 0 **** **** **** **** 0 0
25999 FEAT_MARTIAL_STALKER 16990314 16990315 IR_NINJA **** **** **** **** **** **** **** **** 2488 45 0 0 1 **** **** **** **** 0.5 **** **** **** **** **** **** **** **** **** **** **** **** FEAT_MARTIAL_STALKER 5 0 **** **** **** **** 0 0
26000 **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** **** ****
diff --git a/nwn/nwnprc/trunk/include/prc_feat_const.nss b/nwn/nwnprc/trunk/include/prc_feat_const.nss
index a455282b..6a11350d 100644
--- a/nwn/nwnprc/trunk/include/prc_feat_const.nss
+++ b/nwn/nwnprc/trunk/include/prc_feat_const.nss
@@ -3654,6 +3654,7 @@ const int FEAT_IMPROVED_TRIP = 2807;
const int FEAT_PRC_IMP_DISARM = 5196;
const int FEAT_AWESOME_BLOW = 5370;
const int FEAT_IMPROVED_SHIELD_BASH = 3250;
+const int FEAT_INVESTIGATOR = 25997;
// Player's Handbook II Feats
const int FEAT_STEADFAST_DETERMINATION = 3267;
diff --git a/nwn/nwnprc/trunk/scripts/ft_hidntalent_ft.nss b/nwn/nwnprc/trunk/scripts/ft_hidntalent_ft.nss
index d01adcfc..002dc913 100644
--- a/nwn/nwnprc/trunk/scripts/ft_hidntalent_ft.nss
+++ b/nwn/nwnprc/trunk/scripts/ft_hidntalent_ft.nss
@@ -54,7 +54,7 @@ void main()
int nTotalRows = FEAT_HIDDEN_TALENT_BIOFEEDBACK - FEAT_HIDDEN_TALENT_GRIP_IRON;
int nEndFeat = nStartFeat + nTotalRows;
- string sFeat = Get2DAString("feats", "LABEL", nRow);
+ string sFeat = Get2DAString("feat", "LABEL", nRow);
effect eEffect = GetFirstEffect(oPC);
while (GetIsEffectValid(eEffect))
diff --git a/nwn/nwnprc/trunk/scripts/prc_feats.nss b/nwn/nwnprc/trunk/scripts/prc_feats.nss
index 5bb83b91..4b7fb444 100644
--- a/nwn/nwnprc/trunk/scripts/prc_feats.nss
+++ b/nwn/nwnprc/trunk/scripts/prc_feats.nss
@@ -875,6 +875,11 @@ void PRCFeat_AddCompositeBonuses(object oPC, object oSkin)
SetCompositeBonus(oSkin, "VremyonniL", 2, ITEM_PROPERTY_SKILL_BONUS,SKILL_LORE);
SetCompositeBonus(oSkin, "VremyonniS", 2, ITEM_PROPERTY_SKILL_BONUS,SKILL_SPELLCRAFT);
}
+ if(GetHasFeat(FEAT_INVESTIGATOR, oPC))
+ {
+ SetCompositeBonus(oSkin, "InvestigatorSenseMotive", 2, ITEM_PROPERTY_SKILL_BONUS, SKILL_SENSE_MOTIVE);
+ SetCompositeBonus(oSkin, "InvestogatorSearch", 2, ITEM_PROPERTY_SKILL_BONUS, SKILL_SEARCH);
+ }
if(GetHasFeat(FEAT_UNDEAD_HD, oPC))
{
int nClass1 = GetClassByPosition(1, oPC);
diff --git a/nwn/nwnprc/trunk/tlk/prc8_consortium.tlk b/nwn/nwnprc/trunk/tlk/prc8_consortium.tlk
index 2892e125..706917cb 100644
Binary files a/nwn/nwnprc/trunk/tlk/prc8_consortium.tlk and b/nwn/nwnprc/trunk/tlk/prc8_consortium.tlk differ
diff --git a/nwn/nwnprc/trunk/tlk/prc8_consortium.tlk.xml b/nwn/nwnprc/trunk/tlk/prc8_consortium.tlk.xml
index 1434bd1a..5b6b0110 100644
--- a/nwn/nwnprc/trunk/tlk/prc8_consortium.tlk.xml
+++ b/nwn/nwnprc/trunk/tlk/prc8_consortium.tlk.xml
@@ -73262,6 +73262,10 @@ Prerequisite: Ki Power, Proficiency with all martial weapons
Specifics: Your fighter and ninja levels stack for the purpose of determining the size of your ki pool, as well as your AC bonus. For example, a 5th-level fighter/1st-level ninja with this feat could use his ki powers a number of times equal to 3 (one-half his ninja and fighter levels) + his Wisdom bonus (if any), and would have a +1 bonus to AC (as if he were a 6th-level ninja).
Use: Automatic
Special: A fighter can select Martial Stalker as one of his fighter bonus feats
+ Investigator
+ Type of Feat: General
+Benefit: You get a +2 bonus on all Sense Motive and Search checks.
+Use: Automatic
## Hidden Talent Reserve ##
Hidden Talent
Type of Feat: General
@@ -73532,4 +73536,4 @@ Specifics: You gain a +4 perfection bonus on Will saving throws against charm an
Type of Feat: Exalted
Prerequisite: Wis 13+
Specifics: You gain a +2 bonus on saving throws to resist any fear effect, despair effect (such as the crushing despair spell), or similar mind-affecting condition, but not charms or compulsions (such as the charm person and dominate person spells)
-
\ No newline at end of file
+