Created
January 4, 2021 11:25
-
-
Save DarrenDoesDnD/84d880ad13196302c285ce404aea1a43 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* -INFORMATION- | |
Subject: Race: Lotusden Halfling | |
Effect: This script adds the Lotusden Halfling race- | |
Code by: /u/Nuralataion | |
Date: 01/03/2021 | |
*/ | |
var iFileName = "Explorer's Guide to Wildermount Races Lotusden Halfling.js"; | |
RequiredSheetVersion(12.999); | |
SourceList["EGtW"] = { | |
name : "Explorer's Guide to Wildemount", | |
abbreviation : "EGtW", | |
group : "Wizards of the Coast", | |
url : "https://dnd.wizards.com/products/wildemount", | |
date : "2021/01/03" | |
}; | |
// (sub)Races that are not in the SRD | |
RaceList["Lotusden Halfling"] = { | |
regExpSearch : /^(?=.*halfling)(?=.*lotusden).*$/i, | |
name : "Lotusden Halfling", | |
sortname : "Halfling, Lotusden", | |
source : ["EGtW", 8], | |
plural : "Halflings", | |
size : 4, | |
speed : { | |
walk : { spd : 25, enc : 15 } | |
}, | |
languageProfs : ["Common", "Halfling"], | |
savetxt : { adv_vs : ["frightened"] }, | |
age : " reach adulthood at age 20 and live around 150 years", | |
height : " average about 3 feet tall (2'7\" + 2d4\")", | |
weight : " weigh around 40 lb (35 + 2d4 lb)", | |
heightMetric : " average about 90 cm tall (80 + 5d4)", | |
weightMetric : " weigh around 18 kg (16 + 5d4 / 10 kg)", | |
savetxt : { immune : ["frightened"] }, | |
scores : [0, 2, 0, 0, 1, 0], | |
spellcastingAbility : 5, | |
spellcastingBonus : { | |
name : "Children of the Woods", | |
spells : ["druidcraft"], | |
selection : ["druidcraft"], | |
prepared : true, | |
atwill : true, | |
}, | |
features : { | |
"entangle" : { | |
name : "Entangle", | |
limfeaname : "Entangle", | |
minlevel : 3, | |
usages : 1, | |
recovery : "long rest", | |
spellcastingBonus : { | |
name : "Children of the Woods (level 3)", | |
spells : ["entangle"], | |
selection : ["entangle"], | |
oncelr : true, | |
}, | |
}, | |
"spike growth" : { | |
name : "spike growth", | |
limfeaname : "Spike Growth", | |
minlevel : 5, | |
usages : 1, | |
recovery : "long rest", | |
spellcastingBonus : { | |
name : "Children of the Woods (level 5)", | |
spells : ["spike growth"], | |
selection : ["spike growth"], | |
oncelr : true, | |
}, | |
}, | |
}, | |
trait : "Lotusden Halfling (+2 Dexterity, +1 Wisdom)\nLucky: When I roll a 1 on an attack roll, ability check, or saving throw, I can reroll the die and must use the new roll.\nHalfling Nimbleness: I can move through the space of any creature that is of a size larger than me.\nChild of the Woods: You know the Druidcraft Cantrip. At 3rd level, you can cast the Entangle spell once per long rest. At 5th level, you can cast Spike Growth spell once per long rest. These spells don't require the material components normally required. Wisdom is your spellcasting ability for these spells.\nTimberwalk: Ability checks made to track you are at disadvantage and you can move through difficult terrain made of non-magical plants and overgrowth without expending extra movement." | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment