Starfinder Playlist
Page 1 of 14 12311 ... Last
  1. #1

    5E - Theogeek's Natural 20

    !!! This has been moved to the forge !!!

    As always, let me know if something's wonky. I try to test most use cases, but invariably miss some.

    Current Version: 6.4

    -=-=-=-=-=-=-=-
    VERSION UPDATE
    6.4: Added option to allow Nat20's to ignore crit immunity (per RAW, defaults to "Yes")
    6.3.1: Fixed bug in how effects were restored
    6.3: Add PFRPG2-Legacy support
    6.2: Bugfix for conflict with Clock Adjuster extension.
    6.1.6: Fix PFRPG2 output of "[NATURAL 20]"
    6.1.5: Cleanup code and fix PF2 bug. It works, but doesn't display [NATURAL 20].
    6.1.4: Bugfix to handle ADV/DIS correctly. Thanks for the report MrDDT and nephranka!

    -=-=-=-=-=-=-=-
    TERMS:
    1. normal critical refers to a critical hit that is not a natural 20.
    2. nat20 refers to a critical hit that is a natural 20.
    3. super critical refers to a critical hit that even affects crit immune targets

    -=-=-=-=-=-=-=-
    OPTIONS:
    1. Nat20's ignore crit immunity: [Yes* / No]
    2. Shift-click Damage behavior: [Natural 20* / Normal Critical]

    -=-=-=-=-=-=-=-

    Effects would look like this:

    • DMG: 4d6 nat20
    • DMG: 1d8 fire,nat20
    • DMG: 1d6 normalcrit
    • DMG: 1d12 supercrit
    • DMG: 1d12 nat20


    etc...

    IMPORTANT NOTE: If you are adding these new types as EFFECTS rather than as weapon damage, they can be combined, but take care how you do it. The ruleset effects parser will combine effects based on the first damage type so you may get undesired results. Experiment a bit with how it turns out, but some things aren't possible with this extension - if all of the above effects were added to a character, the last two d12s would be combined as 2d12 supercrit,nat20.

    In other words, don't get too fancy with the spices when using effects.


    -=-=-=-=-=-=-=-
    DETAIL:
    I created this extension to give the user the ability to distinguish between a normal critical and a natural 20, mainly to handle the case of weapons that do extra damage when a natural 20 is rolled. Critical hits and natural 20s are like rectangles and squares…all natural 20s are criticals, but not all criticals are natural 20s. So, while a nat20 is a critical hit, it is sometimes handled differently than other critical hits. For example, a sword of sharpness deals extra damage only if a 20 is rolled (14 or 4d6 depending on the rules you are using – I like 4d6.)

    Using the standard FantasyGrounds mechanic, you could add an effect like this:

    DMG: 4d6 critical

    … which would be fine for most cases, except for characters with a wider crit range – some score critical hits on 18, 19, or 20. Swords of sharpness should NOT do extra damage on anything but a natural 20, even though for some characters an 18 or 19 is a critical hit.

    This extension adds three damage types, one of which is nat20, such that you can now add this effect:

    DMG: 4d6 nat20

    … and that damage will only be triggered if the attack roll is a natural 20.

    Another type is normalcrit. When the parser encounters this:

    DMG: 1d4 normalcrit

    … it will apply it on a critical hit that is NOT a natural 20.

    The last type is supercrit When the parser encounters this:

    DMG: 1d4 supercrit

    ... it will apply it on any critical hit, even against targets that are crit immune.

    These types allow combinations like this to be added (as effects or to weapon damage):

    DMG: 2d6 slashing
    DMG: 1d4 normalcrit
    DMG: 1d8 nat20
    DMG: 1d6 supercrit
    DMG: 1d10 supercrit,normalcrit
    DMG: 1d12 supercrit,nat20


    … which would result in the following damage if everything were added at once:
    on a non-critical roll: 2d6
    on a normal critical roll: 2d6 + 1d4 + 1d6 +1d10 (with the 1d6 damaging even crit immune targets)
    on a natural 20: 2d6 + 1d8 + 1d6 + 1d12 (with the 1d6 and 1d12 damaging even crit immune targets)

    -=-=-=-=-=-=-=-
    USAGE NOTES:
    Given the way Fantasy Grounds parses damage clauses, this extension really only works if you DO NOT specify the damage type along with the nat20modifier. FantasyGrounds combines damage of like types and that is not always desired. So, unless you want the nat20 damage to be of a different type than the standard damage of the weapon, do not specify it. For example…

    DMG: 4d6 nat20 (this will inherit the weapon damage type)
    DMG: 1d8 critical (this will also inherit the weapon damage type)

    not

    DMG: 4d6 slashing,nat20
    DMG: 1d8 slashing,critical


    That combination screws up the output because FantasyGrounds combines those damage types and strange things happen in this case.

    -=-=-=-=-=-=-=-
    EXAMPLE:
    “Test Dood 1” is a mighty half-orc barbarian with a crit range of 19-20. He is using a longsword (1d8 slashing damage), and has the following effects applied to him because of the sweet demonstration sword he is using:
    • Every hit does 1d4 fire damage
    • All Critical hits (including natural 20s) do 1d6 lightning damage
    • Normal critical hits (not natural 20s) do 1d8 poison damage
    • Natural 20’s do 2d12 weapon damage

    Here he is (from the combat tracker):



    On a non-critical hit, the damage is expected to include only the d8 (normal damage from the longsword) and the d4 (fire damage from the effect). The other effects only apply for critical hits or for natural 20s. This is shown here:



    Next is the normal critical hit. We would expect to see the 2d8 (longsword, one extra critical die), the 2d4 (fire, one extra for the critical), and now the d6 (lightning, no extra because it only rolls on a critical) and the d8 (poison, also no extra for the same reason) applied. This is shown here:



    And finally, a natural 20. This time, we would expect to see the 2d8 (longsword), the 2d4 (fire), the d6 (lightning), NOT the d8 (poison), and the 2d12 (no extra rolls because they are only rolled on a nat20) damage applied. This is shown here:



    Some notes.
    1. Don't get too fancy with the spices when creating damages. Some combinations can cause weird behavior.
    2. This extension does not modify any core ruleset code, instead, it hijacks certain functions and modifies the damages before and after the ruleset functions have done their work. This makes it far less likely to break if the ruleset code changes, and would likely only break if the ruleset changed the format of its output.



    Enjoy!
    Attached Images Attached Images
    Last edited by TheoGeek; December 31st, 2023 at 02:12. Reason: Update for 6.4

  2. #2
    OK, had to release a bug fix already. It only affects output, but it would replace [CRITICAL] with [CRITICAL][NAT20] even when the roll was not a nat 20.

  3. #3
    My various groups love this!!!

  4. #4
    Hi!
    Do you think it might be interesting, to apply an effect on a Crit or Natural 20?

    For example I have a weapon that at Nat20, asks for a Save for Wisdom DC 14, if failed the target becomes frightened.

    I know this would be asking to combine two things a cast + an effect.. but if you could add an effect on a Critical that would be already really cool to have in my opinion !!!?

    Thanks!

  5. #5
    Quote Originally Posted by vaughnlannister View Post
    Hi!
    Do you think it might be interesting, to apply an effect on a Crit or Natural 20?

    For example I have a weapon that at Nat20, asks for a Save for Wisdom DC 14, if failed the target becomes frightened.

    I know this would be asking to combine two things a cast + an effect.. but if you could add an effect on a Critical that would be already really cool to have in my opinion !!!?

    Thanks!
    I don't think that would be an easy add. I can look into it tho...might be a good exercise.

  6. #6
    Awesome !!!!
    Would be so cool!!!!

  7. #7
    This seems to no longer work when I have the Elven Accuracy Extension installed.

  8. #8
    Quote Originally Posted by Teraxe View Post
    This seems to no longer work when I have the Elven Accuracy Extension installed.
    hmmm..I looked at the code for the Elven Accuracy extension and it does modify onAttack which I use the results of. I'm not familiar with Elven Accuracy, so I don't know of a test case I can set up. What kind of behavior are you seeing in Nat20 with the Elven Accuracy Extension enabled?

    Thanks!

  9. #9
    Quote Originally Posted by TheoGeek View Post
    hmmm..I looked at the code for the Elven Accuracy extension and it does modify on Attack which I use the results of. I'm not familiar with Elven Accuracy, so I don't know of a test case I can set up. What kind of behavior are you seeing in Nat20 with the Elven Accuracy Extension enabled?

    Thanks!
    The Elven Accuracy Extension works, it is the Nat20 Extension that doesn't work when the Elven Accuracy is installed.

    Elven Accuracy is a Feat that lets you reroll a D20 when you attack with advantage. How the Extension handles it is, if you have Elven Accuracy and roll with advantage it rolls 3d20 and keeps the best the output looks like this

    Elven Accuracy.PNG

    Here is what I see with NAT20 extension enabled with the Elven Accuracy Extension. If I make an attack using these effects.

    NAT20.PNG

    The output looks like this.

    NAT20-2.PNG

    If I turn off the Elven Accuracy extension and use the same effects, it looks like this.

    NAT20-3.PNG
    Attached Images Attached Images
    Last edited by Teraxe; November 3rd, 2020 at 00:46.

  10. #10
    Quote Originally Posted by Teraxe View Post
    The Elven Accuracy Extension works, it is the Nat20 Extension that doesn't work when the Elven Accuracy is installed.

    Elven Accuracy is a Feat that lets you reroll a D20 when you attack with advantage. How the Extension handles it is, if you have Elven Accuracy and roll with advantage it rolls 3d20 and keeps the best the output looks like this

    Elven Accuracy.PNG

    Here is what I see with NAT20 extension enabled with the Elven Accuracy Extension. If I make an attack using these effects.

    NAT20.PNG

    The output looks like this.

    NAT20-2.PNG

    If I turn off the Elven Accuracy extension and use the same effects, it looks like this.

    NAT20-3.PNG
    Thanks for the pics!

    So, I loaded the Elven Accuracy extension and put a couple effects on my character and it works as I'd expect, but I did not use Elven Accuracy. I did notice that it didn't print "Natural 20" in your Nat 20 hit, that's something I can look into.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
DICE PACKS BUNDLE

Log in

Log in