• Please note: In an effort to ensure that all of our users feel welcome on our forums, we’ve updated our forum rules. You can review the updated rules here: http://forums.wolflair.com/showthread.php?t=5528.

    If a fellow Community member is not following the forum rules, please report the post by clicking the Report button (the red yield sign on the left) located on every post. This will notify the moderators directly. If you have any questions about these new rules, please contact support@wolflair.com.

    - The Lone Wolf Development Team

1 "Racial" Ability providing one of several edges?

TCArknight

Well-known member
Howdy!

I'm working on the Dog Boy race for Savage Rifts and this has me stumped.

The Dog Boy has the Breed Advantage racial ability that lets them choose 1 of several edges as 'bonus' edge provided by the ability. I've also tagged the appropriate edges with a new BreedAdv group tag.

In other game systems, this would be on some kind of main 'Racial' tab. In SW, there isn't such a tab.

Is there an example of this situation in the Sci-Fi Companion files? Or would I need to create the new tab from scratch to allow this?

Thanks!
TC
 
Some have made alternate versions of the race, each with the thing it adds bootstrapped on.

But that can be lame. A solution that I have used a few times is that I make up an edge, call it "Dog Boy Edge". This is what is bootstrapped to the character, and it adds an Edge like the Free Edge for Humans. Then what that edge does is complain with a Containerreq that looks for the edges. When it has at least one, it is happy.

So the effect is that the character gets a free edge, but it must be one of those that are specified.

Here is an example:

Message "Must pick W, X, Y, or Z"

Code:
          validif (hero.tagis[Edge.edgW] = 1)
          validif (hero.tagis[Edge.edgX] = 1)
          validif (hero.tagis[Edge.edgY] = 1)
          validif (hero.tagis[Edge.edgZ] = 1)

        if (@ispick <> 0) then
          altpick.linkvalid = 0
          endif
 
Back
Top