Advertisement
Jamison85

Kodan Race (D&D Wiki)

Jan 1st, 2025
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JavaScript 3.40 KB | Source Code | 0 0
  1. var iFileName = "kodan race.js";
  2.  
  3. SourceList["DanDw"] = {
  4.     name : "Kodan",
  5.     abbreviation : "D\u0026Dwiki",
  6.     group : "Homebrew",
  7.     url : "https://www.dandwiki.com/wiki/Kodan_(5e_Race)"
  8. };
  9.  
  10. RaceList["kodan"] = {
  11.   regExpSearch: /kodan/i,
  12.   name: "Kodan",
  13.   source: ["Kodan", 0],
  14.   plural: "Kodan",
  15.   size: 3,
  16.   speed: {
  17.     walk: { spd: 25, enc: 15 },
  18.     swim: { spd: 30, enc: 20 }
  19.   },
  20.   languageProfs: [2],
  21.   vision: [["Darkvision", 60]],
  22.   dmgres: ["Cold"],
  23.   age: "Kodan have a lifespan of around 300 years.",
  24.   height: "Kodan stand between 8 and 10 feet tall.",
  25.   weight: "Kodan are bipedal polar bears with muscular builds.",
  26.   improvements: "Kodan: +2 Wisdom, +1 Strength;",
  27.   scores: [1, 0, 0, 0, 2, 0],
  28.   trait: "Kodan (+2 Wisdom, +1 Strength)\nLanguages: You can speak, read, and write two languages of your choice.\nWisdom of Koda: You gain proficiency with two of the following skills of your choice: Insight, Nature, Religion, Medicine, and Survival.\nPowerful Build: You count as one size larger when determining your carrying capacity and the weight you can push, drag, or lift.\nArctic Survivor: You have resistance to cold damage and are acclimated to cold climates, as described in chapter 5 of the Dungeon Master's Guide.\nKoda's Flame: You know one cantrip of your choice from the following list: produce flame, create bonfire, or word of radiance. Wisdom is your spellcasting ability for this spell.\nBite: Your fanged maw is a natural weapon, which you can use to make unarmed strikes. When you hit with it, you deal 1d6 piercing damage plus your Strength modifier instead of the bludgeoning damage normal for an unarmed strike.",
  29.   features: {
  30.     "wisdom of koda": {
  31.       name: "Wisdom of Koda",
  32.       minlevel: 1,
  33.       description: "You gain proficiency with two of the following skills of your choice: Insight, Nature, Religion, Medicine, and Survival.",
  34.       skillstxt: "Choose two from Insight, Nature, Religion, Medicine, and Survival"
  35.     },
  36.     "powerful build": {
  37.       name: "Powerful Build",
  38.       minlevel: 1,
  39.       description: "I count as one size larger when determining my carrying capacity and the weight I can push, drag, or lift."
  40.     },
  41.     "arctic survivor": {
  42.       name: "Arctic Survivor",
  43.       minlevel: 1,
  44.       description: "I have resistance to cold damage and am acclimated to cold climates."
  45.     },
  46.     "koda's flame": {
  47.       name: "Koda's Flame",
  48.       minlevel: 1,
  49.       description: "You know one cantrip of your choice from the following list: produce flame, create bonfire, or word of radiance. Wisdom is your spellcasting ability for this spell.",
  50.       spellcastingBonus: {
  51.         name: "Koda's Flame",
  52.         spells: ["produce flame", "create bonfire", "word of radiance"],
  53.         selection: ["produce flame", "create bonfire", "word of radiance"],
  54.         atwill: true
  55.       }
  56.     },
  57.     "bite": {
  58.       name: "Bite",
  59.       minlevel: 1,
  60.       description: "Your fanged maw is a natural weapon, which you can use to make unarmed strikes. When you hit with it, you deal 1d6 piercing damage plus your Strength modifier instead of the bludgeoning damage normal for an unarmed strike.",
  61.       weaponsAdd: ["Kodan Bite"]
  62.     }
  63.   },
  64.   weaponOptions: {
  65.     baseWeapon: "unarmed strike",
  66.     regExpSearch: /kodan bite/i,
  67.     name: "Kodan Bite",
  68.     source: ["Kodan", 0],
  69.     damage: [1, 6, "piercing"],
  70.     ability: 1,
  71.     type: "Natural"
  72.   }
  73. };
  74.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement