It seems that you're using an outdated browser. Some things may not work as they should (or don't work at all).
We suggest you upgrade newer and better browser like: Chrome, Firefox, Internet Explorer or Opera

×
I thought I had already learned just about everything for hunting in Gothic 2... then I meet Alligator Jack and he offers to teach me to "Pull Teeth" and "Skin Animals"...

Well it seems that "Pull Teeth" really just is the same skill I learned earlier for getting Teeth... but what is "Skin Animals"? I got the skinning skill for 5LP from Bosper ages ago... but this costs 3LP... oh and I guess I don't have this one...

So confused...
This question / problem has been solved by helpo1image
This one is (NPC_TALENT_TAKEANIMALTROPHY,TROPHY_ReptileSkin), aka Skin Reptiles, so it allows you to skin Lurkers, Snappers & Dragon Snappers, Razors, Warans & Fire Warans and Swampsharks. It'll allow you to extract one Reptile Skin from each one killed.
if(PLAYER_TALENT_TAKEANIMALTROPHY[TROPHY_ReptileSkin] == TRUE)
{
if(slf.aivar[AIV_MM_REAL_ID] == ID_LURKER)
{
CreateInvItems(slf,itat_LurkerSkin,1);
};
if(slf.aivar[AIV_MM_REAL_ID] == ID_SNAPPER)
{
CreateInvItems(slf,itat_LurkerSkin,1);
};
if(slf.aivar[AIV_MM_REAL_ID] == ID_Razor)
{
CreateInvItems(slf,itat_LurkerSkin,1);
};
if(slf.aivar[AIV_MM_REAL_ID] == ID_DRAGONSNAPPER)
{
CreateInvItems(slf,itat_LurkerSkin,1);
};
if(slf.aivar[AIV_MM_REAL_ID] == ID_WARAN)
{
CreateInvItems(slf,itat_LurkerSkin,1);
};
if(slf.aivar[AIV_MM_REAL_ID] == ID_FIREWARAN)
{
CreateInvItems(slf,itat_LurkerSkin,1);
};
if(slf.aivar[AIV_MM_REAL_ID] == ID_SWAMPSHARK)
{
CreateInvItems(slf,ItAt_SharkSkin,1);
};
};
Thanks! I was actually piecing a little bit of it together myself after I killed snappers and lizards and they dropped "skin of a reptile". Also I found out there's a journal section which gives a better idea what hunting skills actually do!

First skinning (5LP) is for animal furs, this one is for reptile skins. Shame they didn't make it more distinctive.
avatar
bushwhacker2k: Thanks! I was actually piecing a little bit of it together myself after I killed snappers and lizards and they dropped "skin of a reptile". Also I found out there's a journal section which gives a better idea what hunting skills actually do!

First skinning (5LP) is for animal furs, this one is for reptile skins. Shame they didn't make it more distinctive.
But the good thing is that you can't pay twice so no dialogue saying you already knew all he could teach meant it had to be something different. But, it would be nice if it were clearly stated.