Domannaa

Thug rogue (Needs longsword. Line 13?)

Jan 5th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.27 KB | None | 0 0
  1. AddSubClass("rogue", "Thug", {
  2. regExpSearch : /^(?=.*(rogue|miscreant|thug))(?=.*Thug).*$/i,
  3. subname : "Thug",
  4. source : ["HB", 0],
  5. features : {
  6. "subclassfeature3": {
  7. name: "Thug's Arsenal",
  8. source: ["HB", 0],
  9. minlevel: 3,
  10. description: "\n " + "I treat unarmed strikes and simple melee weapons as having the finesse trait",
  11. calcChanges: {
  12. atkAdd: [
  13. "if (classes.known.rogue && classes.known.rogue.level && isMeleeWeapon && ((/unarmed strike/i).test(WeaponName) || (/simple/i).test(theWea.type))) { var sneakAtk = Math.ceil(classes.known.rogue.level / 2); fields.Mod = StrDex; fields.Description += (fields.Description ? '; ' : '') + 'Finesse; Sneak attack ' + sneakAtk + 'd6'; }; ",
  14. "I treat unarmed strikes and simple melee weapons as having the finesse trait."
  15. ]
  16. }
  17. },
  18. "subclassfeature3.1" : {
  19. name : "Dangerous Disposition",
  20. source : ["HB", 0],
  21. minlevel : 3,
  22. description : desc([
  23. "As a bonus action, I can make an intimidation check"
  24. ]),
  25. action : ["bonus action", ""]
  26. },
  27. "subclassfeature3.2" : {
  28. name : "Intimidating Combatant",
  29. source : ["HB", 0],
  30. minlevel : 3,
  31. description : desc([
  32. "As a bonus action, I threaten a creature that isn't incapacitated and throw it off its guard",
  33. "I have to make a Charisma (Intimidation) check vs. the target's Wisdom (Insight) check",
  34. "If I succeed, I can use my sneak attack on it even if I don't have adv. (but not if disadv.)",
  35. "This benefit lasts for 1 minute or until I successfully use Intimidating Combatant again"
  36. ]),
  37. action : ["bonus action", ""]
  38. },
  39. "subclassfeature9" : {
  40. name : "Frightful Presence",
  41. source : ["HB", 0],
  42. minlevel : 9,
  43. description : desc([
  44. "A creature under the effect of intimidating combatant suffers the frightened condition",
  45. "At they end of each of its turns, it can make a Wisdom saving throw",
  46. "The DC of this save is 8 + my Charisma bonus + my Proficiency bonus",
  47. "The creature has advantage on this save if i haven't dealt it damage in the last round.",
  48. "The creature automatically loses the frightened condition if i make a ranged attack or move away"
  49. ])
  50. },
  51. "subclassfeature13" : {
  52. name : "Unquestionable Demeanor",
  53. source : ["HB", 0],
  54. minlevel : 13,
  55. description : desc([
  56. "When rolling a charisma (Persuasion) or Charisma (Deception) check, i can choose to make a new roll",
  57. "I use my Charisma (Intimidation) instead, even if the result is lower than the original roll"
  58. ])
  59. },
  60. "subclassfeature17" : {
  61. name : "Bully",
  62. source : ["HB", 0],
  63. minlevel : 17,
  64. description : "\n " + "When a creature is frightened, I add 2d6 to sneak attacks against that target"
  65. }
  66. }
  67. });
Add Comment
Please, Sign In to add comment