Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
So what you need to do is put a script on the weapon at pre-levels/10000. In part of it you look to see if the Two-Weapon Defense feat is live and if so you add a bonus to it. If not live and find we are fighting defensively then we add a shield bonus on its own.Thanks for the pointers on the Spell list issue, I think I will come back to that as Shadow suggests, it is not all that important at the moment and is listed as a variant ability. I want to add it eventually, but I figure move on to more basics before trying confusing things.
Working on Equipment right now.
Not a lot of new stuff from the setting really.
Main-Gauche Dagger brings up a question though. The description lists them as granted an additional +1 shield bonus if used with Two-Weapon Defense feat or when fighting defensively. Is it possible to add this modifier?
[B][COLOR="Green"]~ set abValue to our +1 bonus[/COLOR][/B]
field[abValue].value += 1
[B][COLOR="Green"]~ if not equipped in main hand or off-hand get out now![/COLOR][/B]
doneif (field[gIsEquip].value + field[wIs2nd].value = 0)
[B][COLOR="Green"]~ If we have the two-weapon defense feat then increase its values by +1.[/COLOR][/B]
If (hero.childlives[fTwoWepDef] <> 0) Then
#value[fTwoWepDef] += field[abValue].value
#value2[fTwoWepDef] += field[abValue].value
[B][COLOR="Green"]~ if we're fighting defensively without two-weapon defense feat
~ then give a shield bonus of +1.[/COLOR][/B]
Elseif (#hascondition[pstFtDefen] <> 0) then
#applybonus[tACShield, hero.child[ArmorClass], field[abValue].value]
Endif
~if we have the ISWG source enabled, we have special abilities
if (hero.tagis[source.CSWorldGui] <> 0) then
~we get one ethnicity pick
field[rGiveSpec].value = 1
endif
~if we have the Birthright source enabled, we have special abilities
if (hero.tagis[source.Birthright] <> 0) then
~we get one ethnicity pick
field[rGiveSpec].value = 1
endif