Advertisement
Guest User

Cleric: Vengeance Domain

a guest
Dec 9th, 2020
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var iFileName = "Cleric - Vengeance Domain";
  2. RequiredSheetVersion(13);
  3.  
  4. SourceList["HB"] = {
  5.     name : "/u/Thorondr: Vengeance Domain",
  6.     abbreviation : "T:VD",
  7. };
  8.  
  9. AddSubClass("cleric", "vengeance domain", {
  10.     regExpSearch : /^(?=.*(cleric|warriorpriest|clergy|acolyte))(?=.*\b(vengeance|wrath)\b).*$/i,
  11.     subname : "Vengeance Domain",
  12.     source : ["T:VD"],
  13.     spellcastingExtra : ["compelled duel", "hellish rebuke", "see invisibility", "zone of truth", "bestow curse", "counterspell", "phantasmal killer", "staggering smite", "hold monster", "immolation"],
  14.     features : {
  15.         "subclassfeature1" : {
  16.             name : "Bonus Proficency",
  17.             source : ["T:VD"],
  18.             minlevel : 1,
  19.             description : "\n   " + "At level 1 you gain proficency with martial weapons and Insight and Intimidation skill",
  20.             skills : ["Insight", "Intimidation"],
  21.             weapon : [false, true, false]
  22.         },
  23.         "subclassfeature1.1" : {
  24.             name : "Divine Retribution",
  25.             source : ["T:VD"],
  26.             minlevel : 1,
  27.             description : desc([
  28.                 "Also at level 1, you can psychically rebuke attackers.",
  29.                 "When a creature within 5 feet of you that you can see hits you with an attack",
  30.                 "you can use your reaction to force the creature to make an Int saving throw.",
  31.                 "On failed 2d8 dmg, on succes half dmg",
  32.                 "You can use this effect once, twice from level 6, thrice from level 12.",
  33.                 "You regain all expended uses when you finish a short rest."
  34.             ]),
  35.             usages : [1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3],
  36.             recovery : "short rest",
  37.             action : ["reaction", ""],
  38.             additional : levels.map(function (n) {
  39.                 return (n < 6 ? 1 : n < 12 ? 2 : 3);
  40.             })
  41.         },
  42.         "subclassfeature2" : {
  43.             name : "Channel Divinity: Marked for Vengeance",
  44.             source : ["T:VD"],
  45.             minlevel : 2,
  46.             description : desc([
  47.                 "At 2nd level, you learn how to mark a creature as the target of your vengeance.",
  48.                 "With a bonus action, you place a magical mark on a creature within 30 feet of you that you can see.",
  49.                 "While marked, the creature takes an additional 1d8 psychic damage from your attacks, spells and Divine Retribution feature.",
  50.                 "The mark lasts 1 hour or until you dismiss it (requiring no action) or until the creature dies.",
  51.                 "The mark can be extended, 2 hours Wis DC15, from 3 hours every hour Wis DC20.",
  52.                 "Only one creature can be marked at a time― if you recast it, the current mark disappears.",
  53.                 "You can use this feature a number of times equal to your Wisdom modifier (a minimum of once).",
  54.                 "You regain all expended uses when you finish a long rest."
  55.             ]),
  56.             action : ["bonus action", ""]
  57.         },
  58.         "subclassfeature6" : {
  59.             name : "Nowhere to Hide",
  60.             source : ["T:VD"],
  61.             minlevel : 6,
  62.             description : desc([
  63.                 "At 6th level, you learn how to locate the target of your vengeance.",
  64.                 "After spending 10 minutes in prayer, you learn the location of a creature",
  65.                 "that is marked with your Marked for Vengeance ability.",
  66.                 "When the targets location is revealed, you are aware of the general direction and distance to the marked target.",
  67.                 "When you are within 120 feet of the target, you know its exact location."
  68.             ]),
  69.             action : ["action", ""]
  70.         },
  71.         "subclassfeature8" : {
  72.             name : "Swift Retribution",
  73.             source : ["T:VD",],
  74.             minlevel : 8,
  75.             description : desc([
  76.                 "At 8th level, when you or an ally that you can see within 30 feet of you,",
  77.                 "is hit by an attack from a creature you have marked with your Marked for Vengeance ability,",
  78.                 "you can strike them down with the wrath of your deity.",
  79.                 "When the creature hits you or your ally,",
  80.                 "you can use your reaction to deal 1d8 psychic damage to the target.",
  81.                 "At 14th level, this damage increases to 2d8.",
  82.             ]),
  83.             action : ["reaction", ""]
  84.         },
  85.         "subclassfeature17" : {
  86.             name : "Vengeful Divinity",
  87.             source : ["T:VD"],
  88.             minlevel : 17,
  89.             description : desc([
  90.                 "Starting at 17th level, you are a true bane to your marks.",
  91.                 "Once per long rest, while a creature is marked, you can become an Angel of Vengeance.",
  92.                 "While transformed, you gain spectral wings (any armor or clothing you're wearing is unaffected),",
  93.                 "which grant you a flying speed of 60 feet. While you have your wings deployed and are not in the air,",
  94.                 "you can use your wings as a shield if you aren't wielding one already.",
  95.                 "You can add half of your Wisdom modifier to your AC (rounded down, with a minimum of +1).",
  96.                 "Additionally, while in this form, if a creature you've marked deals damage to you,",
  97.                 "you can force them to have disadvantage on their next saving throw",
  98.                 "against a spell you cast that deals damage as a bonus action.",
  99.                 "This form lasts for 1 hour, and during this time you can freely deploy or hide your wings, requiring no action."
  100.             ]),
  101.             action : ["action", "bonus action", ""]
  102.         }
  103.     }
  104. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement