• 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

M&M 3rd ed. Speed Modification

If it alters the base movement speed of the hero, that's not something that can be done right now. I should be able to allow you to increase or decrease the rank of your base movement speed independently of size, etc; I'll put that on the list for next version.
 
I don't know how extensive of a change it would be, but would you be able to, at that time, change Speed and Flight to also be affected by things like Shrinking to reduce the Movement rate? I think that it would just be a matter of changing the text to incorporate the size modifier, but I cannot swear to it. If there's the ability to access the movement speed values, that would work too.
 
You should be able to do that already if you're re-implementing the "Shrinking" power, by doing something like this:

Code:
foreach pick in hero where "thingid.pwFlight"
  eachpick.field[pwStkRank].value -= 1
  nexteach

That should go through every "Flight" power on the hero and reduce their ranks by 1, or you could change it to be the rank of the Shrinking power or whatever.
 
Back
Top