I am trying to make the Valhalla Graduate from Necropolis add to my Command Radius derived trait. The Valhalla Graduate adds +1 per rank. The only thing that I can think of right now that adds per Rank is the Grit derived trait, but that is not written in a way so as to be added tp an Edge.
For the record, the following is what we use to make it add +1 to the Battle rolls:
That allows you to add +1 to the result of a specific Knowledge skill roll.
Code:
perform #traitadjust[trCommand,+,0,"Valhalla Graduate"]
For the record, the following is what we use to make it add +1 to the Battle rolls:
Code:
foreach pick in hero where "thingid.skKnow"
if ( compare(lowercase(eachpick.field[domDomain].text),"battle" ) = 0) then
eachpick.field[trtRoll].value += 1
endif
nexteach