rashidali wrote:
>
>
> One of my players wants to take Monkey Grip from Complete Warrior. It
> says that you can treat a large weapon as a medium weapon but with a -2
> attack penalty. I was looking how to do this, but really can't figure it
> out. I was thinking of taking the -2 to attack from a flaw, but don't
> know where I can take a weapon and make it one category less. Any help?
To do this, you'll need to do two things:
* Add the ability to use larger weapons
* Penalise larger weapons by -2
This script, running at Pre-Levels/5000, should do the trick:
~ Add the ability to use weapons one size larger
perform hero.assign[Hero.HeavyWeps]
~ Go through our list of weapons, applying a -2 penalty to
~ all weapons larger than the hero
foreach pick in hero where "component.BaseWep"
if (eachpick.field[gSizeDiff].value > 0) then
eachpick.field[wAttack].value -= 2
endif
nexteach
Hope this helps!
--
Colen McAlister,
colen@wolflair.com