I didn't get a chance to write up a user file last night, but the change should be pretty easy for you to make. You should see something like the following in the Eval Script:
Code:
if (tagis[Helper.GrwNoDefs] = 0) then
activepen = round(field[pwRanks].value/2, 0, 1)
endif
Change that to
Code:
if (tagis[Helper.GrwNoDefs] = 0) then
activepen = round(field[pwRanks].value, 0, 1)
endif
and you'll lose a defense rank for every rank of Growth. It's not too difficult to extend that to creating Flaws that will do this for you (the Helper.GrwNoDefs is a "tag", which you will see is assigned in the parallel Flaw/Extra), although I will leave that as an exercise to the reader unless you really get stumped.
Bookmarks