Arthurrw wrote:
>
>
> Thanks for the help on that now I need 2 things.
>
> I need to know where I can find Energy Resistance, for the favored soul
> I need to add Energy Resistance 10 to the class 3 different times. Is
> there a way to make it so that I can choose a type of energy when I get
> the skill? And where do I find them in the list to bootstrp them?
If you need to be able to choose which energy resistance to get, you
should add the different resistances as a 'custom special' ability, then
let the class choose up to 3 of them. For example, you could create a
favoured soul "Fire Resistance" custom ability that bootstrapped the
general "Fire Resistance" ability (you would bootstrap the thing
"xDamRsFire") and then did the following in a script:
#applyresist[xDamRsFire, 10]
You would create one of those for each possible resistance the favored
soul could take, then allow the user to choose up to 3 of them.
> Also it gets DR 10/silver or 10/cold iron based on alignment how would I
> do that?
You would bootstrap the "xDamRdSil" (silver) and "xDamRdIron" (cold
iron) things from the class thing, then do something like this in a
script on it:
if (hero.tagis[Alignment.Lawful] <> 0) then
#applydr[xDamRdSil, 10]
else
#applydr[xDamRdIron, 10]
endif
This gives the hero 10 DR vs Silver if he's lawful, or 10 DR vs Cold
Iron otherwise.
Hope this helps,
--
Colen McAlister (colen@wolflair.com)
Chief Engineer, Lone Wolf Development
http://www.wolflair.com/