Mark said: 11th July 2015 (1.85) Added a spell importer. I still need to parse the description and pull out attack,save,damage,heal,effects Removed Clone Token. I'm still debating about the command format. Currently the journal name and spell name have to have no spaces. I'll have to fix both to work with spaces. Or just use the selected token instead of typing in a character name. Also debating if I should parse the spells from the wording or write the target, attack, save, etc in the json. Likely will parse. Example format: var spellsData = [
{
"name":"Fireball",
"description":"A bright streak flashes from your pointing finger to a point you choose within range and then blossoms with a low roar into an explosion of flame. Each creature in a 20-foot-radius sphere centered on that point must make a dexterity saving throw. A target takes 8d6 fire damage on a failed save, or half as much damage on a successful one.<br>The fire spreads around corners. It ignites flammable objects in the area that aren’t being worn or carried.",
"higherLevel":"When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.",
"source":"phb 241",
"range":"150 feet",
"components":{
"verbal":"true",
"somatic":"true",
"material":"true",
"materialMaterial":"A tiny ball of bat guano and sulfur"
},
"ritual":"false",
"duration":"Instantaneous",
"concentration":"false",
"castingTime":"1 action",
"level":"3",
"school":"Evocation",
"classes":[
"Cleric",
"Sorcerer",
"Warlock",
"Wizard"
],
"domains":[
"Light"
],
"patrons":[
"Fiend"
]
}
]; Notice that the description has "<br>" for a line break. Those will be replaced and rendered properly on the sheet. Very cool Mark, glad to see you working on this. BTW Stephen S. Posted all the Free PDF spells in a JSON file some time back, it has some power card stuff in it that not everyone probably needs but would be a great starting point. Here is the link.