Add spell management and improve actor sheet

This commit is contained in:
LeRatierBretonnien 2022-12-20 14:10:58 +01:00
parent 96ba97f503
commit 28e8edc867
12 changed files with 713 additions and 104 deletions

View File

@ -47,6 +47,7 @@ export class Avd12ActorSheet extends ActorSheet {
equippedShield: this.actor.getEquippedShield(),
subActors: duplicate(this.actor.getSubActors()),
moneys: duplicate(this.actor.getMoneys()),
focusData: this.actor.computeFinalFocusData(),
encCurrent: this.actor.encCurrent,
options: this.options,
owner: this.document.isOwner,
@ -89,17 +90,6 @@ export class Avd12ActorSheet extends ActorSheet {
this.actor.createEmbeddedDocuments('Item', [{ name: "NewItem", type: dataType }], { renderSheet: true })
})
html.find('.equip-activate').click(ev => {
const li = $(ev.currentTarget).parents(".item")
let itemId = li.data("item-id")
this.actor.equipActivate( itemId)
});
html.find('.equip-deactivate').click(ev => {
const li = $(ev.currentTarget).parents(".item")
let itemId = li.data("item-id")
this.actor.equipDeactivate( itemId)
});
html.find('.subactor-edit').click(ev => {
const li = $(ev.currentTarget).parents(".item");
let actorId = li.data("actor-id");
@ -135,26 +125,16 @@ export class Avd12ActorSheet extends ActorSheet {
let skillKey = $(event.currentTarget).data("skill-key")
this.actor.rollSkill(attrKey, skillKey)
});
html.find('.roll-spell').click((event) => {
const li = $(event.currentTarget).parents(".item");
this.actor.rollSpell( li.data("item-id") )
});
html.find('.roll-weapon').click((event) => {
const li = $(event.currentTarget).parents(".item");
const skillId = li.data("item-id")
this.actor.rollWeapon(skillId)
});
html.find('.roll-armor-die').click((event) => {
this.actor.rollArmorDie()
});
html.find('.roll-shield-die').click((event) => {
this.actor.rollShieldDie()
});
html.find('.roll-target-die').click((event) => {
this.actor.rollDefenseRanged()
});
html.find('.roll-save').click((event) => {
const saveKey = $(event.currentTarget).data("save-key")
this.actor.rollSave(saveKey)
});
html.find('.lock-unlock-sheet').click((event) => {
@ -191,12 +171,18 @@ export class Avd12ActorSheet extends ActorSheet {
/* -------------------------------------------- */
async _onDropItem(event, dragData) {
console.log(">>>>>> DROPPED!!!!")
const item = fromUuidSync(dragData.uuid)
let itemFull
if (item == undefined) {
item = this.actor.items.get( item.id )
itemFull = this.actor.items.get( dragData.uuid )
} else {
if (item && item.system) {
itemFull = item
} else {
itemFull = await Avd12Utility.searchItem( item )
}
}
let ret = await this.actor.preprocessItem( event, item, true )
let ret = await this.actor.preprocessItem( event, itemFull, true )
if ( ret ) {
super._onDropItem(event, dragData)
}

View File

@ -351,12 +351,47 @@ export class Avd12Actor extends Actor {
/* -------------------------------------------- */
async preprocessItem(event, item, onDrop = false) {
//console.log('ITEM', item)
if ( item.system.focus && item.system.focus?.isfocus) {
let focusItem = this.items.find(it => it.system.focus?.isfocus)
if (focusItem) {
ui.notifications.warn("You already have a Focus Item in your equipment.")
return false
}
}
let dropID = $(event.target).parents(".item").attr("data-item-id") // Only relevant if container drop
let objectID = item.id || item._id
this.addObjectToContainer(objectID, dropID)
return true
}
/* -------------------------------------------- */
computeFinalFocusData() {
let focus = this.items.find(it => it.system.focus?.isfocus)
if (focus) {
let focusData = Avd12Utility.computeFocusData(focus.system.focus)
let focusBonus = this.items.filter( it => it.system.focuspointsbonus > 0).reduce((sum, item2) => sum = item2.system.focuspointsbonus, 0)
let focusregenbonus = this.items.filter( it => it.system.focusregenbonus > 0).reduce((sum, item2) => sum = item2.system.focusregenbonus, 0)
let burnchancebonus = this.items.filter( it => it.system.burnchancebonus > 0).reduce((sum, item2) => sum = item2.system.burnchancebonus, 0)
console.log("FINAL BONUS", focusBonus, focusregenbonus, burnchancebonus)
return {
focusPoints : focusData.focusPoints + focusBonus,
burnChance: focusData.burnChance + burnchancebonus,
focusRegen: focusData.focusRegen + focusregenbonus,
spellAttackBonus: focusData.spellAttackBonus,
spellDamageBonus: focusData.spellDamageBonus,
currentFocusPoints: this.system.focus.currentFocusPoints
}
}
return {
focusPoints : 0,
burnChance: 0,
focusRegen: 0,
spellAttackBonus: 0,
spellDamageBonus: 0
}
}
/* -------------------------------------------- */
async equipGear(equipmentId) {
let item = this.items.find(item => item.id == equipmentId);
@ -545,6 +580,27 @@ export class Avd12Actor extends Actor {
}
}
/* -------------------------------------------- */
rollSpell(spellId) {
let spell = this.items.get(spellId)
if (spell) {
spell = duplicate(spell)
if (spell.system.spelltype != "utility") {
let rollData = this.getCommonRollData()
rollData.mode = "spell"
rollData.spell = spell
rollData.spellAttack = this.system.bonus.spell.attack
rollData.spellDamage = this.system.bonus.spell.damage
rollData.spellCost = Avd12Utility.getSpellCost(spell)
rollData.title = "Roll Spell " + spell.name
rollData.img = spell.img
this.startRoll(rollData)
}
} else {
ui.notifications.warn("Unable to find the relevant spell.")
}
}
/* -------------------------------------------- */
rollWeapon(weaponId) {
let weapon = this.items.get(weaponId)

View File

@ -76,6 +76,11 @@ export class Avd12ItemSheet extends ItemSheet {
isGM: game.user.isGM
}
// Specific focus case
if (this.object.system.focus?.isfocus) {
formData.focusData = Avd12Utility.computeFocusData( this.object.system.focus)
}
this.options.editable = !(this.object.origin == "embeddedItem");
console.log("ITEM DATA", formData, this);
return formData;

View File

@ -4,6 +4,13 @@ import { Avd12Commands } from "./avd12-commands.js";
/* -------------------------------------------- */
const __ALLOWED_MODULE_TYPES = { "action": 1, "reaction": 1, "freeaction": 1, "trait": 1 }
const __focusCore = { "corenone": 0, "core1gp": 6, "core5gp": 8, "core50gp": 10, "core100gp": 12, "core300gp": 16, "core500gp": 20, "core800gp": 26, "core1000gp": 32 }
const __burnChanceTreatment = { "treatmentnone": 0, "treatment1gp": 8, "treatment4gp": 7, "treatment20gp": 6, "treatment50gp": 5, "treatment500gp": 4, "treatment1000gp": 3, "treatment5000gp": 2, "treatment10000gp": 1 }
const __focusPointTreatment = { "treatmentnone": 0, "treatment1gp": 0, "treatment4gp": 1, "treatment20gp": 2, "treatment50gp": 4, "treatment500gp": 6, "treatment1000gp": 8, "treatment5000gp": 14, "treatment10000gp": 20 }
const __focusRegenBond = { "bondnone": 6, "bondeasy": 8, "bondcommon": 12, "bonduncommon": 16, "bondrare": 22, "bondlegendary": 26, "bondmythic": 36, "bonddivine": 48 }
const __bonusSpellDamageBond = { "bondnone": 0, "bondeasy": 1, "bondcommon": 1, "bonduncommon": 1, "bondrare": 2, "bondlegendary": 2, "bondmythic": 3, "bonddivine": 4 }
const __bonusSpellAttackBond = { "bondnone": 0, "bondeasy": 0, "bondcommon": 1, "bonduncommon": 1, "bondrare": 2, "bondlegendary": 2, "bondmythic": 3, "bonddivine": 4 }
const __spellCost = { "beginner": 1, "novice": 2, "expert": 4, "master": 6, "grandmaster": 8 }
/* -------------------------------------------- */
@ -76,20 +83,20 @@ export class Avd12Utility {
/* -------------------------------------------- */
static buildBonusList() {
let bonusList = []
for(let key in game.system.model.Actor.character.bonus) {
for (let key in game.system.model.Actor.character.bonus) {
let bonuses = game.system.model.Actor.character.bonus[key]
for (let bonus in bonuses) {
bonusList.push( key + "." + bonus )
bonusList.push(key + "." + bonus)
}
}
for(let key in game.system.model.Actor.character.attributes) {
for (let key in game.system.model.Actor.character.attributes) {
let attrs = game.system.model.Actor.character.attributes[key]
for(let skillKey in attrs.skills) {
bonusList.push( key + ".skills." + skillKey + ".modifier" )
for (let skillKey in attrs.skills) {
bonusList.push(key + ".skills." + skillKey + ".modifier")
}
}
for(let key in game.system.model.Actor.character.universal.skills) {
bonusList.push( "universal.skills." + key + ".modifier" )
for (let key in game.system.model.Actor.character.universal.skills) {
bonusList.push("universal.skills." + key + ".modifier")
}
return bonusList
}
@ -277,14 +284,14 @@ export class Avd12Utility {
/* -------------------------------------------- */
static getSuccessResult(rollData) {
if (rollData.sumSuccess <= -3) {
if (rollData.attackRollData.weapon.system.isranged ) {
if (rollData.attackRollData.weapon.system.isranged) {
return { result: "miss", fumble: true, hpLossType: "melee" }
} else {
return { result: "miss", fumble: true, attackerHPLoss: "2d3", hpLossType: "melee" }
}
}
if (rollData.sumSuccess == -2) {
if (rollData.attackRollData.weapon.system.isranged ) {
if (rollData.attackRollData.weapon.system.isranged) {
return { result: "miss", dangerous_fumble: true }
} else {
return { result: "miss", dangerous_fumble: true, attackerHPLoss: "1d3", hpLossType: "melee" }
@ -403,6 +410,35 @@ export class Avd12Utility {
}
}
/* -------------------------------------------- */
static computeFocusData(focus) {
let focusData = {
focusPoints: __focusCore[focus.core] + __focusPointTreatment[focus.treatment],
burnChance: __burnChanceTreatment[focus.treatment],
focusRegen: __focusRegenBond[focus.bond],
spellAttackBonus: __bonusSpellAttackBond[focus.bond],
spellDamageBonus: __bonusSpellDamageBond[focus.bond]
}
return focusData
}
/* -------------------------------------------- */
static async searchItem(dataItem) {
let item
if (dataItem.pack) {
let id = dataItem.id || dataItem._id
let items = await this.loadCompendium(dataItem.pack, item => item.id == id)
item = items[0] || undefined
} else {
item = game.items.get(dataItem.id)
}
return item
}
/* -------------------------------------------- */
static getSpellCost(spell) {
return __spellCost[spell.system.level]
}
/* -------------------------------------------- */
static chatDataSetup(content, modeOverride, isRoll = false, forceWhisper) {
let chatData = {
@ -477,10 +513,13 @@ export class Avd12Utility {
// Build the dice formula
let diceFormula = "1d12"
if (rollData.skill) {
diceFormula += "+"+rollData.skill.finalvalue
diceFormula += "+" + rollData.skill.finalvalue
}
diceFormula += "+"+rollData.bonusMalusRoll
if (rollData.spellAttack) {
diceFormula += "+" + rollData.spellAttack
}
diceFormula += "+" + rollData.bonusMalusRoll
if (rollData.skill && rollData.skill.good) {
diceFormula += "+1d4"
}
@ -494,10 +533,10 @@ export class Avd12Utility {
await this.showDiceSoNice(myRoll, game.settings.get("core", "rollMode"))
}
rollData.roll = myRoll
rollData.isSuccess = false
if ( rollData.targetCheck != "none") {
if( myRoll.total >= Number(rollData.targetCheck)) {
if (rollData.targetCheck != "none") {
if (myRoll.total >= Number(rollData.targetCheck)) {
rollData.isSuccess = true
}
}
@ -554,17 +593,6 @@ export class Avd12Utility {
}
/* -------------------------------------------- */
static async searchItem(dataItem) {
let item
if (dataItem.pack) {
item = await fromUuid("Compendium." + dataItem.pack + "." + dataItem.id)
} else {
item = game.items.get(dataItem.id)
}
return item
}
/* -------------------------------------------- */
static split3Columns(data) {
@ -609,7 +637,7 @@ export class Avd12Utility {
let rollData = {
rollId: randomID(16),
bonusMalusRoll: 0,
targetCheck : "none",
targetCheck: "none",
rollMode: game.settings.get("core", "rollMode")
}
Avd12Utility.updateWithTarget(rollData)

443
packs/spells.db Normal file
View File

@ -0,0 +1,443 @@
{"name":"Word of Death","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"sonic","actions":"1 Action","chargeeffect":"","school":"necromancy","damage":"2d12","damagetype":"dark","range":12,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You speak a word of death in a dark language, dealing Damage to anyone within 12 Units who can hear you."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar02H94s41","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Hemorrhage","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"","school":"witchcraft","damage":"","damagetype":"none","range":6,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You target a Humanoid or Beast within 6 Units and give them the Bleeding Condition."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar04X331D9","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Shield","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"abjuration","damage":"1d12","damagetype":"shielding","range":6,"components":"","reaction":true,"sustained":false,"level":"expert","value":0,"description":"You target a Creature you can see within 8 Units as a reaction, surrounding them in a shield that absorbs Damage."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar05g84B2P","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Dark Rebirth","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"10 Minutes","chargeeffect":"","school":"fiend","damage":"","damagetype":"none","range":-1,"components":"1 Black Pearl","reaction":false,"sustained":false,"level":"master","value":0,"description":"You target a dead humanoid and bring them back to life for 1 Day. The target of this spell is affected by an unbreakable Charm that lasts for the entire duration. The target of this Spell loses their soul and can not be revived by any other means after this spell ends."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar06q9eYqD","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Parity","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"2 Actions","chargeeffect":"","school":"cosmic","damage":"","damagetype":"none","range":12,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You Target a willing ally you can see within 12 Units and change places with them."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar0ClEb31m","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Telekenisis","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"Additional 4 Units of range","school":"transmutation","damage":"4d8","damagetype":"physical","range":8,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"Target a small Creature or object under 40 lbs. within 8 Units of you and move it up to 6 Units. If the target is an object, it can be used to throw into a Creature within the spells range dealing Damage."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar0QC7CBLe","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Know True Form","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Minute","chargeeffect":"","school":"abjuration","damage":"","damagetype":"none","range":8,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You enhance your eyes for 5 Minutes and can see the auras of visible Creatures allowing you to detect if a Creature is not in their true form."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar0SZe711D","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Resolution","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"abjuration","damage":"6d6","damagetype":"temphealth","range":0,"components":"","reaction":false,"sustained":false,"level":"master","value":0,"description":"You touch a Creature giving them Temporary Health for 1 hour and Immunity to the Afraid Condition while this spell is active."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar0g71L1SB","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Find Undead","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"2 Actions","chargeeffect":"","school":"divine","damage":"","damagetype":"none","range":100,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You know the direction of the closest undead, if any exist within 100 Units"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar0lk1jT00","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Read Thoughts","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"touchmelee","actions":"1 Action","chargeeffect":"","school":"witchcraft","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You touch a Creature and are able to read their most immediate thoughts for the next Minute. They have no recollection of you doing so once the spell ends."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar0p8YEV2V","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Thunder Wave","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"sonic","actions":"1 Action","chargeeffect":"push back range extended by 2 Units.","school":"evocation","damage":"4d6","damagetype":"physical","range":2,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You unleash a wave of sonic force, dealing Damage and pushing back medium or smaller Creatures in a 2 Unit radius around you back 1 Unit."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar0tkzJXyU","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Dragons Gift","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"10 Minutes","chargeeffect":"","school":"draconic","damage":"","damagetype":"true","range":-1,"components":"","reaction":false,"sustained":false,"level":"master","value":0,"description":"You touch a Creature that has died within the last hour and bring them back to life, infusing them with a Draconic Pact. Casting this Spell requires a choice for the Caster: They either transfer their Draconic Pact to the Creature, their Focus is Destroyed, or they can never cast this Spell again."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar0uTM93Nr","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Divine Weapon","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"divine","damage":"1d8","damagetype":"divine","range":-1,"components":"A Weapon, which disintegrates when the Spell ends","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You turn a normal weapon into a divine weapon, causing it to become imbued with Divine magic. This weapon gives off light within a 3 Unit area and does extra divine Damage. This weapon lasts for 1 day."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar1151kAM3","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Nullstrike","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"cosmic","damage":"","damagetype":"none","range":-1,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You imbue your weapon with celestial energy. Your next Weapon Attack becomes a 3 Unit Cone that deals Arcane Damage instead of Physical. On a True Hit, all Creatures hit must make an Athletics or Acrobatics Check or be knocked prone."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar11DCocYr","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Sense Magic","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"auguration","damage":"","damagetype":"none","range":5,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You sense around you in a 5 Unit range. If there is any active magic, you are aware of its source."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar149YJ5jK","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Star Ray","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"ray","actions":"1 Action","chargeeffect":"Becomes a Line Spell with a 1 Unit Radius","school":"cosmic","damage":"1d10","damagetype":"arcane","range":10,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You shoot a Ray of Arcane Energy at a Target you can see within 10 Units dealing Damage."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar14SMVqmS","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Defense Against Darkness","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"2 Actions","chargeeffect":"","school":"divine","damage":"","damagetype":"none","range":-2,"components":"A Pinch of Powdered Iron","reaction":false,"sustained":true,"level":"beginner","value":0,"description":"Gain +1 Attack/Spell Attack and +1 Resist versus Dark Creatures as long as you Sustain this Spell."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar15064Lol","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Witchfog","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"area","actions":"2 Actions","chargeeffect":"Fog size increases to 12 Cube Unit area.","school":"witchcraft","damage":"","damagetype":"none","range":8,"components":"","reaction":false,"sustained":true,"level":"master","value":0,"description":"You emit a magical wave of fog that covers a 8 Cube Unit area that is centered on you. While you are in this fog, you are invisible and all Creatures within the fog are considered blind and defeaned."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar19ur4jHo","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Shock","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"touchmelee","actions":"1 Action","chargeeffect":"additional 1d10 Damage","school":"evocation","damage":"1d10","damagetype":"lightning","range":0,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You touch a Creature in range and emit a jolt of electricty. Your Damage Bonus Modifier is doubled against creatures who are wearing metal or are made of metal."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar1CKeoqcO","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Regeneration","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"2 Actions","chargeeffect":"","school":"druidic","damage":"3d8","damagetype":"healing","range":0,"components":"A Leaf Encrusted with a Pinch of Powdered Gold","reaction":false,"sustained":true,"level":"expert","value":0,"description":"You touch a Creature, healing it and regenerating any small missing body parts, such as fingers and toes."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar1GeYA8d4","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Sense Humanoid","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"fiend","damage":"","damagetype":"none","range":-1,"components":"","reaction":false,"sustained":true,"level":"expert","value":0,"description":"While you Sustain this Spell, you can say the name you know of a Humanoid and instantly know if they are within 300 Units and know what direction. When you come within 5 Units of your target, this Spell ends."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar1Gi0oKfA","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Divine Cleansing","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"2 Actions","chargeeffect":"Heal for 1d8 for each condition removed.","school":"divine","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You touch a Creature and remove any Disease, Infection, Poison, Blindness, Deafness and Paralysis from them."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar1Ir04b0R","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Petrify Wood","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"2 Actions","chargeeffect":"","school":"druidic","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You take a large branch and convert it into a magical light 1-handed or 2-handed blunt weapon and use your Spell Damage Modifier as the Damage bonus. This lasts for 1 day."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar1JjF3xNt","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Dimension","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"3 Actions","chargeeffect":"","school":"cosmic","damage":"","damagetype":"none","range":-1,"components":"","reaction":false,"sustained":false,"level":"master","value":0,"description":"You create a 2x2 Unit Door at your location that lasts for 1d4 rounds and instantly teleports you within. Anyone who passes through this Door is teleported to a Demiplane in the Void that is 40 Cubic Units large. Any Creature on the threshold of the door when the Door closes takes 8d8 Force Damage. This Demiplane exists for 1 Day. When the Spell ends, at the top of a Round, a random Creature in the Demiplane is teleported to the original location of door until the Demiplane is empty, at which it collapses, consuming any object left within it."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar1V2w0dd0","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Life Drain","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"recover full Damage inflicted","school":"necromancy","damage":"2d4","damagetype":"dark","range":10,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You drain the essence from a target you can see within 10 Units, recovering half the Damage inflicted as health."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar1XeWQ8aD","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Dropsy","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"","school":"fey","damage":"","damagetype":"none","range":6,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You target a Creature within 6 Units and cause them to swell with water, doubling their weight and giving them a -2 penalty to their Dodge Modifier until the end of your next turn."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar1Yz3MxTY","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Invisibility","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"illusion","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":true,"level":"expert","value":0,"description":"You touch a Creature and make them become invisible as long as you Sustain this Spell."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar1cKmuP58","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Resurrection","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"divine","damage":"","damagetype":"none","range":0,"components":"an enchanted diamond worth 500 gold and a piece of the body.","reaction":false,"sustained":false,"level":"master","value":0,"description":"You perform a ritual and resurrect a dead Creature. A character who is resurrected in this way is Incapicated for 1 day."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar1sUR9Y87","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Disintegrate","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"3 Actions","chargeeffect":"","school":"evocation","damage":"","damagetype":"none","range":10,"components":"","reaction":false,"sustained":false,"level":"master","value":0,"description":"You target a Creature within 10 Units. If that Creature is below 60 health, they are turned into ash."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar1tRJn6UV","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Dark Missile","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"projectile","actions":"1 Action","chargeeffect":"+2 attack","school":"necromancy","damage":"1d12","damagetype":"dark","range":14,"components":"An arrow coated in blood","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"Launch a tainted projectile at a target within 14 Units that you can see."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar1xog5kCM","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Mass Protection","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"divine","damage":"","damagetype":"none","range":12,"components":"","reaction":false,"sustained":true,"level":"master","value":0,"description":"Target up to three Creatures within 12 Units of you and give them divine protection, grating them Bonus Resists to all Damage Types equal to your Spell Bonus."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar2460Qr8R","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Scatterdust","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"vision","actions":"1 Action","chargeeffect":"","school":"fey","damage":"2d10","damagetype":"psychic","range":16,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You target an area with a 3 Unit Radius within 16 Units that you can see and rain prismatic fairy dust. All affected Creatures take Damage and become Blind until the end of their next turn."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar2CzCtac1","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Void Portal","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"2 Actions","chargeeffect":"Unwilling Creatures have a -5 Resist Penalty","school":"cosmic","damage":"","damagetype":"none","range":16,"components":"","reaction":false,"sustained":false,"level":"master","value":0,"description":"You target an Area you can see within 16 Units. A portal opens up under you in a 2 Unit Radius, taking any willing Creature to that area in their current configuration. An Unwilling Creature must make a Resistance Check against your Spell Attack or they are teleported too."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar2DbLjJpH","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Grim Aura","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"necromancy","damage":"","damagetype":"none","range":-2,"components":"","reaction":false,"sustained":true,"level":"novice","value":0,"description":"You manifest a dark aura around you, radiating out 2 Units as long as you Sustain this Spell. All Creatures that take Damage from you within this aura take an additional 1d8 Dark Damage"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar2HNXO6h6","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Ward the Dead","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"ray","actions":"1 Action","chargeeffect":"Change Spelltype to Line Attack","school":"divine","damage":"1d12","damagetype":"divine","range":8,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You target an undead Creature within 8 Units and shoot a beam of energy at them, dealing divine Damage."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar2Nvl4vw1","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Feverflame","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"touchmelee","actions":"1 Action","chargeeffect":"Gain +2 Spell Attack","school":"evocation","damage":"2d8 Psychic and 2d8 Fire Damage","damagetype":"variable","range":0,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You touch a Creature and attempt to Damage thier mind with fire"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar2cb1YorH","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Duplicate","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"Create an additional duplicate, decreasing the roll needed to 7 or higher","school":"illusion","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You create a near-perfect illusion of yourself which lasts 1 Minute and follows your movements. Whenever an attack is made against you, roll a D12. If 9 or higher, the attack hits your duplicate."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar2n03W5F9","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Greater Divine Weapon","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"divine","damage":"2d8","damagetype":"divine","range":0,"components":"A weapon which disintegrates when the spell ends","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You turn a normal weapon into a divine weapon, causing it to become imbued with Divine magic. This weapon gives off light within a 6 Unit Radius and does extra divine Damage. This weapon lasts for 1 day."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar2v6L47mB","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Icespike","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"projectile","actions":"1 Action","chargeeffect":"create an extra projectile that can be launched at the same or separate target","school":"evocation","damage":"2d12","damagetype":"cold","range":14,"components":"","reaction":false,"sustained":false,"level":"master","value":0,"description":"You draw upon a water source within 14 Units of you, of at least 1 cubic Unit and form a crystalized icicle from it, launching it at a target. You launch the projectile at a target within 10 Units of the source, dealing Damage upon impacting."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar3086484C","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Trip","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"fey","damage":"","damagetype":"none","range":12,"components":"","reaction":true,"sustained":false,"level":"novice","value":0,"description":"You target a Creature who is using Move Speed, Flying or Hovering and attempt to make them Trip, causing them to fall Prone and lose the rest of their Move Speed. If the character is Climbing or Flying, they immediately fall."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar31S2GiI6","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Tree-Meld","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"druidic","damage":"","damagetype":"none","range":-1,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You meld into a tree for up to 24 hours, becoming immobile and gaining +5 to stealth checks and regenerating an extra 5 Health per full rest."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar31c54G1U","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Waking Nightmare","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"Lasts an additional turn","school":"illusion","damage":"1d4","damagetype":"psychic","range":6,"components":"","reaction":false,"sustained":true,"level":"expert","value":0,"description":"You target a Creature within 6 Units and implant a horrific vision in their mind with you as the source. The Creature becomes Afraid of you until the end of their next turn and takes additional Psychic Damage whenever they are hit by Melee Damage. A Creature can use an Action to try to determine if the illusion is real."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar326U88P7","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Moonbeam","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"ray","actions":"2 Actions","chargeeffect":"This attack ignores Creatures who are not hostile to you","school":"witchcraft","damage":"6d8","damagetype":"fire","range":25,"components":"a faceted crystal worth 50 gold charged in 4 hours of moonlight","reaction":false,"sustained":true,"level":"master","value":0,"description":"You call upon the Moon to bring down a massive ray of destruction to a point you can see with a radius of 3 Units, harming anyone it strikes. You can elect to continue channeling this spell provided you dedicate 1 Action it, which can be used to move them beam up to 4 Units."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar32cq19aH","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Starfire","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"ray","actions":"2 Actions","chargeeffect":"","school":"fey","damage":"4d10","damagetype":"fire","range":14,"components":"","reaction":false,"sustained":false,"level":"master","value":0,"description":"You target a Creature within 14 Units and launch a ray of Starfire towards them, dealing Damage"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar32dM495c","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"False Surface","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"illusion","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You move your hands through an area no larger than 2 cubic Units. and draw a false surface barely distinguishable from the surrounding surfaces. Make a Performance Check to determine the required Check to deduce that the surface is an illusion."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar35CN7UA2","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Siphon Power","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"touchmelee","actions":"1 Action","chargeeffect":"","school":"necromancy","damage":"1d4","damagetype":"dark","range":0,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You touch a wounded Creature dealing Damage and draining their strength for 1 round. All Attacks made by that Creature have a -1 Modifier until the end of their next turn."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar361SKEUi","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Dangersense","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"auguration","damage":"","damagetype":"none","range":6,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You extend your senses, reaching out in an attempt to sense any traps or Creatures hostile to you within 6 Units."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar37VY5AV2","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Druid Grove","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"3 Days","chargeeffect":"","school":"druidic","damage":"","damagetype":"none","range":50,"components":"Requires a Friendly Beast level 10 or Higher which becomes the Spirit Guardian of the Grove and a gem worth 300 GP.","reaction":false,"sustained":false,"level":"master","value":0,"description":"Through a long ritual last 3 Days, you create a druid grove with a 10 Units in a forest or jungle that cannot be penetrated by dark Creatures or monsters. The grove is permanent but caster can only have one at one at a time."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar39oClgp5","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Dark Portal","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Hour","chargeeffect":"","school":"fiend","damage":"","damagetype":"none","range":-2,"components":"","reaction":false,"sustained":false,"level":"master","value":0,"description":"You target an archway and create a Portal that remains open for a duration you specify less than 1 day. This portal is linked to another Portal you or another ally created using this spell."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar3R64O3Ed","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Edict : Psyclone","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"sonic","actions":"1 Action","chargeeffect":"The target is knocked prone","school":"draconic","damage":"2d8","damagetype":"psychic","range":10,"components":"Requires the Old Draconic Language","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You target a creature within 10 Units, buffeting them with a gust of Psychic wind, dealing Damage."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar3RIsysRa","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Extinguish","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"If the creature that is targeted is Ignited, this spell heals for 1d4","school":"evocation","damage":"","damagetype":"none","range":10,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You target either an object or a Creature within 10 Units that is ignited and extinguish it. This works for both magical and non-magical flames."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar3Rs7qFRI","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Quasar","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"3 Actions","chargeeffect":"Quasar persists after first explosion, exploding on the start of your turn for 3d12 Damage.","school":"cosmic","damage":"6d12","damagetype":"arcane","range":-1,"components":"","reaction":false,"sustained":true,"level":"master","value":0,"description":"You Target an Area you can see within 24 Units and create a 6 Unit Radius Quasar that lasts while you Sustain this spell. Any Creature who starts their Turn in this Area or Enters this Area for the first time must make a Strength Check or be pulled 4 Units towards the Center and has their Movement Speed set to 0 until the start of their next turn. If a Creature reaches the Center of the Quasar, it instantly explodes dealing, dealing damage to any Creature within the Quasar who fails a Resist Check against your Spell Attack, ending the Spell."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar3X9CB732","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Summon : Fiendish Whip","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"2 Actions","chargeeffect":"Summon 2 Whips instead","school":"fiend","damage":"","damagetype":"none","range":-1,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You summon a whip of Fiendfire which is considered a Light 1-Handed Slashing Weapon that does Physical Damage with the Magical Property. This whip has a range of 2 Units. On a True Hit, this whip ignites in either Blue or Red fire based on your choice. If Blue fire, this weapon does Cold Damage for the next Minute. If Red fire, this weapon does Fire Damage for the next Minute. This weapon dissipates when it leaves or after 1 hour passes.."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar3ePygEy8","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Flash of Light","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"vision","actions":"1 Action","chargeeffect":"range increases to 3 Units","school":"evocation","damage":"","damagetype":"none","range":1,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You create a brief flash of light that eminates from your location, blinding anyone who can see within 1 Unit of you until the end of their next turn."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar3obA04ez","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Calm Beast","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"druidic","damage":"","damagetype":"none","range":2,"components":"","reaction":false,"sustained":true,"level":"beginner","value":0,"description":"You calm an aggressive Beast, your Level or lower within 2 Units. The beast is calm as long as you Sustain this Spell and will not make aggresive actions unless it is the target of another Spell or Attack."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar3qWk366y","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Crown of Thorns","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"","school":"fey","damage":"1","damagetype":"psychic","range":6,"components":"","reaction":false,"sustained":true,"level":"novice","value":0,"description":"You target a Creature within 6 Units and sprout a magical crown of thorns on their head as long as you Sustain this Spell and can see the Target. Whenever that Creature channels a Spell or makes an Attack, they take Damage"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar3qkFIE85","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Shift Ether","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"cosmic","damage":"","damagetype":"none","range":-1,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You touch a Focus not attuned to you and cause its Focus Points to restore by 2."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar3s5t6U7O","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Introspection","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Hour","chargeeffect":"","school":"auguration","damage":"","damagetype":"none","range":-1,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You perform a ritual lasting 1 hour that removes 1 level of exhaustion from a target. The spell fails if contact between the caster and target is broken"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar405B0v6U","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Dire Charm: Undead","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 hour","chargeeffect":"","school":"necromancy","damage":"","damagetype":"none","range":4,"components":"","reaction":false,"sustained":false,"level":"master","value":0,"description":"You target an undead Creature within 4 Units. If successful, that Creature is permanently under your control until you release it. You cannot attempt to charm a Creature who has previously succeeded in resisting this spell. You can only have one Creature Dire Charmed at a time, but it does not count against your Thrall Limit."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar43aJ314j","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Feyspite","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"","school":"fey","damage":"1d8","damagetype":"psychic","range":8,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You target a Creature with 8 Units and deal Damage to them. If you are Sustaining the Names Spell, roll 2 Damage Die instead of 1."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar43tq21q2","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Fiendshield","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"fiend","damage":"","damagetype":"none","range":-1,"components":"","reaction":false,"sustained":true,"level":"novice","value":0,"description":"While you Sustain this Spell, you gain +2 Physical Mitigation. Physical Damage is not counted against Checks against Sustaining Effort for this Spell."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar48K8gyV5","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Essence Transfer","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"additional 1d12 Damage","school":"necromancy","damage":"1d12","damagetype":"dark","range":6,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You transfer some of your health to an ally within 6 Units. Dark Mitigations do not apply to this Damage."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar4C2l4POU","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Gift of Nature","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 day","chargeeffect":"","school":"druidic","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":false,"level":"master","value":0,"description":"Within a grove created by you and an intact body, you can impart your gift of nature to resurrect a Creature that is dead through a long and grueling ritual. This Spell consumes the magic of the Grove."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar4J9F85FI","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Whirlpool","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"3 Actions","chargeeffect":"extends the radius by 2 Units and affects objects","school":"evocation","damage":"5d8","damagetype":"cold","range":30,"components":"","reaction":false,"sustained":true,"level":"master","value":0,"description":"You target a point in a body of water that you can see and create a whirlpool with a 5 Unit radius. Any Creature caught in this radius must make an Athletics Check of 10 or be drawn 2 Units towards the center of the pool and cannot move during that turn. If a Creature is drawn to the center of the whirlpool, they take Damage"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar4bU48GBp","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Alter Senses","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"cosmic","damage":"","damagetype":"none","range":-1,"components":"","reaction":false,"sustained":true,"level":"beginner","value":0,"description":"You Touch a Creature and grant them +2 Search on Checks as long as you Sustain this spell."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar4d1Q4ch4","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Destroy Lesser Undead","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"increase health threshold by 8.","school":"divine","damage":"1d8","damagetype":"divine","range":12,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You target a lesser undead Creature that you can see within 12 Units. If it has 16 or less health, it is destroyed, otherwise it takes Damage."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar4pRNAlp7","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Comet","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"projectile","actions":"1 Action","chargeeffect":"Range increased to 26 Units","school":"cosmic","damage":"2d6","damagetype":"cold","range":16,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You launch a Projectile at a Creature within 16 Units, dealing Damage."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar4uh0R9aq","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Dragon Claws","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"touchmelee","actions":"1 Action","chargeeffect":"","school":"draconic","damage":"2d6","damagetype":"physical","range":-1,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You drop whatever you are holding and spawn two claws with the Magical Property and make an Attack against an adjacent creature."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar4vip0kCE","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Goldsight","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"draconic","damage":"","damagetype":"none","range":-1,"components":"","reaction":false,"sustained":true,"level":"beginner","value":0,"description":"You alter your vision so that you can see objects made of gold within 6 Units as long as you Sustain this Spell. This sense can pass through materials that are less than 1 Unit thick."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar54w22LaR","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Anti-Smite","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"fiend","damage":"1d8","damagetype":"dark","range":-1,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You target a weapon and imbue it with Dark energy for 1 hour. Your next 3 attack with this weapon deal extra Dark Damage. This Damage is increased to 1d12 against Divine Creatures"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar55g731fm","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Bind Humanoid","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"The target falls prone when stunned","school":"fiend","damage":"","damagetype":"none","range":10,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You target a Humanoid within 10 Units and attempt to bind them, using 1d4 Damage worth of your own Blood to do so. On a success, the target is Stunned."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar56T62FA8","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Groundquake","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"area","actions":"4 Actions","chargeeffect":"ignores allied Creatures","school":"evocation","damage":"4d6","damagetype":"physical","range":8,"components":"","reaction":false,"sustained":true,"level":"master","value":0,"description":"You shake the ground at a point you can see in a 8 Unit radius tossing anyone within the area violently. If a Creature starts its turn in this area, they must make an Athletics or Acrobatics Check of 10 or fall Prone."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar57IRN5r9","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Protection from Disease and Poison","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"abjuration","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You touch a Creature, granting them immunity to Poison and Disease for the next 24 hours."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar57fjphJ7","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Fiendsight","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"fiend","damage":"","damagetype":"none","range":-1,"components":"","reaction":false,"sustained":true,"level":"expert","value":0,"description":"While you Sustain this Spell, you have Ultravision and have a +3 Resistance Bonus against Vision Spells."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar5AlMO8KR","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Teleport : Blink","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"This spell cannot fail","school":"evocation","damage":"","damagetype":"none","range":8,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"Make a Spell Attack greater than 6 to succeed. If successful, you teleport up to 6 Units away to a location you can see. On a failure, roll a 1d8 to determine direction and a 1d6 to determine Units of distance and then teleport there instead."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar5B8zlm1B","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Twinkle","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"projectile","actions":"1 Action","chargeeffect":"","school":"fey","damage":"1d8","damagetype":"arcane","range":-1,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You create 1d4+1 projectile orbs that surround and revolve around you in a 1 Unit radius. When a Creature first moves into that Radius, or you move and place a Creature within that radius, one of the orbs strikes them dealing Psychic Damage"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar5BjE993q","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Charm Beast","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"druidic","damage":"","damagetype":"none","range":2,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You target a beast within 2 Units and attempt to befriend it for up to 12 hours. This beast can understand you and does its best to follow your commands and counts as your temporary Pet"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar5CH22sj3","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Bind","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"evocation","damage":"","damagetype":"none","range":-2,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You bind yourself, anchoring yourself magically to a location or object. While you are bound this way, your teleportation spells cannot fail if this object or place is the destination of your spell."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar5EAW31mW","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Dragonflame","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"draconic","damage":"","damagetype":"none","range":8,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You light an object with unextinguishable fire that lasts for 1 day. This flame emits a dark light in a radius equal to your Spell Damage Modifier that pierces through Magical Darkness."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar5Es09qk6","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Speak with Animals","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"druidic","damage":"","damagetype":"none","range":-2,"components":"Requires Magical Langauge","reaction":false,"sustained":true,"level":"novice","value":0,"description":"You can speak with animals while you are concentrating on this spell by using a Magical Language."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar5Fyz4U03","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Call: Lightning","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"3 Actions","chargeeffect":"Additional 2 bounces","school":"evocation","damage":"4d12","damagetype":"lightning","range":20,"components":"","reaction":false,"sustained":false,"level":"master","value":0,"description":"You call to the sky and generate a massive lightning bolt that targets a Creature within 20 Units of you. If a Creature is within 3 Units of that Creature, the bolt bounces to them. This effect can occur up to 3 times."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar5KTvu9i0","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Reality Warp","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"auguration","damage":"","damagetype":"none","range":14,"components":"","reaction":true,"sustained":false,"level":"expert","value":0,"description":"As a response to an attack made against a Creature with 14 Units of you, but before the roll, you warp reality and choose another ally within 14 Units of you to take their place, swapping their positions"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar5LNUxBdq","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Vinewhip","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"touchmelee","actions":"1 Action","chargeeffect":"extra 2d6 Damage","school":"druidic","damage":"2d6","damagetype":"physical","range":1,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You can command a plant you can see within 2 Units of a target to lash out and strike them. On a True Hit, the target is grappled."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar5MF72PcI","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Gravity Well","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"2 Actions","chargeeffect":"","school":"transmutation","damage":"","damagetype":"none","range":20,"components":"","reaction":false,"sustained":false,"level":"master","value":0,"description":"You create a gravity well at a location you can see within 20 Units with a radius of 4 Units. Huge or Larger Creatures have a +3 Modifier to this check. Any Creature who starts their turn in this area must make a Strength Check against your Spell Attack. If they fail the Check, they cannot move that turn. If they fail by 5 or more, they are sucked into the gravity well."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar5Q204bzT","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Mind Touch","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"Target becomes afraid of caster","school":"illusion","damage":"1d12","damagetype":"psychic","range":0,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You touch a Creature, depositing dark visions into their mind dealing Damage."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar5j5te2OP","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Lesser Curse","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"witchcraft","damage":"1d4","damagetype":"dark","range":6,"components":"1 Damage worth of blood","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You target a Creature within 6 Units and put a lesser curse on them, dealing Damage at the start of their turn while you Sustain this Spell."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar5mW62z9X","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Dragon Dash","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"touchmelee","actions":"1 Action","chargeeffect":"","school":"draconic","damage":"1d10","damagetype":"true","range":-1,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"Your body becomes Incorporeal, allowing you to pass through creatures until the end of your turn. Make a Spell Attack for each unique Creature you pass through. On a failure, they take Damage."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar5p71X1tE","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Blink","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"fey","damage":"","damagetype":"none","range":2,"components":"","reaction":true,"sustained":false,"level":"beginner","value":0,"description":"You target a point within 2 Units and teleport to there. As a reaction, you can return to the spot you started at any point, avoiding Melee Attacks against you if being attacked. At the end of your next turn, you automatically return to to the starting location."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar5pg7Jn2s","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Camouflage","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"druidic","damage":"","damagetype":"none","range":0,"components":"a handful of mud or dirt","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You touch a Creature, giving them a +2 bonus to Stealth in natural environments."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar5rnF7JNW","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Rejuvenate","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"druidic","damage":"1d6","damagetype":"healing","range":0,"components":"A Poultice made from a Bundle of Mandrake mixed with a Pinch of Powdered Silver","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You touch a Creature and grant them regeneration, healing them at the end of their turn. This spell lasts 3 rounds."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar5sp6wS9M","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Deep Freeze","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"3 Actions","chargeeffect":"+2 bonus spell attack","school":"evocation","damage":"","damagetype":"cold","range":16,"components":"","reaction":false,"sustained":true,"level":"master","value":0,"description":"Target a Creature within 16 Units and freeze them. If the Creature reaches 0 health while frozen, they shatter into shards of ice and die instantly. As long as you Sustain this Spell, they remain frozen"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar5tn15I8l","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Astral Armor","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"cosmic","damage":"","damagetype":"none","range":-1,"components":"","reaction":false,"sustained":true,"level":"beginner","value":0,"description":"You create Celstial Armor around you, gaining +2 Physical Mitigation and +5 Arcane Mitigation as long as you Sustain this Spell."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar5wGLKJzR","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Futures Gift","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"auguration","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":true,"level":"master","value":0,"description":"You touch a Creature and grant them +2 dodge, +2 block, +2 resistance and +2 to Attack/Spell Attack while you Sustain this Spell."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar60t5CoH4","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Stone Feet","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"transmutation","damage":"","damagetype":"none","range":10,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You target a Creature within 10 Units. Their first Movement Action on their next turn counts as moving with a Movement Penalty."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar619u9UQk","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Edict : Dematerialize","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"sonic","actions":"1 Action","chargeeffect":"","school":"draconic","damage":"3d10","damagetype":"arcane","range":10,"components":"Requires the Old Draconic Language","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You target an Elemental that cna hear you within 10 Units and unbind them, dealing Damage. If the Elemental has less Health than your Level, it is dissolved."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar66ln9580","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Enlarge","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"Gain an additioanl +1 resistance","school":"transmutation","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":true,"level":"expert","value":0,"description":"You touch a willing Creature or object, doubling its size while you Sustain this Spell. A Creature that is enlarged in this way is considered one size larger and gains an extra +2 to physical Damage and + 2 to block, but -2 to dodge. "},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar6CqdIU99","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Plague","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"additional target","school":"necromancy","damage":"","damagetype":"none","range":15,"components":"a rodents tail.","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You inflict a plague upon a target within 15 Units that you can see, giving them a mild disease."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar6Cy9k2AS","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Wrath of the Gods","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"Additional 2d10","school":"divine","damage":"2d10","damagetype":"divine","range":16,"components":"","reaction":false,"sustained":false,"level":"master","value":0,"description":"You target a Creature with 16 Units and channel divine energy against them dealing Damage"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar6ZuZo65y","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Heat Metal","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"extra 1d10 Damage","school":"evocation","damage":"2d10","damagetype":"fire","range":12,"components":"an open flame which is extinguished","reaction":false,"sustained":true,"level":"expert","value":0,"description":"You extinguish a flame within 12 Units and target a small metal object you can see within 12 Units. For every turn a Creature is in contact with this object, they take Fire Damage."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar6e19UE27","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Eagle Eyes","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"druidic","damage":"","damagetype":"none","range":0,"components":"a bird feather","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"Touch a Creature and grant them Infravision and a +2 Search bonus for 1 hour."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar6qX70f3Z","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Preserve","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Minute","chargeeffect":"","school":"necromancy","damage":"","damagetype":"none","range":0,"components":"A piece of fruit, which rots upon casting this spell","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"Touch a dead Creature that has died within the last hour and prevent it from decaying for 1 day. While this effect is on the Creature, their soul is trapped inside their body and they can be the target of this spell again."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar6qx3A7j7","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Shatter Reality","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"Creature becomes Maddened on any Failure","school":"cosmic","damage":"5d6","damagetype":"dark","range":14,"components":"","reaction":false,"sustained":false,"level":"master","value":0,"description":"You Target a Creature you can see within 14 Units and blast them with energy from the void, dealing Damage. If the Target fails the Check by 4 or more, they are Maddened until the end of their next Turn."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar6sk2wqhi","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Jump","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"transmutation","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You touch a Creature enchancing their ability to jump. For the next hour, they gain +2 to all checks involving jumping."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar6sxXn3Li","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Destroy Undead","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"increase health threshold by 15.","school":"divine","damage":"","damagetype":"none","range":14,"components":"","reaction":false,"sustained":false,"level":"master","value":0,"description":"You target an undead Creature your Level or lower within 14 Units. If it has 35 or less Health, it is destroyed"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar70Y4C7wv","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Torment","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"","school":"fiend","damage":"3d8","damagetype":"psychic","range":10,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You target a Creature within 10 Units and deal Psychic Damage to them. If you are hidden from the target, they become Afraid of a point you choose that you can see."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar71AMUBF9","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Greater Smite","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"extra 2 attacks","school":"divine","damage":"2d8","damagetype":"divine","range":-2,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You touch a weapon. Your next 3 attacks with this weapon deal extra Divine Damage to Dark Creatures."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar75t7O4lq","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Decompose","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"","school":"necromancy","damage":"4d6","damagetype":"dark","range":10,"components":"A 2x2 square inch of rotting flesh.","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You target a Creature you can see within 10 Units. That Creature takes Damage and cannot benefit from healing for one day."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar765KWZo9","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Confident Aura","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"abjuration","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You touch a Creature, granting them +1 on their next Skill Check within the next hour."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar7F2zzACI","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Greater Shield","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"abjuration","damage":"2d8","damagetype":"shielding","range":10,"components":"","reaction":true,"sustained":false,"level":"master","value":0,"description":"You target up to 5 allies you can see within 10 Units as a reaction, surrounding them in a shield that absorbs Damage."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar7LyvbLT2","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Create : Holy Water","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"15 Minutes","chargeeffect":"","school":"abjuration","damage":"","damagetype":"none","range":-1,"components":"Pinch of Powdered Silver","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You target a vial filled with water and bless it, creating Holy Water."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar7Njq6Juy","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Lesser Ward","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"Additional 3d4","school":"abjuration","damage":"3d4","damagetype":"physical","range":5,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You a Creature within 5 Units that is from a different plane of existence and Damage them."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar7Q9UWtPX","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Create or Destroy: Water","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"transmutation","damage":"","damagetype":"none","range":-1,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You conjure enough water to fill a 1-gallon container or destroy the same amount."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar7Rz123Y4","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Sunflash","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"2 Actions","chargeeffect":"Damage becomes 4d4","school":"cosmic","damage":"2d4","damagetype":"fire","range":8,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You Target a Creature you can see within 8 Units, dealing Damage and creating a flash of Solar Energy infront of them, Blinding them until the end of their next turn."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar7Yjoks3S","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"See Invisibility","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"auguration","damage":"","damagetype":"none","range":10,"components":"","reaction":false,"sustained":true,"level":"expert","value":0,"description":"You can see sillouettes of invisible Creatures within 10 Units of you while you Sustain this Spell."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar7kXL2Pr5","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Magical Armor","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"abjuration","damage":"","damagetype":"none","range":-2,"components":"","reaction":false,"sustained":true,"level":"novice","value":0,"description":"You gain +1 Block and +1 Dodge while concentrating on this spell."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar7nj48igH","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Voidstep","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"You Pick the Destination within 6 Units","school":"cosmic","damage":"1d6","damagetype":"arcane","range":-1,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You Teleport 1d8 Unit in a random direction. Upon arriving, you release Arcane Energy within 2 Units of you, dealing Damage to anyone who fails a Resist Check against your Spell Attack."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar800HZOXL","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Divine Wrath","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"The spell becomes a 2-Unit wide line spell","school":"divine","damage":"2d8","damagetype":"divine","range":12,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You target a Creature within 12 Units and channel divine energy against them, dealing Damage. If a Dark Creature is killed in this way, other Dark Creatures lower than your Level within 4 Units become AFraid of the location of the slain Creature until the end of their next turn."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar846ikp37","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Foresight","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"auguration","damage":"","damagetype":"none","range":6,"components":"","reaction":true,"sustained":false,"level":"novice","value":0,"description":"You downgrade any Critical Hit that you can see within 6 Units, turning a Brutal Critical into a regular Critical and a Critical into normal Damage."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar87Uf8Ndm","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Greater Spell Shield","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"2 Actions","chargeeffect":"Radius extends an additional 1 Units","school":"abjuration","damage":"","damagetype":"none","range":-1,"components":"","reaction":false,"sustained":true,"level":"master","value":0,"description":"You create a semi-transparent spherical shield of magic around you in a 3 Units radius that adds +4 Block Modifier against projectile, ray and area spells. This spell lasts while you Sustain this Spell. Spells leaving this sphere are subject to the same penalty. "},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar8843MJ43","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Bulwark","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"+1 to dodge and resistance","school":"divine","damage":"","damagetype":"none","range":14,"components":"","reaction":false,"sustained":true,"level":"beginner","value":0,"description":"Target a Creature within 14 Units and grant them an extra +1 to their Block skill as long as you Sustain this Spell."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar892ukMv9","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Steal Voice","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"Additional 1d4 Damage","school":"illusion","damage":"1d4","damagetype":"psychic","range":3,"components":"","reaction":false,"sustained":true,"level":"novice","value":0,"description":"You target a Creature within 3 Units and attempt to steal their voice. Each time they either speak or attempt to cast a spell, they must make a Resistance Check against your Spell Attack. If they fail, they are not able to speak and take Damage. This spell ends after 1 Minute or once the target succeeds."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar89HJuKOR","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Magical Insight","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"auguration","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":true,"level":"beginner","value":0,"description":"You touch a Creature and give them a +2 bonus to Insight while you Sustain this Spell."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar8C13W791","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Guide","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"auguration","damage":"","damagetype":"none","range":-1,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You touch a Creature and guide them, allowing all their checks to have a +2 Modifier until the start of your next turn."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar8G810NCp","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Haunt","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"fiend","damage":"","damagetype":"none","range":-1,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You create a 4 Unit radius area from the point you are standing that remains for 1 Minute. All water in this area freezes and remains frozen until the spell ends. You have a +2 Spell Attack Bonus against Creatures within this area."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar8IQ4y89g","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Transmute: Soft Metal","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"10 Minutes","chargeeffect":"","school":"transmutation","damage":"","damagetype":"none","range":-1,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You target an area of soft metal [gold,copper,silver] no larger than 1 cubic meter and transmute it into water."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar8JLj5665","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Trance","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"druidic","damage":"","damagetype":"none","range":-2,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"Instead of sleeping to obtain a full rest, you enter a Trance state for 4 hours. You recover all of your health and cure any status conditions if you are uninterrupted for the duration of the spell."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar8QJaw390","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Plant Speak","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Minute","chargeeffect":"","school":"druidic","damage":"","damagetype":"none","range":0,"components":"Requires a Magical Language and a successful persuasion check","reaction":false,"sustained":true,"level":"beginner","value":0,"description":"You can speak to plants and get hints of their thoughts and intentions."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar8TvED18B","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Possess Object","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"witchcraft","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You transfer your mind into an object, putting your body in a stasis where all effects on you are paused. While possessing the object, you cannot speak and have a move speed of 0, although you can move elements of the object."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar8aYNkNJ5","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Lesser Slow","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"2 Actions","chargeeffect":"","school":"transmutation","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":true,"level":"novice","value":0,"description":"You touch a Creature and cause them to slow. At the start of their turn, they must make a resistance check against your spell attack. If they fail, it reduces the number of actions they can take by 1 while you Sustain this Spell."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar8bYoGF7v","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Bind Lesser Demon","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"","school":"witchcraft","damage":"","damagetype":"none","range":6,"components":"A ring of iron which is not consumed","reaction":false,"sustained":true,"level":"beginner","value":0,"description":"You attempt to bind a lesser Dark Creature within 8 Units, stunning them as long as you Sustain this Spell and the Creatures takes no Damage."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar8cn4Zs5j","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Greater Polymorph","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"3 Actions","chargeeffect":"","school":"druidic","damage":"","damagetype":"none","range":20,"components":"","reaction":false,"sustained":true,"level":"master","value":0,"description":"You target a Creature within 20 Units and polymorph them into a beast of the same size as their original form level 9 or lower. While in this form, the Creature takes up the stat block of the newer form but maintains its mind."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar8i477HVL","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Cauterize","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"evocation","damage":"1d4","damagetype":"fire","range":0,"components":"A piece of coal wrapped in a small piece of cloth","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You touch a wounded Creature and attempt to close any wounds with carefully placed fire, healing the target and deaing a small amount of Damage to the targets maximum health that lasts until the target is restored to full health. This spell also removes any Tier 2 or less infection. Fire Mitigation is ignored for this spell, unless a target is immune to Fire, in which case the spell fails."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar8lE9930S","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Find Object","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Minute","chargeeffect":"","school":"auguration","damage":"","damagetype":"none","range":100,"components":"a similiar object or replica of that object","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You sense the presence of a specific object within 100 Units of you, such as how close and what direction it is in. You must be familiar with this object. If there are more than 1 of the objects within the range, the spell will sense the closest one."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar8nRH1f3a","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Dragontongue","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"draconic","damage":"","damagetype":"none","range":-1,"components":"","reaction":false,"sustained":true,"level":"beginner","value":0,"description":"While you Sustain this Spell, you can both understand and speak Old Draconic, gaining the benefits of the Magical Language."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar8wrJoZ0P","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Regrowth","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"druidic","damage":"2d4","damagetype":"healing","range":0,"components":"A Leaf treated with a Pinch of Powdered Silver","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You touch a Creature and grant them regrowth, which heals them at the end of their next turn."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar8y922g5a","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Possess Person","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"witchcraft","damage":"","damagetype":"none","range":-1,"components":"","reaction":false,"sustained":false,"level":"master","value":0,"description":"You touch an individual and transfer your mind into their body, putting your body in a stasis where all effects on you are paused. While in control of the body, you take on the Might and Agility of the person but retain your other attributes. Your mind is transferred back to your body when you choose or when the body you are possessing dies."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar8yCpN3i6","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Consume Dream","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"Additional 2d8 Damage","school":"illusion","damage":"2d8","damagetype":"psychic","range":0,"components":"","reaction":false,"sustained":true,"level":"novice","value":0,"description":"You touch a sleeping Creature and place horrific visions in their mind, dealing psychic Damage. Once the target takes Damage, they can roll a Resistance check. On a 9 or higher, they wake up."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar92Qy2a5Y","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Wrath of the White Dragon","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"area","actions":"3 Actions","chargeeffect":"2d10 Fire Damage","school":"draconic","damage":"6d10","damagetype":"divine","range":20,"components":"","reaction":false,"sustained":false,"level":"master","value":0,"description":"You summon a Circle of Divine Fire with a 6 Unit Radius on a Location you can see within 20 Units, dealing Damage. Any Undead Creature who is caught in the Radius that is under your Level fails the Check is destroyed."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar92mKU1as","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Etherwall","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"fey","damage":"","damagetype":"none","range":-1,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You touch a wall no less than 1 Unit thick. Until the end of your next turn, you can pass through this wall with 2 Units of Movement"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar95u5Ah75","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Greater Portent","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"auguration","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":false,"level":"master","value":0,"description":"You look into the future where you and one allied Creature can take three actions which are immedietly reversed, bringing you back to the present showing one possible future."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar96NFyM2Q","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Turn to Stone","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"2 Actions","chargeeffect":"","school":"transmutation","damage":"","damagetype":"none","range":-1,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You touch a Creature and attempt to turn them into Stone for 1d4. The target gains 200 Health and gains +15 Resistance to all Damage for the duration. If the target reaches 0 Health while in this form, they die."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar97135G1Q","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Thorns","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"druidic","damage":"1d6","damagetype":"physical","range":0,"components":"a thorn wrapped around your hand","reaction":false,"sustained":true,"level":"beginner","value":0,"description":"You touch a Creature and they sprout small thorns, inflicing Damage to anyone who hits them as long as you Sustain this Spell."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar97iGeZ0E","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Effigy","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"witchcraft","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":false,"level":"master","value":0,"description":"You create an effigy out of belongings or body parts of a humanoid. Any spells that give conditions that are cast on this effigy are redirected to the humanoid. Half the Damage done to the effigy is redirected to the target. The effigy has 60 health."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar9Hq7juVX","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Healing","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"divine","damage":"5d6","damagetype":"healing","range":0,"components":"20 gold worth of enchanted platinum dust","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You touch a Creature and restore some of their health."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar9L38iZDf","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Magical Seal","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"10 Minutes","chargeeffect":"","school":"abjuration","damage":"","damagetype":"none","range":-1,"components":"1 Pinch of Powdered Gold","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You can target a door, window or the opening to a container and magically seal it making it unopenable by anyone other than you as long as the magic persists. This is permanent."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar9N1345p7","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Polymorph","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"","school":"druidic","damage":"","damagetype":"none","range":6,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You target a Creature within 8 Units and polymorph them into a beast of the same size as their original form and Level 6 or lower. While in this form, the Creature takes up the stat block of the newer form."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar9Pa4c296","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Greater Curse","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"","school":"witchcraft","damage":"3d6","damagetype":"dark","range":8,"components":"","reaction":false,"sustained":true,"level":"expert","value":0,"description":"You target a Creature within 8 Units and put a lesser curse on them, dealing Damage at the start of their turn while you Sustain this Spell."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar9eSe6OEq","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Thunder Rumble","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"sonic","actions":"1 Action","chargeeffect":"range increases to 40 Units","school":"evocation","damage":"","damagetype":"none","range":20,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You create a loud thunderboom at a location you can see within 20 Units making the closest person use their Reaction to move 1 Unit away from it. This spell requires a direct line of sight to the sky."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar9gzQ5QDC","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Greater Haste","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"transmutation","damage":"","damagetype":"none","range":6,"components":"","reaction":false,"sustained":true,"level":"master","value":0,"description":"You target up to 3 allies within 6 Units, granting them quickness, allowing them to take one extra Action on their turn while you Sustain this Spell."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar9iLP3JL2","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Dark Transformation","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"2 Actions","chargeeffect":"","school":"fiend","damage":"","damagetype":"none","range":-1,"components":"","reaction":false,"sustained":false,"level":"master","value":0,"description":"You consume a soul of a dead Humanoid that has been dead for less than 1 hour and transform into a Demonic Entity for 1 Minute. You become Large and recover Health equal to [Level * 2] Whenever you make a Melee Attack, you gain Health equal to your [Level / 2]"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar9juqM8bb","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Flamepit","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"area","actions":"1 Action","chargeeffect":"","school":"fiend","damage":"2d12","damagetype":"fire","range":20,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You target an area within 20 Units that you can see with a radius of 3 Units and create a flaming pit of fire that is 1 Unit deep. All Creatures within that area who fail their Check take Fire Damage and Fall 1 Unit. Creatures who move through this space have a Movement Penalty."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar9pCWksbT","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Dragonwrath","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"draconic","damage":"","damagetype":"variable","range":-1,"components":"","reaction":true,"sustained":false,"level":"novice","value":0,"description":"When you score a True Hit on a Melee Attack, you can use your Reaction to change the Damage Type to an Element of your choosing."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar9q22LElg","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Feywild Portal","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"fey","damage":"","damagetype":"none","range":-1,"components":"","reaction":false,"sustained":false,"level":"master","value":0,"description":"You target an opening such as a door, window or arch and create a portal that leads to the Feywild. This portal lasts for 1 Minute, allowing Larger or smaller Creatures through."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar9qrx4yLk","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Drown","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"2 Actions","chargeeffect":"additional 2d8","school":"evocation","damage":"4d8","damagetype":"cold","range":12,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You target a Creature you can see within 12 Units and fill their lungs with water doing Damage at the start of their turn and preventing them from casting spells or speaking during that turn."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHar9tTePbNm","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Shift","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"illusion","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":true,"level":"novice","value":0,"description":"You touch a Creature and slightly alter their presence, giving them a +2 bonus to dodge while you Sustain this Spell."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarA1W2YT98","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Tainted Breath","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"area","actions":"1 Action","chargeeffect":"additonal 1d10","school":"necromancy","damage":"1d10","damagetype":"poison","range":2,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You expel tainted air in a 2 Unit cone. Any Creature within the area takes Damage and cannot benefit from healing for 1 day."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarA3heu796","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Magic Wall","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"3 Actions","chargeeffect":"","school":"transmutation","damage":"","damagetype":"none","range":6,"components":"","reaction":false,"sustained":true,"level":"master","value":0,"description":"You create an invisible wall within 6 Units of you that cannot be penetrated as long as you Sustain this Spell. The walls dimensions are 4 Units tall and 20 Units wide. The wall can be circular in shape as well, creating a full circle with a radius of 3 Units or a semi circle with a radius of 6 Units."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarA8KHRIz7","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Animal Spirit","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"You also target yourself with the Spell","school":"druidic","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":true,"level":"beginner","value":0,"description":"Touch a Creature and infuse them with one of the following animals: Wolf, Bear, or Feline. Wolf gains +2 Damage to Melee Weapons. Bear gains +2 Physical Mitigation. Feline gains +2 Units of Movement Speed. This lasts as long as you Sustain this Spell."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarAF7e2kKE","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Lightning Bolt","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"projectile","actions":"1 Action","chargeeffect":"additional 2d8 Damage","school":"evocation","damage":"3d8","damagetype":"lightning","range":14,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You launch crackling energy at a target within 14 Units."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarAUG804CJ","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Solar Flare","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"area","actions":"2 Actions","chargeeffect":"Additional 2d10 Damage","school":"cosmic","damage":"3d10","damagetype":"fire","range":20,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You target an Area that you can see within 20 Units and create an explosion of sunfire at that location, dealing Damage to anyone within a 2 Unit Radius and Stunning all Creatures."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarAk2C9N0s","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Enthrall","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"2 Actions","chargeeffect":"","school":"fey","damage":"","damagetype":"none","range":7,"components":"","reaction":false,"sustained":true,"level":"expert","value":0,"description":"You target a Creature within 6 Units and Charm them. This Spell lasts as long as you Sustain this Spell."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarBA917du0","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Muddle","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"2 Actions","chargeeffect":"","school":"fey","damage":"2d12","damagetype":"psychic","range":-1,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You touch a humanoids temples and twist their memory or recollection of an event that occured in the past year. If the target succeeds on their Resist Check, they take 2d12 Psychic Damage instead. This effect is permanent and cannot be reversed."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarBNS1NQd8","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Moonstrike","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"ray","actions":"1 Action","chargeeffect":"","school":"fey","damage":"","damagetype":"arcane","range":14,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You target a Creature within 14 Units and launch a ray of Moonlight towards them, dealing Damage. This spell counts as moonlight in the instance of Lycanthropy."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarBaZxPCK8","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Ignite","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"","school":"evocation","damage":"","damagetype":"fire","range":6,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You target an object or creacture within 6 Units and set it on fire, giving it the Ignited condition."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarBdKXH8Q4","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Sunbeam","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"ray","actions":"3 Actions","chargeeffect":"This attack ignores Creatures who are not hostile to you","school":"druidic","damage":"6d8","damagetype":"fire","range":3,"components":"","reaction":false,"sustained":true,"level":"master","value":0,"description":"You call upon the Sun to bring down a massive ray of destruction to a point which you can see, with a Radius of 3 Units, harming anyone it strikes. You can elect to continue channeling this spell provided you dedicate at least one action per turn to it, which can be used to move the beam up to 4 Units. This spell counts as Sunlight."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarBlKPBeOM","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Entropic Strike","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"auguration","damage":"","damagetype":"none","range":-1,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"When you make your next attack within the next Minute, roll a 1d6. Add the result to your attack modifier and bonus Damage."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarCCTO7Ll1","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Transmute : Projectile","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"transmutation","damage":"1d12","damagetype":"shielding","range":3,"components":"","reaction":true,"sustained":false,"level":"novice","value":0,"description":"In response to a projectile targeting you or a Creature within 3 Units, you roll a Spell Attack against the Projectiles Attack. If your result is higher, you reduce the Damage of the projectile by transmuting it into something harmless like dust or wildflowers"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarCEn73qlQ","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Flare","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"projectile","actions":"1 Action","chargeeffect":"","school":"evocation","damage":"1d6","damagetype":"fire","range":6,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You target a Creature within 6 Units and send a small shock of fire in their direction. This spell cannot be charged and does not cost any focus points."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarCJIQ8vR9","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Mass Superior Camouflage","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"druidic","damage":"","damagetype":"none","range":3,"components":"","reaction":false,"sustained":false,"level":"master","value":0,"description":"You target up to six Creatures within 3 Units of you, giving them a +4 bonus to stealth in natural environments."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarCwblwXp5","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Death Ray","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"ray","actions":"1 Action","chargeeffect":"The ray becomes a 1 Unit wide Line Spell","school":"necromancy","damage":"4d8 Damage","damagetype":"dark","range":14,"components":"","reaction":false,"sustained":false,"level":"master","value":0,"description":"You shoot a death ray out to a target you can see within 14 Units"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarDQ8ns5g7","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Demonic Field","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"area","actions":"2 Actions","chargeeffect":"","school":"fiend","damage":"6d6","damagetype":"fire","range":5,"components":"","reaction":false,"sustained":false,"level":"master","value":0,"description":"You emit a burst of flame in a 5 Unit radius centered on you, dealing Damage and immediately canceling any active Novice or lower Abjuration and Diviniation Spells that are active in the area."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarDaHfB187","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Major Illusion","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"illusion","damage":"","damagetype":"none","range":20,"components":"","reaction":false,"sustained":true,"level":"expert","value":0,"description":"You can create a large illusion less than 2 Cubic Units in size that can be moved by your will but has no weight or substance. The illusion cannot be more than 20 Units from you or it vanishes."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarDyln53e2","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Perverse Object","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 hour","chargeeffect":"","school":"necromancy","damage":"","damagetype":"none","range":0,"components":"100 gold worth of powered silver","reaction":false,"sustained":false,"level":"master","value":0,"description":"Through a ritual, you can imbue an object by casting a necromantic spells on it. The first person who touches this object will trigger the spell with them as the target. This spell only ends once the effect is triggered."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarE1mnx09B","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Shards of Earth","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"projectile","actions":"1 Action","chargeeffect":"","school":"evocation","damage":"1d6","damagetype":"physical","range":8,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You target a Creature within 8 Units and send shards of earthen debris at them dealing Damage. This spell cannot be charged and does not cost any focus points."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarE3ERpHlL","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Greater Charm","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"","school":"witchcraft","damage":"","damagetype":"none","range":6,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You target a Creature within 6 Units and charm them, giving you a +3 bonus to Social Checks against them for the next day as long as they remain unhostile. "},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarE5Xd4Xh7","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Sacred Circle","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"5 Minutes","chargeeffect":"","school":"divine","damage":"2d8","damagetype":"healing","range":-2,"components":"Bundle of Incense","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You create a circle on the ground no larger than 2 Units in radius. Anyone who spends at least 1 hour in the circle recovers Health."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarEaL9ze13","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Lingering Death","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"Additional one-time 2d6","school":"necromancy","damage":"2d6","damagetype":"dark","range":14,"components":"","reaction":false,"sustained":true,"level":"master","value":0,"description":"A target you can see within 14 Units is inflicted with a Lingering death. This spell does Damage on the start of each of the Creatures turns as long as you Sustain this Spell."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarEdpQz4pp","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Lingering Curse","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"sonic","actions":"1 Action","chargeeffect":"","school":"fiend","damage":"1d6","damagetype":"none","range":20,"components":"","reaction":false,"sustained":true,"level":"beginner","value":0,"description":"You target a Creature you can see within 20 Units and place a Fiendish Curse on them, dealing damage at the start of their turn. If this Spell kills the target, you gain Health equal to your Level."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarErC2KZGV","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Feytouch","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"touchmelee","actions":"1 Action","chargeeffect":"Additional 1d12 Damage","school":"fey","damage":"1d12","damagetype":"psychic","range":-1,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You touch a Creature, dealing Damage. If the Attack Die is a 1, the caster becomes Confused for their next Action. If it is a True Hit, the target becomes Confused for their next Action"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarF0X0Com6","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Dragonflight","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"You Teleport 12 Units up.","school":"draconic","damage":"","damagetype":"none","range":-1,"components":"","reaction":false,"sustained":true,"level":"master","value":0,"description":"While you Sustain this Spell, you sprout Magical Wings and have a Flight Speed of 8. When you take the Move Action on your turn, you gain +2 Spell Attack and +2 Attack for the rest of your turn."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarFC7t6tm7","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Lesser Shapechange","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"druidic","damage":"","damagetype":"none","range":-2,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You turn into a tiny Beast for 10 Minutes, gaining the stats of the Creature for the duration of the spell. This spell cannot end before 10 Minutes. If the Caster reaches 0 Health as a beast, they revert and make a Life Line Check."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarFDrBqHBS","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Flamewhorl","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"projectile","actions":"1 Action","chargeeffect":"The distance requirement for the secondary effect is removed","school":"evocation","damage":"3d4","damagetype":"fire","range":20,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You launch a whorl of fire at a Target within 20 Units that deals Damage. If the whorl travels more than 16 Units, the Projectile targets any other Creature within 2 Units of the original Target."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarFIODpr1Y","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Mass Lesser Healing","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"Additioanl 1d6 and 3 Units extra Range","school":"divine","damage":"2d6","damagetype":"healing","range":3,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You heal up to 6 Creatures within 3 Units of you."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarFOdKvXl4","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Dragonfire","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"2 Actions","chargeeffect":"","school":"draconic","damage":"3d8","damagetype":"fire","range":12,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You target a Creature you can see within 12 Units and Ignite them with Dragonfire, dealing Damage and giving them the Ignited Condition for 1d6 rounds. This flame counts as Magical and cannot be doused by normal means. Roll a 1d4 to determine Damage type: 1=Physical, 2=Cold, 3=Fire, 4=Lightning."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarFPO7xkPW","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Chilling Ray","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"ray","actions":"1 Action","chargeeffect":"This ray also targets a creature within 2 Units of your original target.","school":"necromancy","damage":"2d6","damagetype":"cold","range":8,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You shoot a ray of cold energy towards a target you can see within 8 Units"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarFQF3SoEi","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Tricksy","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"fey","damage":"","damagetype":"none","range":10,"components":"","reaction":false,"sustained":true,"level":"beginner","value":0,"description":"You target a non-magical object under 10 lbs that you can see within 10 Units and teleport it into your hand as long as you Sustain this Spell. If this object is being worn, carried or equipped by someone, they must make a Resistance Check to avoid the effect. If you do not have a free hand when casting this spell, the object falls to the floor within 1 Unit of you. If this spell is no longer Sustained, the object returns to its original position."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarFkwBG3lM","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Minor Illusion","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"illusion","damage":"","damagetype":"none","range":8,"components":"","reaction":false,"sustained":true,"level":"beginner","value":0,"description":"You can create a small illusion less than 1 cubic ft in size that can be moved by your will but has no weight or substance. The illusion cannot be more than 8 Units from you or it vanishes. A Creature can attempt to deduce that there is an illusion if they perform a successful Search Check contested by your Spell Attack."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarG4ilonXZ","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Twilight Chasm","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"2 Actions","chargeeffect":"","school":"cosmic","damage":"You can Move the Cube 2 Units with your Free Action","damagetype":"none","range":20,"components":"You Target an Area within 20 Units and Center a 10 Unit Cube of Magical Darkness over it that cannot be penetrated by Light unless that Light ignores Magical Darkness. All Creatures within the Magical Darkness are considered Invisible and Blind. This Magical Darkness lasts for 1 Minute.","reaction":false,"sustained":false,"level":"expert","value":0,"description":"Magical Darkness"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarGAKPVeF0","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"True North","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"evocation","damage":"","damagetype":"none","range":0,"components":"a pointed iron weapon which the spell does not consume","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You place an arrowhead or pointed weapon on the ground that will always face north."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarGws7AHfc","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Waspswarm","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"touchmelee","actions":"1 Action","chargeeffect":"","school":"druidic","damage":"4d4","damagetype":"physical","range":10,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You summon a cloud of magical Wasps that swarm a target you can see within 10 Units, stinging them."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarHPdj62Qt","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Death Mark","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"2 Actions","chargeeffect":"","school":"witchcraft","damage":"","damagetype":"none","range":12,"components":"","reaction":false,"sustained":true,"level":"master","value":0,"description":"You target a Creature within 12 Units and place a death mark on them. All critical hits on the target are brutal and brutal critical hits execute if the target is below 40 health."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarHUVEkO88","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Lesser Healing","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"divine","damage":"2d8","damagetype":"healing","range":0,"components":"2 Pinches of Powdered Silver","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You touch a Creature and restore some of their health."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarHeKmgK4g","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Elemental Spew","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"area","actions":"1 Action","chargeeffect":"extra 1d12 Damage","school":"draconic","damage":"1d12","damagetype":"psychic","range":4,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You spew Elemental Energy in a 4 Unit Cone, dealing random Elemental Damage. Roll a 1d4 to determine Damage type: 1=Physical, 2=Cold, 3=Fire, 4=Lightning."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarHgFvGE8J","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Circle of Protection","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"3 Actions","chargeeffect":"Additional 2 Unit Radius","school":"abjuration","damage":"","damagetype":"none","range":999,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You target a 4 Unit radius area on the ground that you can see. All allied Creatures benefit from +3 resistance while within this area. This circle lasts for 10 Minutes"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarHgYyX348","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Again","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"auguration","damage":"","damagetype":"none","range":4,"components":"","reaction":true,"sustained":false,"level":"novice","value":0,"description":"As a reaction to a skill check, you can target a Creature within 4 Units and allow them to make the check again. This spell must be channeled before the result of the check is known."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarI2jx308W","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Wrath of the Black Dragon","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"area","actions":"3 Actions","chargeeffect":"2d10 Fire Damage","school":"draconic","damage":"4d12","damagetype":"dark","range":24,"components":"","reaction":false,"sustained":false,"level":"master","value":0,"description":"You fire a Line of Dark Fire with a 3 Unit Width towards a Location you can see within 24 Units, dealing Damage. Any Celestial Creature who is caught in the Radius that is under your Level and fails the Check is destroyed."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarI71a6aF9","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"False Life","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"10 Minutes","chargeeffect":"","school":"necromancy","damage":"","damagetype":"none","range":0,"components":"Two Silver Rings, coated in mixed blood from the caster and target.","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You touch a Creature. For the next 24 hours, if this Creature falls to 0 Health, they will get an additional 5 lifeline points but can only take the Move or Attack action. However, the Creature is under your command until the spell ends or they die."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarI8N9Ufim","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Rockskin","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"2 Actions","chargeeffect":"","school":"evocation","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":true,"level":"beginner","value":0,"description":"You target a Creature and their skin hardens, giving +2 Physical Mitigation as long as you Sustain this Spell."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarI9BSI4rZ","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Orb of Elements","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"projectile","actions":"1 Action","chargeeffect":"the Sphere Explodes within proximity and does Half Damage to anyone besides the target within 3 Units even if it misses the primary target.","school":"draconic","damage":"2d12","damagetype":"variable","range":18,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You launch a projectile of random Elemental energy at a target you can see within 18 Units, dealing Damage."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarIEETo79e","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Mindpiercer","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"Resistance Modifier Penalty becomes 1d4","school":"draconic","damage":"1d8","damagetype":"psychic","range":8,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You Target a Creature within 8 Units that you can see and pierce their mind, dealing Damage. Their next Resistance Check suffers a -1 Resistance Modifier."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarIscsbYdX","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Arcane Barrier","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"evocation","damage":"","damagetype":"none","range":6,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You create an invisible wall on a tile you can see within 6 Units that lasts until the start of your next turn. This wall cannot be targeted, is indestructable and blocks any Projectile, Line and Ray spells from passing through it."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarIv2t1Tlc","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Befriendment","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"sonic","actions":"1 Action","chargeeffect":"","school":"fey","damage":"","damagetype":"none","range":1,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You whisper to a target within 1 Unit and attempt to Charm them until the end of your next turn."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarJ4u1WCs2","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Awaken","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"10 Minutes","chargeeffect":"","school":"druidic","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":false,"level":"master","value":0,"description":"You touch a plant or beast and awaken it, giving them a Knowledge of -1 and allowing them to speak one language that you know. Once awakened, this spell can only be reverted by Sleep"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarJNkeXqZh","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Nemesis","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"2 Actions","chargeeffect":"","school":"witchcraft","damage":"","damagetype":"none","range":8,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You mutter the Demonic Language and curse a target within 8 Units of you. This target becomes your nemesis granting you an extra +2 on all Attack Modifiers against them granting them +2 on all Attack Modifiers against you, making it more likely they will attack you."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarJjrL569J","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Script","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"","school":"illusion","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You target a surface within 10 Units and create magical writing on it that lasts for 1 Minute. The script is visible to anyone and can be written in any style or language of the casters choosing."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarJqs4658h","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Weaponized Pebbles","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"projectile","actions":"1 Action","chargeeffect":"1 additional pebble.","school":"evocation","damage":"1d4","damagetype":"physical","range":6,"components":"a handful of pebbles","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"Launch 1d4 pebbles at a target within 6 Units and apply your Spell Damage Modifier on each pebble, but each pebble is mitigated by Physical Mitigation"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarK7746RpE","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Magic Mirror","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"witchcraft","damage":"","damagetype":"none","range":0,"components":"A crushed eyeball mixed with a piece of gum","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You touch the regeants of this spell to a piece of glass such as a mirror or window. The regeants become nearly invisible once merged with the surface in this way and can only be found with a search check of 10. You can touch another mirror in this way and view what the other sees through it. This spell lasts 1 month or until the regeant is removed from either mirror."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarK935FOf7","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Void Prison","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"2 Actions","chargeeffect":"Gain +2 Spell Attack","school":"cosmic","damage":"","damagetype":"none","range":12,"components":"","reaction":false,"sustained":true,"level":"novice","value":0,"description":"You Target a creature Large or Smaller that you can see within 12 Units and banish them and yourself to the void while you Sustain this spell. While you are both banished the void, neither Creature can take Actions, Reactions or Free Actions. While you Sustain this spell, you must roll a Contested Concentration Check against your Target at the start of your Turn. On failure, you both are returned to your previous locations."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarKC36LN2V","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Pox","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"Add +3 Spell Attack","school":"witchcraft","damage":"1d10","damagetype":"dark","range":12,"components":"","reaction":false,"sustained":true,"level":"novice","value":0,"description":"You target a Creature within 12 Units and inflict them with a Pox dealing Damage at the start of their turn as long as you Sustain this Spell."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarKd45CYcB","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Divert","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"illusion","damage":"","damagetype":"none","range":5,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You create a distracting magical effect such as a flash of light or a loud sound within 10 Units of you."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarKlOb0075","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Chains of Ice","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"touchmelee","actions":"1 Action","chargeeffect":"Make an additional Attack.","school":"evocation","damage":"2d6","damagetype":"cold","range":12,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You lash out with a strand of ice at a Target you can see within 12 Units, dealing Damage. If score a True Hit, the strand makes an additional Attack."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarL33TN55k","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Stare","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"vision","actions":"1 Action","chargeeffect":"extra 1d8 Damage","school":"fiend","damage":"1d8","damagetype":"fire","range":8,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"Your eyes turn black as you stare at a target you can see within 8 Units, dealing Damage if the target can make eye contact."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarL45eLu65","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Fiendish Aura","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"","school":"fiend","damage":"1d8","damagetype":"psychic","range":-1,"components":"","reaction":true,"sustained":true,"level":"novice","value":0,"description":"You create a fiery aura around you in 3 Unit Radius that lasts as long as you Sustain the Spell. At the end of your turn, anyone in that Radius takes Dark Damage. As a Reaction, you can choose to end this Spell early, causing it to explode for 1d8 Dark Damage for every Creature within the radius, including yourself."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarL5t9G7P4","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Rocktomb","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"area","actions":"2 Actions","chargeeffect":"Deal 3d6 Blunt Damage","school":"evocation","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You create a 2 Cube Unit hole in the ground or stone floor taking any Large or smaller Creatures with it. Anyone moving through the hole has a Movement Penalty and it is 2 Units deep."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarL7bU4WdV","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Bind Demon","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"2 Actions","chargeeffect":"","school":"witchcraft","damage":"","damagetype":"none","range":10,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You attempt to bind a Dark Creature your Level or lower within 10 Units, stunning them as long as you Sustain this Spell and the Creatures takes no Damage."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarL8kc8f46","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Static Field","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"area","actions":"1 Action","chargeeffect":"","school":"evocation","damage":"1d4","damagetype":"physical","range":6,"components":"The Damage from taking an Action is increased to 2d6","reaction":false,"sustained":true,"level":"novice","value":0,"description":"You target a 3 Unit Radius Area within 14 Units and create a Static Field that deals Damage. While you Sustain this Spell, any Creature that takes an Action within the field takes 1d10 Lightning Damage."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarLJ8s35kA","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"True Sight","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"2 Actions","chargeeffect":"","school":"auguration","damage":"","damagetype":"none","range":-2,"components":"","reaction":false,"sustained":true,"level":"master","value":0,"description":"You can see through illusions, invisibily and into the ethereal plane while you Sustain this Spell. This spell can last up to 10 Minutes."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarLb7TIlSs","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Pappus","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"","school":"fey","damage":"","damagetype":"none","range":10,"components":"","reaction":false,"sustained":true,"level":"master","value":0,"description":"You target a Creature within 10 Units and cause them to rise 2 Units at the start of their turn. If the Target has something they can grab on to, they can use 1 Action at the start of each turn to anchor themselves to it with a successful Strength Check of 9. This spell lasts as long as you Sustain this Spell or until the target reaches 20 Units high. When the spell ends, the Target immediately Falls."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarLjj9N8yw","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Lesser Spell Shield","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"abjuration","damage":"","damagetype":"none","range":-1,"components":"","reaction":true,"sustained":false,"level":"beginner","value":0,"description":"You create a semi-transparent shield of magic around you that adds +2 Block Modifier against spells. This spell lasts 1 Minute or until it successfully blocks a spell."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarLuMRjw7o","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Suppress Mind","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"2 Actions","chargeeffect":"","school":"illusion","damage":"2d8","damagetype":"psychic","range":10,"components":"","reaction":false,"sustained":false,"level":"master","value":0,"description":"You target a Creature up to 10 Units away and dominate their mind, inflicting Damage and preventing them from Channeling or Sustaining Spells as long as you Sustain this Spell."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarM1VGAtyG","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Materialize Thought","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Minute","chargeeffect":"","school":"transmutation","damage":"","damagetype":"none","range":-1,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You create a small object such as a tool or light 1-handed weapon from nothing more than your thoughts. This item persists for 1 day before dissolving back into nothingness."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarM7OQqa08","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Call: Wind","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"area","actions":"3 Actions","chargeeffect":"Increase the radius of the cyclone by 2 Units","school":"evocation","damage":"6d6","damagetype":"physical","range":40,"components":"","reaction":false,"sustained":false,"level":"master","value":0,"description":"You call to the sky and generate a 6 Unit radius cyclone at a point up to 40 Units away from you pulling all Creatures within the cyclone that are large or smaller towards the center, crushing them in buffeting winds."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarM8d5NM0o","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Ethershroud","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"2 Actions","chargeeffect":"","school":"fey","damage":"","damagetype":"none","range":-1,"components":"","reaction":false,"sustained":true,"level":"beginner","value":0,"description":"You become camouflaged, cloaking yourself in Fey Magic. As long as you do not move, you are Invisible for as long as you Sustain this Spell. This effect ends when you cast a Spell or make an Attack"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarMCwH1056","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Featherfall","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"transmutation","damage":"","damagetype":"none","range":16,"components":"","reaction":true,"sustained":true,"level":"beginner","value":0,"description":"You target a Creature within 16 Units, slowing any falling due to gravity to 1 Unit a Round while you Sustain this Spell."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarMgA3J018","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Divine Healing","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"3 Actions","chargeeffect":"Heals the Caster for the same amount","school":"divine","damage":"6d8","damagetype":"healing","range":12,"components":"","reaction":false,"sustained":false,"level":"master","value":0,"description":"You target a Creature within 12 Units and restore some of their health, as well as curing blindness and deafness"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarMsxch0JA","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Identify","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Minute","chargeeffect":"","school":"auguration","damage":"","damagetype":"none","range":-1,"components":"a Quartz worth 5 gold","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You can identify one magical property on an item."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarN268tcLs","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Summon : Dagger of Ice","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"Summon an additional shard","school":"evocation","damage":"","damagetype":"cold","range":-2,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You summon a shard of ice that does not melt or lose its form. This is considered a light 1-handed piercing weapon with the Magical Property and lasts for 1 hour. This weapon does Physical Damage and uses your Spell Damage Modifier when calculating bonus Damage."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarN6vvn8WQ","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Transmute Object","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"transmutation","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":true,"level":"beginner","value":0,"description":"You touch an object and transmute it into another object of the same size as long as you Sustain this Spell. The material of the object remains the same."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarN9Ew5plQ","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Mass Camouflage","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"druidic","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You target up to six Creatures within 2 Units giving them a +2 bonus to stealth in natural environments."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarNvkjQ5Hu","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Bone Walk","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"2 Actions","chargeeffect":"","school":"necromancy","damage":"","damagetype":"none","range":-1,"components":"Sprinkingly the Ash from a tibia bone on a Beast or Human corpse and placing 2 peridots in its eye sockets","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You perform a ritual on the corpse of a Humanoid or Beast that causes it to rise as Undead for 1 Hour which becomes your temporary Thrall. This Creature is under your control and can be given specific commands with a Free Action, otherwise it will repeat the last command given. You can only have 1 Thrall at a given time"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarO9C8WPL7","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Greater Plague","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"touchmelee","actions":"1 Action","chargeeffect":"","school":"necromancy","damage":"2d8","damagetype":"physical","range":-1,"components":"a rodent","reaction":false,"sustained":true,"level":"expert","value":0,"description":"You speak a command word to a rodent and unleash it, placing it under your control. As an action, you can move this rodent up to its movement speed or have it attack using your spell attack modifier. If the attack hits, the target takes Damage and suffers a Moderate Disease"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarO9sR9Q25","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Edict : Death","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"sonic","actions":"2 Actions","chargeeffect":"","school":"draconic","damage":"","damagetype":"true","range":10,"components":"Requires the Old Draconic Language","reaction":false,"sustained":false,"level":"master","value":0,"description":"You Target a Creature you can see within 10 Units and speak the Draconic word for Death. If they have less than 60 Health and fail their Check by more than 3, they are instantly killed."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarOIaSbA60","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Greater Invisibility","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"illusion","damage":"","damagetype":"none","range":2,"components":"","reaction":false,"sustained":true,"level":"master","value":0,"description":"You and up to 5 other Creatures within 2 Units become invisible as long as you Sustain this Spell."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarOL1ASV3j","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Levitate","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"evocation","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"A strong gust of wind holds you aloft and aids in your movement until the end of your next turn. While under the effects of levitation, you remain at your current elevation and gain an additional 2 Units of movement."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarOR45W8C2","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Lesser Sanctuary","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"divine","damage":"","damagetype":"none","range":4,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You create a Divine Santuary with a radius of 4 Units. While you are inside the Sanctuary, No Dark Creature under your level can willfully pass through the area. The Sanctuary lasts for 24 hours"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarOi5wsv5B","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Flame Vector","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"area","actions":"1 Action","chargeeffect":"1d6 Extra Damage and you teleport 4 Extra Units","school":"fiend","damage":"1d6","damagetype":"fire","range":1,"components":"","reaction":true,"sustained":false,"level":"novice","value":0,"description":"You ignite into flames, dealing Fire Damage to anyone adjacent to you. You teleport to a place within 4 Units that you can see."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarOiD8qlY4","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Aura of Superior Protection","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"2 Actions","chargeeffect":"","school":"abjuration","damage":"","damagetype":"none","range":4,"components":"","reaction":false,"sustained":true,"level":"master","value":0,"description":"You emit an aura, giving bonus to all Physical and Elemental Mitigations equal to your [Level / 2] to anyone within a 4 Unit radius while you Sustain this Spell."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarOoFbG87F","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Lesser Deflection","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"abjuration","damage":"","damagetype":"physical","range":0,"components":"","reaction":true,"sustained":false,"level":"novice","value":0,"description":"When targeted with a Projectile, you can attempt to deflect it by rolling a Spell Attack instead of rolling an Avoidance Check. On a success, the spell is deflected harmlessly."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarOuPj42lf","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Omen","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"10 Minutes","chargeeffect":"","school":"auguration","damage":"","damagetype":"none","range":5,"components":"","reaction":false,"sustained":false,"level":"master","value":0,"description":"You declare an Omen, granting all Creatures within a 5 Units area +1 to all Attack Rolls and Skill Checks for 1 day."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarP2X4Km3c","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Morning Dew","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"2 Actions","chargeeffect":"","school":"druidic","damage":"","damagetype":"none","range":0,"components":"a drop of water","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You manifest enough water to fill a 1-gallon container."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarP5ESaGr9","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Tether of Corruption","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"2 Actions","chargeeffect":"","school":"fiend","damage":"2d12","damagetype":"dark","range":12,"components":"","reaction":false,"sustained":true,"level":"master","value":0,"description":"You create a tether on a Creature within 12 Units which halves their Movement Speed. While you Sustain this Spell, you can use 1 Action per turn to deal Damage and pull the target 2 Units towards you. This spell ends if a Creatures gets more than 15 Units away."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarP785wOFJ","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Kill","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"2 Actions","chargeeffect":"Raise the threshold to 50 health","school":"necromancy","damage":"","damagetype":"none","range":6,"components":"A Black Pearl","reaction":false,"sustained":false,"level":"master","value":0,"description":"You target a humanoid or beast you can see within 6 Units and speak a command word into a black pearl. If the target has less than 40 health, it dies."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarP7Ca41pq","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Creature to Object","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"2 Actions","chargeeffect":"","school":"transmutation","damage":"","damagetype":"none","range":8,"components":"","reaction":false,"sustained":true,"level":"expert","value":0,"description":"You target a medium sized Creature within 8 and transmute them into an object of roughly the same size. This persists as long as you Sustain this Spell. If the object is destroyed, the object reverts back to that of the Creature"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarPDW4QRH3","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Chaos Touch","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"touchmelee","actions":"1 Action","chargeeffect":"","school":"fey","damage":"","damagetype":"none","range":-1,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You touch a Creature and give them one random condition. If the Creature fails their Resistance Check, roll a d6 and give them one of the following conditions based on the result: 1-Ignited 2-Frozen 3-Blinded 4-Deafened 5-Paralyzed 6-Incapacitated. The condition lasts for 1 Minute."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarPF1psxJ8","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Witness","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"10 Minutes","chargeeffect":"","school":"auguration","damage":"","damagetype":"none","range":-1,"components":"an item or belonging of the target","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You choose a Creature which you possess one of their belongings or an item they have interacted with in the last day and glance into a medium such as a water, flame or crystal ball. You can view them and their actions through the medium for the next 10 Minutes."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarPPK7SH8B","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Lesser Shield","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"abjuration","damage":"1d6","damagetype":"shielding","range":6,"components":"","reaction":true,"sustained":false,"level":"beginner","value":0,"description":"As a Reaction, You target a Creature you can see within 8 Units as a reaction, surrounding them in a minor shield that absorbs Damage."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarPnV0b3VC","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Etherwave","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"area","actions":"1 Action","chargeeffect":"Drain additional 2 Points","school":"cosmic","damage":"","damagetype":"dark","range":8,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You unleash a Wave of Energy from yourself, dealing Damage to anyone within 3 Units. If any affected Creature has a Focus, 2 Points are drained from it and restored to yours. If their Focus goes below 0, they must make a Burn Check"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarQK36UzY4","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Flamethrower","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"area","actions":"1 Action","chargeeffect":"extra 2d6","school":"evocation","damage":"2d6","damagetype":"fire","range":3,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You spray fire in a 3 Unit cone infront of you, dealing Damage to all in the path."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarQeSBWZqn","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Lesser Find Undead","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"2 Actions","chargeeffect":"","school":"divine","damage":"","damagetype":"none","range":20,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You know the direction of the closest undead if any exist within 20 Units."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarQnf9Vwrv","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Become Fire","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"projectile","actions":"1 Action","chargeeffect":"","school":"draconic","damage":"6d6","damagetype":"true","range":16,"components":"","reaction":false,"sustained":false,"level":"master","value":0,"description":"You transmute yourself, becoming pure fire. You target a Creature within 16 Units and launch yourself as a fiery Projectile, dealing Damage. You revert back to your original form in the closest tile to your impact."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarQsbOY1fI","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Lesser Effigy","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"10 Minutes","chargeeffect":"","school":"witchcraft","damage":"","damagetype":"none","range":0,"components":"Requires the Demonic language","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You create a lesser effigy out of belongings or body parts of a humanoid. Any spells that give conditions that are cast on this effigy are redirected to your target if they are within 20 Units."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarQz0qgTeu","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Spite","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"sonic","actions":"1 Action","chargeeffect":"","school":"witchcraft","damage":"3d6","damagetype":"psychic","range":7,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You target one Creature within 7 Units that can hear you and speak a dark word dealing Damage to them."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarR8A1757f","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Anomoly","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"area","actions":"1 Action","chargeeffect":"Additional 2 Unit radius","school":"transmutation","damage":"3d6","damagetype":"physical","range":60,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You manipulate gravity to create a shock of force at a location with a radius of 3 Units to a place you can see within 15 Units. Any Creature Large or smaller that fails the check is drawn to the center of the area and takes 3d6 Force Damage. The Damage increases by 1d6 for every Creature that is drawn into the anomoly"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarRM59W2qt","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Fortify","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"evocation","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":true,"level":"expert","value":0,"description":"You touch a Creature, fortifying their armor and giving them a +4 bonus to Physical Mitigation while you Sustain this Spell. Their armor also becomes immune to wear and tear through critical hits. This spell can also be used to fortify other objects, giving them a bonus health equal to your level"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarRR1x8JQx","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Fireball","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"projectile","actions":"2 Actions","chargeeffect":"2d6 additional Damage, 1 Unit additional explosion radius","school":"evocation","damage":"6d6","damagetype":"fire","range":0,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You conjure and launch a projectile fireball at a target or an area. If the fireball strikes a creature, it deals full Damage to that creature. All other creatures within a 1 Unit Radius of the target, including the original target, must make a Dodge or Resist Check against the Spell Attack or take half the Damage that was rolled."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarRRT58QHE","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Touch of Frost","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"double Spell Damage Modifier","school":"evocation","damage":"1d12","damagetype":"cold","range":0,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You touch a Creature, dealing cold Damage to them."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarRg6P9778","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Sense Poison and Disease","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Minute","chargeeffect":"","school":"druidic","damage":"","damagetype":"none","range":2,"components":"boiled water with tree bark","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You can detect Poison and Disease within 2 Units of you. If a disease is detected this way, you gain a +2 bonus to Medicine checks in treating it."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarRwOp56q1","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Burn","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"touchmelee","actions":"1 Action","chargeeffect":"The spell has +1 Unit of Range","school":"evocation","damage":"2d4","damagetype":"fire","range":0,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You touch a Creature and burn them, dealing Damage."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarS0dTmhBR","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Lesser Haste","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"2 Actions","chargeeffect":"","school":"transmutation","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":true,"level":"novice","value":0,"description":"You touch a Creature, granting them quickness, allowing them to take one extra Action on their turn while you Sustain this Spell."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarS22Qvm2M","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Repelling Fire","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"The Flame lasts one hour.","school":"evocation","damage":"","damagetype":"fire","range":0,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You create a magical flame that repels beasts and monsters. All Beasts and Monsters have a Movement Penalty when moving towards the flame. The flame lasts 1 Minute"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarS3E6074U","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"One with Water","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"evocation","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You touch a Creature, giving them the ability to walk on water, breathe undear water and swim with their movement speed for 1 hour."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarS3rr7h2K","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Manipulate Water","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"2 Actions","chargeeffect":"","school":"evocation","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"Target a Unit of water within 4 Units less than 1 square cubic Unit in size and convert it to steam or ice."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarSF5vROrV","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Invisibiltiy Versus Lesser Undead","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"divine","damage":"","damagetype":"none","range":0,"components":"Vial of Holy Water","reaction":false,"sustained":true,"level":"beginner","value":0,"description":"You touch a Creature and they become Invisible to Lesser Undead."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarSK9vwD8g","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Allure","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"illusion","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":true,"level":"beginner","value":0,"description":"You touch a Creature and give them a +2 bonus to Social while you Sustain this Spell."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarT18Yb5TZ","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Pins and Needles","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"","school":"witchcraft","damage":"","damagetype":"none","range":4,"components":"","reaction":true,"sustained":true,"level":"beginner","value":0,"description":"You target a Creature within 4 Units, numbing one of its limbs giving them a -1 Attack as long as you Sustain this Spell."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarT9ooG0On","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Gust","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"add 1 Unit to the push distance. Can push large Creatures 1 Unit.","school":"evocation","damage":"1d8","damagetype":"physical","range":6,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You create a gust of wind at a location you can see within 6 Units. The gust of wind can push a Small target 2 Units or a Medium target 1 Unit. If the target collides with a wall or solid surface, they take Damage"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarTW10uglO","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Invulnerability","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"abjuration","damage":"","damagetype":"none","range":12,"components":"","reaction":false,"sustained":true,"level":"master","value":0,"description":"You target a Creature within 12 Units of you that has more than 0 Health. They are immune to Damage as long as you Sustain this Spell. You cannot take any actions while you maintain this spell. This spell lasts up to 1 Minute."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarU4eCewzR","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Polarity","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"Range becomes 12 and you and the Creature move 2 Extra Units closer","school":"cosmic","damage":"","damagetype":"none","range":8,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You Target a Creature you can see between 4 and 8 Units and drag and create a force of attraction between you. On a success, you and the Creature move 2 Units closer towards each other if there is nothing obstructing your path. If you and the Creature get within 1 Unit of each other, you both take Arcane Damage equal to your Spell Damage Bonus Modifier."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarU9boZ21W","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Lullaby","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"touchmelee","actions":"1 Action","chargeeffect":"Add a +5 to your spell attack","school":"illusion","damage":"","damagetype":"none","range":8,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You touch a humanoid or beast and attempt to put them to sleep if the target has less remaining health than your Spell Attack roll. If the Creature is not hostile towards you, multiply your roll by 2. If successful, the Creature falls asleep for 10 Minutes."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarUM80E35l","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Arcane Projectile","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"projectile","actions":"1 Action","chargeeffect":"This spell strikes 1d6 times and does 1d6 Damage instead.","school":"evocation","damage":"1d4","damagetype":"arcane","range":4,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You fire an arcane bolt of energy at a target within 4 Units. This spell strikes 1d4 times and does 1d4 Damage for each strike, applying your Spell Damage bonus once."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarUa872mBe","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Chaos Gem","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"ray","actions":"1 Action","chargeeffect":"range increases by 8 Units","school":"evocation","damage":"3d4","damagetype":"variable","range":8,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You channel energy through a gemstone into a ray of light towards a target you can see within 8 Units. The Damage type is dependent on the gemstone used. Turqouise : Cold, Agate : Fire, Obsidian : Dark, Lapis Lazuli : Divine, Quartz : Lightning. The Gemstone is consumed on this spell when a 1 is Rolled on the attack."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarUsaby1c7","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Mortal Form","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"draconic","damage":"","damagetype":"none","range":-1,"components":"","reaction":false,"sustained":true,"level":"beginner","value":0,"description":"You take the form of a Human Avatar for as long as you Sustain this Spell. This Avatar always has the same appearance."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarUu1fzg3S","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Lesser Telekenisis","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"projectile","actions":"1 Action","chargeeffect":"","school":"transmutation","damage":"1d6","damagetype":"physical","range":8,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"Target a tiny Creature or object under 5 lbs. within 8 Units. of you and move it. If the target is a Creature it makes a Resistance Check and can be moved 10 ft upon failure. If the target is an object, it can be moved 6 Units and can be used to throw into a Creature within the spells range dealing Damage to both the target and the object. Objects fail this check automatically."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarUwVhq53g","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Hunt","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"fiend","damage":"","damagetype":"none","range":-1,"components":"","reaction":false,"sustained":true,"level":"beginner","value":0,"description":"You target a Creature you can see and put a mark on them which lasts as long as you maintain Sustain this Spell or trigger the circumstance that ends the Spell. While this mark is active, you have an extra 3 Units of Movement Speed towards them. Your first Melee Attack on the target deals extra Damage equal to your Level. This Spell ends when you trigger this effect."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarVavDuyBp","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Improved Reactions","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"auguration","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You touch a Creature and give them a +3 bonus to Initiative for the next hour."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarVgL3r8BC","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Summon Lesser Demon","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"5 Minutes","chargeeffect":"","school":"witchcraft","damage":"","damagetype":"none","range":0,"components":"Requires the Demonic language","reaction":false,"sustained":true,"level":"novice","value":0,"description":"You reach into another plane and attempt to command a Demon of level 2 or lower for 1 hour. This requires a Spell Attack of 8 or else it fails. If you stop Sustaining this Spell before the hour is over, the demon is no longer undere your control."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarVuqoq49o","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Heavy","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"","school":"transmutation","damage":"","damagetype":"none","range":20,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You target a Creature within 20 Units and cause them to become heavy, lowering their Movement Speed by 2 Units until the end of thier next turn. If the target is Flying or Hovering, their Move Speed becomes 0 until the end of their next turn. Additionally, they must succeed on an Athletics Check of 9 or higher or they immediately begin falling."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarWAbP9fhO","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Ethereal Wall","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"3 Actions","chargeeffect":"Panels become 3x3 Units","school":"cosmic","damage":"","damagetype":"none","range":26,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You create an semi-transparent wall made up of 6 2x2 Unit Panels that can be arranged in any configuration within 26 Units of you. This wall has no Mitigations and can take a total of 80 Health before being destroyed. Arcane Damage heals the wall."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarWBMr8eBb","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Kinetic Shot","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"projectile","actions":"1 Action","chargeeffect":"","school":"","damage":"1d6","damagetype":"physical","range":6,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You launch a Projectile at a Target you can see within 6 Units dealing 1d6 Physical Damage and does not take any Focus Points. You can use a focus point to Empower your Kinetic Shot, dealing 1d10 damage instead. Additionally, you can Double-Empower a Kinetic Shot, using 2 Focus Points dealing 2d6 Damage."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarWEFP3OGY","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Bramble Patch","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"area","actions":"2 Actions","chargeeffect":"","school":"druidic","damage":"2d6","damagetype":"physical","range":20,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You conjure a 4 Cube Unit of bramble patch to a point you can see within 20 Units, attacking everyone within in, The terrain is considered challenging and anyone who moves through it takes Damage again for each Action that they spend Moving."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarWIIk6T3A","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Bellow","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"sonic","actions":"1 Action","chargeeffect":"Allies within range are Immune","school":"draconic","damage":"4d6 Damage","damagetype":"true","range":6,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You enhance your voice, creating a wave of force within a 6 Unit radius. Any creature who can hear you takes damage. On a True Hit, they also become Afraid until the end of their next turn."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarX1u6n9Aj","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Greater Deflection","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"abjuration","damage":"","damagetype":"none","range":-1,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"When targeted with a Ray Spell or Projectile, you can attempt to reflect it by rolling a Spell Attack instead of rolling an Avoidance Check. On a success, the spell is deflected harmlessly. On a success of +3 or more, the spell is redirected back to the caster who must make an avoidance check against the result of your Spell Attack roll."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarXNxewysC","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Frigid Touch","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"Reduces movement speed of target by 2","school":"necromancy","damage":"1d10","damagetype":"cold","range":16,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You snap the severed finger of a humanoid figure and a spectral hand appears near a target within 16 Units of you and grasps them."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarXQjzLH46","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Smite","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"the extra Damage applies to all Creatures","school":"divine","damage":"1d6","damagetype":"divine","range":-2,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"Your next 3 attack deals extra Divine Damage to Dark Creatures."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarY0ebImlx","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Blood Mark","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"witchcraft","damage":"","damagetype":"none","range":-1,"components":"1d4 Damage worth of your blood","reaction":true,"sustained":false,"level":"beginner","value":0,"description":"In reponse to taking Melee Damage, you amplify the Damage received in order to spray your blood on a Creature within 1 Unit of you. At any point within the next 10 days, if you focus for 1 Minute, you will know the direction of this Creature"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarY5QUif2f","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Liquify","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"transmutation","damage":"","damagetype":"none","range":4,"components":"","reaction":false,"sustained":true,"level":"master","value":0,"description":"You target a metalic non-magical object within 4 Units or a piece of that object that fits within a 1 Unit Cube and liquify it into molten gold. This spell requires a pure ingot of gold which transmutes into whatever metal the object was made of."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarY88L5c8n","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Electrocute","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"projectile","actions":"1 Action","chargeeffect":"additional 1d12 Damage","school":"evocation","damage":"1d12","damagetype":"lightning","range":5,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You launch crackling energy at a target within 5 Units. Your Spell Damage Modifier is doubled against creatures wearing metal armor or creatures made of metal."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarYDJye0Z8","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Ultravision","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"abjuration","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You touch a Creature, granting them Ultravision for 1 hour."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarYetjIBuy","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Teleport : Translocate","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"You touch a willing Creature within 1 Unit and they teleport within 1 Unit of you in a free space.","school":"evocation","damage":"","damagetype":"none","range":40,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"Make a Spell Attack greater than 7 to succeed. If successful, you teleport up to 40 Units away to a point you can see. On a failure, roll a 1d8 to determine direction adn a 1d6 to determine Units of distance and then teleport there instead."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarYxmv8Hw1","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Presence","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"draconic","damage":"","damagetype":"none","range":-1,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You create an Aura around you, extending out in a 2 Unit Radius. Any creauture that starts its turn within your Aura must make a Resist Check against your Spell Attack. On a failure, the Creature takes an Attack Action against you if you are in their range."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarZ5w6uv0o","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Eyes of the Hunter","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"abjuration","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You touch a Creature, granting them Infravision for 1 hour."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarZ8E03PuK","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Swirling Orbs","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"area","actions":"1 Action","chargeeffect":"","school":"fey","damage":"2d12","damagetype":"psychic","range":-1,"components":"","reaction":false,"sustained":true,"level":"master","value":0,"description":"You surround yourself in multiple orbs that revolve around you in a ring, dealing Damage to anyone that is 2 Units away from you at the end of your turn. While you maintain Concentraiton on this spell, you can use a subsequent Action to change the orbit of the Orbs anywhere between 1 and 5 Units."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarZ93lQ74I","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Call: Water","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"area","actions":"4 Actions","chargeeffect":"travel speed increased to 20 Units per turn","school":"evocation","damage":"4d12","damagetype":"physical","range":0,"components":"","reaction":false,"sustained":true,"level":"master","value":0,"description":"You call upon a large body of water within 50 Units of you and summon a tidal wave from it 10 Units high and 10 Units wide. It travels 10 Units per turn, dealing Damage to anyone it strikes along the way. This spell ends after 6 turns"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarZK7KnJ7R","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Mend","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"transmutation","damage":"","damagetype":"none","range":0,"components":"requires a 1 inch cube of a similar material","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You touch a Damaged object with a break or tear less than 1 ft. and repair it. This spell repairs one level of armor Damage."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarZWSfIdRY","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Starfall","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"area","actions":"1 Action","chargeeffect":"Additional 2d6 Damage and additional 1 Unit Radius","school":"cosmic","damage":"3d6","damagetype":"arcane","range":20,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You target an Area that you can see within 20 Units and create an explosion of starlight at that location, dealing Damage to anyone within a 2 Unit Radius"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarZYBsDaYD","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Consume Mind","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"","school":"fiend","damage":"1d12","damagetype":"psychic","range":10,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You target a Creature within 10 Units that is Sustaining a Spell and force them to make a Contested Concentration Check against your Spell Attack instead of making a Resistance Check. If your target loses the Spell they are Sustaining, you deal 1d12 Psychic Damage to them. If you fail, you take the Psychic Damage instead."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarZtB7rNfN","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Dreary","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"","school":"fey","damage":"","damagetype":"none","range":10,"components":"","reaction":false,"sustained":true,"level":"novice","value":0,"description":"You target a Creature within 10 Units and increase their Exhaustion Tier by 1 as long as you are Sustaining this Spell. The Tier of Exhaustion is removed when the Spell Ends."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarZyLLQgCS","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Sense Elemental","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"draconic","damage":"","damagetype":"none","range":-1,"components":"","reaction":false,"sustained":true,"level":"beginner","value":0,"description":"You reach out with your Draconic Senses and can sense the presence of Elementals within 1 Mile but cannot discern their direction or quantity."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHara37tQTo5","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Purify","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"transmutation","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You target a container of liquid no larger than 1 gallon and remove any toxins or poisons from it."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHara53124nY","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Greater Bonewalk","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"4 Actions","chargeeffect":"","school":"necromancy","damage":"","damagetype":"none","range":-1,"components":"Sprinkingly the Ash from a tibia bone on a Beast or Human corpse and placing 2 amethysts in its eye sockets","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You perform a ritual on the corpse of a Humanoid or Beast that causes it to rise as Undead for 1 Week which becomes your temporary Thrall. This Creature is under your control and can be given specific commands with a Free Action, otherwise it will repeat the last command given. You can only have 1 Thrall at a given time"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHara7BMl1nH","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Summon : Divine Hammer","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"You summon a heavy 1-handed hammer instead.","school":"divine","damage":"","damagetype":"divine","range":-2,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You summon a light 1-handed hammer that lasts 1 hour. This hammer has the Silvered Property and emits dull light up to 2 Units."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHaraMRBPysJ","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Become Stone","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"draconic","damage":"","damagetype":"none","range":-1,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You transmute yourself, becoming stone itself for 1d12 hours. While you are transformed in this way, you can take up the form of either yourself or a rock roughly the size of your body with a texture and color chosen by you. You gain Temporary Health equal to your level. If this Health is depleted, you revert back to your original form."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHaraMcn5qvX","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Nebula","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"Radius becomes 4 Units","school":"cosmic","damage":"","damagetype":"none","range":8,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You create an Arcane Fog with a 3 Unit Radius in an area you can see within 8 Units. Creatures who start their turn in this Fog must make a Resist Check agaisnt your Initial Spell Attack or become Blinded as long as they remain inside the cloud. Creatures inside the Fog are considered obscured and gain Partial Cover"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHaraPPQp8Yg","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Third Eye","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"witchcraft","damage":"","damagetype":"none","range":0,"components":"a smear of charcoal on the target","reaction":false,"sustained":true,"level":"beginner","value":0,"description":"You target a Creature and give them a +2 Search and +2 Initiative bonus while you Sustain this Spell."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHaraVi1Os99","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Swarm of Flies","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"area","actions":"1 Action","chargeeffect":"The swarm can move at twice the speed","school":"necromancy","damage":"2d8","damagetype":"physical","range":20,"components":"","reaction":false,"sustained":true,"level":"expert","value":0,"description":"You bite into an obsidian-cored rotten apple and summon a swarm of flies within 20 Units The swarm has a radius of 3 Units and any Creature that starts it turn within or enters the swarm takes Damage. You can use an action to move this swarm up to 3 Units"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarb3d79V2Q","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Protection against Darkness","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"abjuration","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You touch a Creature and grant them +5 Resistance to Dark Damage for 1 Minute."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarb4sTJj32","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Wither","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"","school":"necromancy","damage":"1d12","damagetype":"dark","range":8,"components":"A piece of fruit, which rots upon casting this spell","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You target a plant or patch of foliage within 8 Units, no larger than 2 square Units and deal Damage to it. If the plant is a Creature, it takes Damage."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarb9B54AkG","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Elemental Grounding","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"10 Minutes","chargeeffect":"","school":"witchcraft","damage":"","damagetype":"none","range":-2,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You ground yourself, gaining +4 Elemental Mitigation for 1 day."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarbJVv1g2l","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Defile Life","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"2 Actions","chargeeffect":"","school":"divine","damage":"2d10","damagetype":"divine","range":10,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You channel Dark energy into a Humanoid or Beast within 10 Units, dealing Damage."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarbhEQM81n","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Ley lines","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"10 Minutes","chargeeffect":"","school":"evocation","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":true,"level":"expert","value":0,"description":"You tap into deep earthen magic, learning the way to a landmark, settlement, cave or body of water."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarbj318oRh","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Blight","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"additional Mild Disease","school":"druidic","damage":"2d8","damagetype":"dark","range":12,"components":"","reaction":false,"sustained":true,"level":"expert","value":0,"description":"You target a Creature that you can see within 12 Units and wrack them with disease. This spells effectiveness doubles against plants and only affects living Creatures."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarbks0gi73","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Fly","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"transmutation","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":true,"level":"master","value":0,"description":"You touch a willing Creature and grant them the ability to fly up to their movespeed as long as you Sustain this Spell."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarbsLtS26y","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Double Up","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"illusion","damage":"","damagetype":"none","range":-2,"components":"","reaction":true,"sustained":false,"level":"beginner","value":0,"description":"When targeted with attack, create a near perfect duplicate of yourself and Roll a D12. On a 7 or higher, the attack targets your duplicate instead of you. The duplicate vanishes after the attack."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarc0vKq86K","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Courage","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"abjuration","damage":"1d4","damagetype":"temphealth","range":0,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You touch an Afraid Creature, removing the Afraid status and giving them Temporary Health for 1 Minute."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarcOlRN1q8","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Infect","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"10 Minutes","chargeeffect":"","school":"necromancy","damage":"","damagetype":"dark","range":-1,"components":"A piece of hair or drop of blood from the humanoid and a lit candle.","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"Gives a humanoid or Creature the Infection condition. This spell is not limited by range."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarcZt06kfq","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Teleport : Relocation","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Minute","chargeeffect":"","school":"evocation","damage":"","damagetype":"none","range":-1,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"Make a Spell attack greater than 9 to succeed if the target is not a magical nexus designed for teleportation. If successful, you are teleported to a location on the same plane and celestial body as you that you have been before. On a failure, use the Teleportation Failure table to determine where you end up."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarcphd71uB","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Daydream","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"","school":"illusion","damage":"","damagetype":"none","range":8,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You create images inside of a non-hostile Creatures head causing them to enter a near sleep state of dreaming. While in this state, they have a -2 Modifier to Concentration, Search and Initiative Checks."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarcyBc8Hf4","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Sandslinger","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"2 Actions","chargeeffect":"Changes into Area spell with a 2 Unit radius","school":"evocation","damage":"","damagetype":"none","range":6,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You cause sand, dirt and silt to fling into a Large or smaller Creatures face you can see within 6 Units blinding them for 1 round. A Creature can use an action to clear their eyes of the debris."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHard0m85ob3","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Weight of the Stars","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"2 Actions","chargeeffect":"","school":"cosmic","damage":"3d12","damagetype":"arcane","range":-1,"components":"","reaction":false,"sustained":false,"level":"master","value":0,"description":"You Target an Area you can see within 24 Units that has a 6 Unit Radius and create a field of crushing gravity. While you Sustain this Spell, all Creatures who start an Action in this Area or enter this Area for the first time must make a Resistance Check against your Spell Attack or take Damage and have their Movement Speed halved"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHardB3pE7l1","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Alacrity","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"auguration","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":true,"level":"beginner","value":0,"description":"You touch a Creature and grant them speed, adding 1 Unit to their Movement Speed. Additionally, any time they take the Attack Action, they can move 2 Units. When this spell ends, the affected Creature gains 1 tier of Exhaustion and cannot take the Move Action on their next turn."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHare3v5dWBO","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Animate Object","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"witchcraft","damage":"","damagetype":"none","range":-1,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You animate an object under 10 lbs for the next day. This object can be imbued with a personality of your choice and has a move speed of 4 Units but cannot attack. It will follow any commands you give it. If a broom is animated in this way, you can ride it"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHareHSLbtod","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Greater Regeneration","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"2 Actions","chargeeffect":"Cures diseases, infections and poisons","school":"druidic","damage":"6d6","damagetype":"healing","range":0,"components":"A leaf sprinkled with 100 GP worth of Platinum Dust","reaction":false,"sustained":false,"level":"master","value":0,"description":"You touch a Creature and heal them, regenerating any missing body parts."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarf1U1BzNz","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Chains of Binding","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"touchmelee","actions":"1 Action","chargeeffect":"","school":"fiend","damage":"","damagetype":"physical","range":3,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You spawn magical chains that target a Creature within 3 Units. If your attack hits, you deal Damage and move within 1 Unit of the target. If the Creature you are bound to moves before the start of your next turn, you follow your target 3 Units before the chains break."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarf34jFm0c","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Windwall","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"evocation","damage":"","damagetype":"none","range":-2,"components":"","reaction":true,"sustained":false,"level":"beginner","value":0,"description":"When targeted by a projectile, you gain a +2 bonus to Block and Dodge. Damage from secondary effects of the projectile, such as explosions is halved."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarf7ou3jKa","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Bloodfire","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"2 Actions","chargeeffect":"Target gains the Ignited conidtion.","school":"necromancy","damage":"4d6","damagetype":"fire","range":6,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"Ignite the blood of a Creature within 6 Units, dealing Damage."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarfLmjv728","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Lesser Portent","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"auguration","damage":"","damagetype":"none","range":4,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You look into the future where you or an allied Creature within 4 Units can take one action which is immedietly reversed upon the passage of one round, bringing you back to the present showing one possible future."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarfSyC992Z","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Blessing","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"Additional two targets","school":"divine","damage":"","damagetype":"none","range":6,"components":"Vial of Holy Water","reaction":false,"sustained":true,"level":"novice","value":0,"description":"Target up to two Creatures within 6 Units to bless, giving them +1 to Attack/Spell Attack bonus."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarfrLUM57F","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Flash","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"Creatures who fail become blinded instead","school":"illusion","damage":"","damagetype":"none","range":5,"components":"","reaction":false,"sustained":true,"level":"expert","value":0,"description":"You target an area and create a bright illusory light that lasts until the start of your next turn. Anyone within 5 Units of the light that fails their check must either use their reaction to avert their gaze or has a -2 to attack rolls while attacking a target "},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarg0Pt0nmB","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Sleep","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"6 Actions","chargeeffect":"","school":"druidic","damage":"","damagetype":"none","range":12,"components":"","reaction":false,"sustained":false,"level":"master","value":0,"description":"You target an awakened plant or beast within 12 Units and attempt to permanately sleep their awakened mind."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarg3F7L2W4","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Icestrike","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"projectile","actions":"1 Action","chargeeffect":"additional 2d6 Damage","school":"evocation","damage":"2d6","damagetype":"cold","range":12,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You target a Creature within 12 Units and launch a jagged piece of ice at them."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHargBJdZA42","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Transfer Energy","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"transmutation","damage":"6d12","damagetype":"variable","range":12,"components":"","reaction":true,"sustained":false,"level":"expert","value":0,"description":"When targeted by a spell, you can choose to fail the check instead and take the full amount of Damage without any resistances. If this attack drops you below half health, you unleash an elemental attack in retaliation to a Creature within 12 Units of you. If the attack does not drop you below half, your spell fails. Roll a 1d6 to determine the Damage type: 1-2> Lightning 3-4> Fire 5-6> Water"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHargCKno5wF","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Harm","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"touchmelee","actions":"1 Action","chargeeffect":"additional 2d6","school":"divine","damage":"3d6","damagetype":"dark","range":0,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You touch a Creature and do Damage."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHargboTFR2u","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Ward against Dark","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Minute","chargeeffect":"","school":"abjuration","damage":"1d8","damagetype":"psychic","range":0,"components":"","reaction":false,"sustained":true,"level":"beginner","value":0,"description":"You target a threshold such as a doorway no wider than 2 Units and place a ward on it that lasts as long as you Sustain this Spell. If a Dark Creature or object passes that threshold, they take Damage and you are alerted mentally"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarghU75UDK","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Fortify Mind","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"abjuration","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":true,"level":"beginner","value":0,"description":"You touch a Creature and grant them +2 Resistance while you Sustain this Spell."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarh92k5IKt","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Invoke Fear","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"vision","actions":"1 Action","chargeeffect":"You grow 1 size and do an additional 1d8 Damage on melee weapon attacks","school":"necromancy","damage":"1d8","damagetype":"dark","range":0,"components":"","reaction":false,"sustained":true,"level":"master","value":0,"description":"You becoming a horrifying visage of terror, tapping into your own essence to tranform into a monster. All enemy Creatures within 8 Units who can see you become Afraid of you. Your melee attacks on Creatures who are afraid of you do extra dark Damage."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarhIvbO4EC","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Brand","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"touchmelee","actions":"1 Action","chargeeffect":"","school":"fiend","damage":"1d4","damagetype":"dark","range":-1,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You touch a target, dealing Damage and branding a target which lasts 1 day. Whenever you strike a target with a Weapon Attack that is branded, you deal an extra 1d4 Damage of your weapons Primary Damage type. Only one Creature can be branded at a time"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarhQVj2HjN","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Darkness","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"necromancy","damage":"","damagetype":"dark","range":12,"components":"a lump of coal","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You supress all flames within 12 Units of you."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarhtf5k7fS","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Cleanse","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Minute","chargeeffect":"","school":"divine","damage":"","damagetype":"none","range":6,"components":"A Bundle of Incense","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You perform a ritual cleansing a 6 Unit area from lesser diseases, poison and infection."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHariD9AAZ97","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Beguile","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"2 Actions","chargeeffect":"","school":"fiend","damage":"","damagetype":"none","range":-1,"components":"","reaction":false,"sustained":true,"level":"expert","value":0,"description":"You target a Creature within 10 Units and Charm them while you Sustain this Spell. You have a +3 Bonus Modifier to your next Persuasion Check against this target."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHaricA83NLD","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Walking Corpse","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"2 Actions","chargeeffect":"","school":"necromancy","damage":"","damagetype":"none","range":0,"components":"Sprinkingly the Ash from a tibia bone on a humanoid corpse","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You perform a ritual on the corpse of a Humanoid and raise it from the dead for as long as you Sustain this Spell. While you are concentrating in this way, you cannot take any Actions or Reactions and instead control the corpse instead of your own body. You see and hear through the corpse, but your other senses remain with your body, which falls limp to the ground until you drop or lose Concentration."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarii87k4Na","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Detect Darkness","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 hour","chargeeffect":"","school":"druidic","damage":"","damagetype":"none","range":-2,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You can detect Darkness within 6 Units and know the direction of the closest source."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarj1q524bI","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Bind Undead","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Actions","chargeeffect":"","school":"necromancy","damage":"","damagetype":"none","range":12,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You target an Undead Creature you can see within 12 Units stunning them for their next Action or Bonus Action."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarjAwx6MU9","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Infectious Ray","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"The target cannot take Reactions until the end of its next turn.","school":"fiend","damage":"1d8","damagetype":"poison","range":12,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You target a Creature within 12 Units and launch of Ray of dark energy at them dealing Damage. On a True Hit, the target gains the Infection Condition"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarjHnMRdx2","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Glowbug","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"fey","damage":"2d6","damagetype":"fire","range":-1,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You summon a glowing bug from the Feywild that can be affixed to objects or Creatures, this bug lasts for 1 Minute and gives off a 1 Unit radius of light which reveals the presence of invisible Creatures within the light. As a reaction, the bug can explode, dealing Damage to anyone within the radius. It takes 1 Action to remove the glowbug from a Creature"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarjP32PY8P","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Create or Destroy: Fire","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"transmutation","damage":"","damagetype":"none","range":4,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You conjure enough fire to light a torch or lantern that you can see within 4 Units."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarjX6T04PQ","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Lesser Creature to Object","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"2 Actions","chargeeffect":"","school":"transmutation","damage":"","damagetype":"none","range":8,"components":"","reaction":false,"sustained":true,"level":"expert","value":0,"description":"You target a tiny or small Creature within 8 Units and transmute them into an object of roughly the same size. This persists as long as you Sustain this Spell. If the object is destroyed, the object reverts back to that of the Creature"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarjZ8t10RV","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Ward against Elementals","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Minute","chargeeffect":"","school":"abjuration","damage":"2d8","damagetype":"psychic","range":8,"components":"","reaction":false,"sustained":true,"level":"novice","value":0,"description":"You target a threshold such as a doorway within 8 Units, no wider than 2 Units and place a ward on it that lasts as long as you Sustain this Spell. If an elemental passes that threshold, they take Damage and you are alerted mentally."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHark6nTsyYM","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Dazzle","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"Additional 3 Units of range","school":"illusion","damage":"","damagetype":"none","range":2,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You spew dazzling colorful magic in all directions. Everyone within a 2 Unit radius must make a Concentration Check against your Spell Attack to Sustain any Spells that they are concentrating on."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarkPEYt3eE","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Message on the Wind","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"2 Actions","chargeeffect":"","school":"evocation","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You whisper into a dandelion and let the breeze blow it apart, tranferring your message as a whisper to a target within 1 mile of you."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarkZqo0MfS","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Barrier","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"area","actions":"2 Actions","chargeeffect":"","school":"evocation","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":true,"level":"expert","value":0,"description":"Out of the earth, you erect a 2 Units, 2 Unit wide barrier of rock and soil. The wall can be knocked down with a 12 Strength check and lasts as long as you Sustain this Spell. This spell can only be channeled outdoors or in terrestial environments."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarlHE39yKP","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Frostburn","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"2 Actions","chargeeffect":"Deals an extra 1d10","school":"evocation","damage":"2d10","damagetype":"cold","range":6,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You target a Creature within 10 Units and and deal Damage to them. On a True Hit, this Spell ignites a target"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarluwJfGg3","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Firestorm","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"area","actions":"2 Actions","chargeeffect":"radius extends to 6 Units.","school":"evocation","damage":"","damagetype":"fire","range":0,"components":"","reaction":false,"sustained":true,"level":"master","value":0,"description":"You create a wild storm of fire and wind in a 4 Unit square in an area you can see."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarm2w9ycwZ","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Supernova","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"area","actions":"2 Actions","chargeeffect":"The Supernova moves up to 2 Units when you Activate it before dealing Damage","school":"cosmic","damage":"3d8","damagetype":"arcane","range":-1,"components":"","reaction":false,"sustained":false,"level":"master","value":0,"description":"You Target an area you can see within 14 Units and creatue a massive Supernova that instantly explodes in Celestial energy, dealing Damage to anyone within 4 Units of that point. This Supernova Lasts 1 Minute and can be reactivated with your Free Action. Only one Supernova can be maintained at a time."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarm50y7f0b","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Nova","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"area","actions":"1 Action","chargeeffect":"The Nova moves up to 2 Units when you Activate it before dealing Damage","school":"cosmic","damage":"1d6","damagetype":"arcane","range":14,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You Target an area you can see within 14 Units and summon a small Nova there. This Nova lasts one Minute and can be activated with a Free Action by making a Spell Attack and causing an Explosion of energy with a radius of 1 Unit, dealing Damage. Only one Nova can be maintained at a time."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarm70WLM6E","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Mass Hallucination","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"4 Actions","chargeeffect":"Additional 2d8 Damage","school":"illusion","damage":"6d8 Damage","damagetype":"psychic","range":15,"components":"","reaction":false,"sustained":true,"level":"master","value":0,"description":"You target an area that you can see within 15 Units, no larger than a 3 Unit radius and create a horrifying illusion. Any Creature who fails the Check becomes Afraid of that area for 1 turn and takes Damage. The Creature must use all of their available movement to move away from the area."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarmCb09nVU","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Aura of Elemental Protection","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"abjuration","damage":"","damagetype":"none","range":4,"components":"","reaction":false,"sustained":true,"level":"novice","value":0,"description":"You emit an aura, giving +4 bonus to Elemental Mitigation to anyone within a 4 Unit radius"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarmKY9TB8G","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Magical Disguise","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Minute","chargeeffect":"","school":"illusion","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You touch a Creature and disguise them, taking on the appearence of another humanoid of the same size as the target which lasts as long as you Sustain this Spell."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarmQ37Bc9q","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Slick","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"area increases to a 3 Unit square","school":"evocation","damage":"","damagetype":"none","range":8,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You designate a 2 Unit square area within 8 Units which becomes a slick surface. If a Creature tries to move through this area, they must make an acrobatics or athletics check of 8 or higher, or fall prone and lose the rest of their Movement Speed for that action."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarmTzx8vPV","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Eyes of Death","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"1d8 Dark Damage","school":"necromancy","damage":"","damagetype":"none","range":12,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You target a Creature you can see within 12 Units. They become blinded until they take one Action."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarmeQY8e0R","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Edict : Earthbind","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"sonic","actions":"1 Action","chargeeffect":"","school":"draconic","damage":"1d12","damagetype":"true","range":20,"components":"Requires the Old Draconic Language","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You target a creature that is Flying or Hovering within 20 Units and command that they land, assuming they can hear you. If the creature has its Reaction, it immediately uses it to fly straight down a distance equal to its Fly Speed. If the target reaches the ground, they take Damage."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarmiVuqEY6","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Soulshift","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"sonic","actions":"1 Action","chargeeffect":"radius is extended to 4 Units","school":"witchcraft","damage":"2d6","damagetype":"dark","range":12,"components":"Requires Demonic Language","reaction":false,"sustained":true,"level":"novice","value":0,"description":"You speak in the Demonic langauge, lashing out with sonic energy on all creautres within 2 Units of you. If a Creature reaches 0 health from this spell, they die instantly and do not benefit from any lifeline points."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarnA5Twk4O","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Glitterdeath","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"area","actions":"2 Actions","chargeeffect":"","school":"fey","damage":"5d6","damagetype":"dark","range":15,"components":"","reaction":false,"sustained":true,"level":"expert","value":0,"description":"You rain down Pixie Dust in a 3 Unit Radius area dealing Damage to anyone in the area you can see within 15 Units. When you Sustain this Spell, you can use 1 Action to continue the effect and another Action to Move the area, triggering the spell again."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarnB3dVhhJ","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Augmented Strike","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"auguration","damage":"1d8","damagetype":"none","range":4,"components":"","reaction":true,"sustained":false,"level":"beginner","value":0,"description":"You target a Creature within 4 Units that is making a Melee Attack. If that attack hits, add an additional 1d8 Damage to the Weapons Damage."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarnPi9QtCb","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Animal Messenger","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"druidic","damage":"","damagetype":"none","range":0,"components":"A small ribbon or vine to attach the message","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You touch a tiny or small beast and befriend it, bestowing a message on it such as a scroll or small item. You communicate the point of delivery to the beast and it will attempt to deliver the message to the best of its ability."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarnzH3Vvt7","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Prism Prison","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"2 Actions","chargeeffect":"","school":"fey","damage":"","damagetype":"none","range":20,"components":"","reaction":false,"sustained":true,"level":"master","value":0,"description":"You create a prismatic cage with a radius of 3 Units at a point you can see within 20 Units that cannot be Damaged. The cage is translucent and impassible by normal Movement. Projetiles cannot pass through the cage. The cage lasts as long as you Sustain this Spell."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHaro72e2I5z","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Ajar","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"2 Actions","chargeeffect":"","school":"transmutation","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You touch a locked door or container and attempt to open it by using your spell attack modifier instead of a thievery knowledge check."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHaro7W9e8U7","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Decipher","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"auguration","damage":"","damagetype":"none","range":-1,"components":"","reaction":false,"sustained":true,"level":"beginner","value":0,"description":"While you Sustain this Spell, you are able to read other non-magical languages."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHaroFT1NB2R","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Essence Bolt","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"projectile","actions":"1 Action","chargeeffect":"Gain +3 Spell Attack","school":"fiend","damage":"1d12","damagetype":"dark","range":14,"components":"1d4 True Damage of Essence","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You target a Creature within 14 Units and launch a Projectile infused with your essence at them, dealing Damage. If this Spell kills a Humanoid, you heal for half the Damage done."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHaroHkUDdtv","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Divine Blade","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"divine","damage":"","damagetype":"divine","range":-2,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"Your next Weapon Attack deals Divine Damage and targets everyone within a 2 Unit Cone."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHaroJK404j6","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Mind Wrack","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"touchmelee","actions":"1 Action","chargeeffect":"Target becomes Afraid of caster.","school":"illusion","damage":"2d8","damagetype":"psychic","range":0,"components":"","reaction":false,"sustained":true,"level":"expert","value":0,"description":"You touch a Creature, depositing dark visions into their mind dealing Damage."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHaroK7r3gI6","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Call: Fire","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"projectile","actions":"2 Actions","chargeeffect":"additional 1d8 Damage","school":"evocation","damage":"3d8","damagetype":"fire","range":20,"components":"","reaction":false,"sustained":true,"level":"master","value":0,"description":"When you channel this spell, you become a focus of fire energy. After casting this spell, while you are concentrating, you can use 1 action to absorb one open flame within 20 Units to shoot an arching ray of fire at a target within 20 Units."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHaroQda0ari","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Peer","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"auguration","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You touch a surface such as a door or a thin wall and briefly glimpse what is on the other side. This spell can not be channeled through metal surfaces"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarohRoPJ2c","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Transfer Flame","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"projectile","actions":"1 Action","chargeeffect":"","school":"evocation","damage":"","damagetype":"none","range":14,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You target a flame within 14 Units and transfer it to another torch, lantern or kindling."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.12","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671406068860,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarokXr1G78","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Vacuum","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"2 Actions","chargeeffect":"","school":"cosmic","damage":"Size becomes 4x4","damagetype":"none","range":10,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You Target an area you can see within 10 Units that is 2x2 Units Wide and remove all the air. While someone is in this Area, they cannot cast Spells or Breathe. When a Creature who is fully contained within the 2x2 Square starts their turn, they must make a Contested Strength Check against your Spell Attack. If they fail, their Move Speed is 0 for the Round."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHaromozeg9I","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Modify Weight","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"2 Actions","chargeeffect":"","school":"transmutation","damage":"","damagetype":"none","range":0,"components":"a sister object thats weight temporarily changes in reverse of the targeted object.","reaction":false,"sustained":true,"level":"beginner","value":0,"description":"You touch an object no larger than 400 lbs and modify its weight, either causing it to be twice as heavy or half as heavy while you Sustain this Spell."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarp7nuTG3y","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Portal","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"4 Actions","chargeeffect":"","school":"witchcraft","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":true,"level":"master","value":0,"description":"You bind two objects together in a ritual creating a portal between them and assigning a command word. If you are touching one of the objects and speak the command word, you will be teleported to the sister object. This connection breaks after two uses."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarqAG583MM","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Lesser Charm","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"","school":"witchcraft","damage":"","damagetype":"none","range":6,"components":"A Bundle of Peppermint","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You target a humanoid within 6 Units and charm them for the next hour or until the charm breaks naturally."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarqNpzJx25","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Zenith","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"touchmelee","actions":"1 Action","chargeeffect":"The Melee Attack is made against anyone within a 2 Unit radius of your landing point.","school":"cosmic","damage":"","damagetype":"none","range":3,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You launch yourself straight into the air 2d4 Units, falling down to a tile that was within 3 Units of your starting destination. If you hit a Target with a Melee Attack on the same turn, your Damage Bonus is doubled and your Physical Damage is converted to Arcane Damage."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarqbeUR02I","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Ward","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"Additional 4d6","school":"abjuration","damage":"4d6","damagetype":"physical","range":8,"components":"","reaction":false,"sustained":false,"level":"master","value":0,"description":"You target a Creature within 8 Units that is from a different plane of existence and Damage them."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarqi18Oxzv","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Shatter","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"2 Actions","chargeeffect":"Range increases to 20 Units.","school":"evocation","damage":"2d12","damagetype":"physical","range":12,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You target an object within 10 Units that is not being worn and fits within a 3x3 Unit box, it is destroyed. A Creature targeted by this Spell takes Damage."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarr3yInC71","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Enlargify","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"fey","damage":"","damagetype":"none","range":10,"components":"","reaction":true,"sustained":false,"level":"novice","value":0,"description":"You target a Creature within 10 Units and cause them to grow to a Large size until the end of their next turn. They gain Temporary Health equal to your Spell Damage Bonus and all Large or smaller Creatures within 1 Unit of your target must make a Acrobatics or Athletics Check of 7 or fall Prone."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarr6PH26vO","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Worldshaker","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"line","actions":"1 Action","chargeeffect":"The secondary explosion of force deals 2d8 Damage.","school":"evocation","damage":"1d12","damagetype":"physical","range":16,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You project a 3 Unit Wide line of force up to 16 Units away, dealing Damage to any Creature in its path. If this Line hit a surface as wide as the Ray or a Huge or bigger creature, it explodes there and deals an additional 1d8 Damage to any Creature within 3 Units of that Surface who was hit by the initial Attack."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarrJBq35B7","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Arcane Tongue","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"10 Minutes","chargeeffect":"","school":"auguration","damage":"","damagetype":"none","range":-1,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You can speak and understand a Magical Language that you have heard spoken or seen written."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarrLW1xmxI","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Brittle Bones","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"","school":"necromancy","damage":"1d6","damagetype":"physical","range":8,"components":"","reaction":false,"sustained":true,"level":"expert","value":0,"description":"You target a Creature you can see within 8 Units. Whenever that Creature takes Damage in a round, their speed is reduced by 10 (Stackable) until the end of their next turn and they take additional blunt Damage"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarrU8Zj94V","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Call: Thunder","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"sonic","actions":"3 Actions","chargeeffect":"Additional 4d6 Damage","school":"evocation","damage":"6d6","damagetype":"psychic","range":14,"components":"","reaction":false,"sustained":false,"level":"master","value":0,"description":"You call to the sky and generate a massive thunderboom heard by everyone within a 14 Unit radius of you. Anyone who can hear this spell takes Sonic Damage"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHars7C0DgzT","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Greater Telekenisis","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"2 Actions","chargeeffect":"Doubles the weight limit.","school":"transmutation","damage":"6d8","damagetype":"physical","range":15,"components":"","reaction":false,"sustained":false,"level":"master","value":0,"description":"Target a medium Creature or object under 200 lbs. within 15 Units of you and move it up to 15 Units. If the target is an object, it can be used to throw into a Creature within the spells range dealing Damage. An Object fails this check automatically."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHars9dg70M1","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Sense Magic","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"auguration","damage":"","damagetype":"none","range":6,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You sense around you in a 6 Unit range. If there is any active magic, you are aware of its source and the type of magic. You are also able to differentiate if magic passed through this area up to 24 hours ago."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarsBFytv03","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Cleansing Fire","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"an extra 1d12 against Undead","school":"evocation","damage":"1d12","damagetype":"fire","range":9,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You target a Creature within 9 Units dealing Damage but cleansing any Poison, Disease and Infection conditions."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarsGP0T2Rf","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Stonemind","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"evocation","damage":"1d6","damagetype":"shielding","range":-1,"components":"","reaction":true,"sustained":false,"level":"novice","value":0,"description":"When you take Damage, you can shield your mind and body, reducing the Damage taken and granting you +3 Concentration on all Concentration checks until the start of your next turn."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarsKZccom8","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Smokecloud","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"Increase the radius to 4 Units","school":"illusion","damage":"","damagetype":"none","range":2,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You create an area of darkness equal to a 2 Unit radius circle originating from you. Anyone within this darkness is considered blind unless they have ultravision or infravision. This lasts until the end of your next turn or 1 Minute if in a closed space that fits within a 5 Cubic Unit box."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarsLpCwiM0","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Dire Charm Beast","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"","school":"druidic","damage":"","damagetype":"none","range":2,"components":"","reaction":false,"sustained":false,"level":"master","value":0,"description":"You target a beast within 2 Units and attempt to befriend it permanently. This beast becomes your Pet."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarsSxxBBCR","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Greater Magical Disguise","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"illusion","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":false,"level":"master","value":0,"description":"You touch a Creature and disguise them, taking on the appearence of another Creature of the same size as the target which lasts as long as you Sustain this Spell."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarsV7sAzHK","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Brew","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Minute","chargeeffect":"","school":"witchcraft","damage":"","damagetype":"none","range":-2,"components":"","reaction":false,"sustained":true,"level":"novice","value":0,"description":"You gain +2 to Alchemy while Concentrating on this spell and can create Witches Potions."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarscXR6Is8","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Divine Path","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"10 Minutes","chargeeffect":"","school":"auguration","damage":"","damagetype":"none","range":0,"components":"10 gold worth of incense","reaction":false,"sustained":false,"level":"master","value":0,"description":"You reach out to a God or Godlike being for assistance. For the next day, up to 3 times, you can consult this entity and receive assistance on a decision. The assistance can come in the form of a sign or direct verbal communication."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarsxvOn4U9","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Summon : Shadow [Shadow Module]","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"illusion","damage":"","damagetype":"none","range":-1,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You Summon a Shadow of yourself that looks identical to you that has Health equal to your Level and lasts 1 hour. The Shadow moves on the same Initiative as you, sharing the same Focus and abilities as you. A Shadow cannot use Free Actions or Reactions and Shares an Action Limit with you. Once per turn, you can give one of your Actions to your Shadow."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHart3la9u8N","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Hypnotic Suggestion","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"","school":"illusion","damage":"","damagetype":"none","range":3,"components":"","reaction":false,"sustained":true,"level":"novice","value":0,"description":"You attempt to hypnotize a Creature that can understand your language within 3 Units of you. You can make up to three harmless suggestions to them while you Sustain this Spell. While they are under the effect of the hypnosis, they are unaware of their surroundings."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHart8IUKy96","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Divine Protection","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"2 Actions","chargeeffect":"","school":"divine","damage":"","damagetype":"divine","range":-2,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You are surrounded in a divine aura, gaining +10 Resistance to all Damage types. You cannot take Actions or Reactions until the start of your next turn."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHartFxVzjTI","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Sensory Depravation","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"2 Actions","chargeeffect":"Lasts an additional turn","school":"illusion","damage":"","damagetype":"none","range":12,"components":"","reaction":false,"sustained":false,"level":"master","value":0,"description":"You target a Creature within 12 Units, robbing them of their senses. On a failure, the target becomes Deaf, Blind and Silenced until the end of their next turn."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHartVP23v0h","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Astral Weapon","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"cosmic","damage":"","damagetype":"none","range":-1,"components":"","reaction":false,"sustained":true,"level":"novice","value":0,"description":"You summon an Astral Light Weapon that deals Arcane Damage on a True Hit. This Weapon lasts while you Sustain this Spell."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHartZfSVzcI","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Gathering Shadows","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"fiend","damage":"","damagetype":"none","range":-1,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You touch a creature and gather darkness around them, gaining a +2 Bonus Modifier to Steath Checks while in Darkness for the next hour."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHartb9oIj42","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Lesser Fear","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"Deal 1d4 Dark Damage","school":"necromancy","damage":"","damagetype":"none","range":4,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You target a Creature that can see you within 4 Units and that Creature becomes Afraid of you until the start of your next turn."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHartflb7G73","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Orbit","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"projectile","actions":"1 Action","chargeeffect":"Summon additional 1d4 orbs","school":"cosmic","damage":"1d4","damagetype":"arcane","range":6,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You summon 1d4 Arcane Orbs that harmlessly spin around you. As a Free Action, you can launch them at a Target within 6 Units dealing Damage. These Orbs fizzle out after 1 Minute."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHartjQb5g3D","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Charm Lesser Beast","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"druidic","damage":"","damagetype":"none","range":2,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You target a non-hostile lesser beast within 2 Units and attempt to befriend it for up to 1 hour. This beast can understand you and does its best to follow your commands."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHartjf7fWUb","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Minor Healing","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"divine","damage":"2d4","damagetype":"healing","range":0,"components":"Pinch of Powdered Silver","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You touch a Creature and restore some of their health."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHartrwNazNj","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Arcane Step","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"evocation","damage":"","damagetype":"true","range":-2,"components":"","reaction":true,"sustained":false,"level":"beginner","value":0,"description":"You teleport to a random location up 6 Units away. Roll a d6 to determine how many Units you teleport, and a d8 to determine the direction. The random location must be in the casters line of sight or the caster moves in that direction as far as they can. If the caster ends up inside a solid object, they take 2d6 Damage and instantly teleport back to where they started."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHartuLmywnp","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Edict : Earthmold","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"10 Minutes","chargeeffect":"","school":"draconic","damage":"","damagetype":"none","range":10,"components":"Requires the Old Draconic Language","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You shape the ground within 10 Units, either creating or removing 1 Unit of Dirt, Rock or Sand."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHaru1bNT4vh","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Ensnare","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"Slow movement by additional 2 Units","school":"druidic","damage":"1d8","damagetype":"physical","range":12,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"Roots rise up from the ground and lash out at the legs of a Creature you can see within 12 Units dealing Damage and slowing their movement by 2 until the end of their next turn."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHaruPEY9C4Z","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Hypnosis","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"","school":"illusion","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":true,"level":"master","value":0,"description":"You attempt to hypnotize a non-hostile Creature that can understand your language for 1 hour. While you Sustain this Spell, the creature is considered Charmed for the duration. Any Suggestion, either harmful or not requires another another Spell Attack Check. If at any point you fail a check, the Creature becomes incoherent for the remainder of the spell"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHaruQfrb5b1","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Rest Spirit","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"10 Minutes","chargeeffect":"","school":"witchcraft","damage":"","damagetype":"none","range":-1,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You touch a dead body and perform a ritual that prevents the spirit from returning the body."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarue489GvS","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Water to Wine","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"10 Minutes","chargeeffect":"","school":"transmutation","damage":"","damagetype":"none","range":-1,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You transmute a gallon of water into a cup of wine."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHaruhc0AD9W","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Mass Greater Healing","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"extra 2d6 and extend the range to 8 Units","school":"divine","damage":"8d6","damagetype":"healing","range":4,"components":"A Pearl worth 100 GP","reaction":false,"sustained":false,"level":"master","value":0,"description":"You heal up to 6 Creatures within 4 Units of you."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarumXe2d4V","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Voidcaller","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"sonic","actions":"2 Actions","chargeeffect":"Radius increases to 10 Units","school":"cosmic","damage":"4d8","damagetype":"dark","range":8,"components":"The Magical Language Void Speak","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You release a Sonic wave of Energy, dealing Damage to anyone within an 6 Unit Radius."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarutw61w4U","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Prism Ray","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"ray","actions":"1 Action","chargeeffect":"turns the spell into a 2 Unit wide line spell","school":"evocation","damage":"2d10","damagetype":"physical","range":0,"components":"a crystal worth 500 gold which is not consumed","reaction":false,"sustained":false,"level":"master","value":0,"description":"You channel energy through a crystal and launch a ray at a target within 15 Units."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarv4Z4HU15","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Lesser Divination","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"auguration","damage":"","damagetype":"none","range":-1,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You choose a Creature type which you have one possession or part. You gain a +2 Modifier to Search Checks involving Creatures of this type"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarv5726Kcn","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Firefly","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"Radius increases to 5 Units.","school":"evocation","damage":"","damagetype":"fire","range":0,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You ignite a winged insect to create a light sourse that penetrates magical darkness and gives off 3 Units radius of light. This spell lasts for 1 hour."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarv718hUT6","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Shards of Ice","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"projectile","actions":"1 Action","chargeeffect":"","school":"evocation","damage":"1d6","damagetype":"cold","range":8,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You target a Creature within 8 Units and send shards of shattered ice in their direction. This spell cannot be charged and does not cost any focus points."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarvL30Bt8X","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Snap","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"","school":"evocation","damage":"1d6","damagetype":"arcane","range":10,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You target a Creature within 10 Units and create an arcane burst around them, dealing Damage. Your Spell Damage Bonus is doubled for this attack."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarvTJGlJ1g","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Gravity Strike","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"cosmic","damage":"","damagetype":"none","range":6,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You imbue your weapon with celestial energy. Your next Weapon Attack becomes a Line Attack with 6 Units of Range and 3 Units wide. Any Creature hit by this Attack must make a Strength Check against your initial Attack Modifier or be drawn to the center of the Line."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarvlQKyxFT","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Minor Harm","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"touchmelee","actions":"1 Action","chargeeffect":"Gains 4 Range","school":"divine","damage":"1d10","damagetype":"dark","range":0,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You touch a Creature and deal Damage. Your Spell does 2d6 damage to Humanoids."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarw44iXiQ3","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Enliven","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"touchmelee","actions":"1 Action","chargeeffect":"","school":"fey","damage":"","damagetype":"physical","range":10,"components":"","reaction":false,"sustained":true,"level":"novice","value":0,"description":"You target a small object within 10 Units not being carried or equipped by another Creature and temporarily cause it to come to life as long as you Sustain this Spell and the object has 1 Health or greater. The object has 1 Health and 1 Action that can either Move 2 Units or make an Unarmed Melee Attack using your Spell Attack and Spell Damage Bonus"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarwNCZWAJs","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Become Air","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"draconic","damage":"","damagetype":"none","range":-1,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You alter your form, becoming a Medium ball of Gas for 1 Minute. While altered in this way, you become Immune to Physical Damage, gain a Fly Speed of 2 Units and can pass through gaps as small as a Gold Coin. If you take Damage, you revert back to your normal form. While in this form, you can only take the Move Action."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarwOwxf4lf","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Douse","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"2 Actions","chargeeffect":"","school":"evocation","damage":"4d8","damagetype":"cold","range":6,"components":"","reaction":true,"sustained":false,"level":"expert","value":0,"description":"In response to a spell that does fire Damage that targets an area within 6 Units of you, roll a spell attack against the opposing spell attack. If your result is higher, channel the power of water to reduce the Damage of the attack."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarwV9TtvmA","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Shrink","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"transmutation","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You touch a willing Creature or object and shrink them. A Creature that is shrunk in this way is considered one size smaller and gains an extra +1 dodge, +1 stealth but 1 movement speed and -2 to physical Damage."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarwdf53u3i","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Polify","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"fey","damage":"","damagetype":"none","range":-1,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You target a Creature and turn them into another beast until the start of their next turn. The beast they turn into is random. If the Creature takes Damage, they instantly revert back to their original form"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarxB6e019h","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Superior Camouflage","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"druidic","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You touch a Creature giving them a +3 bonus to stealth while in natural environments."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarxR03JqgK","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Unstable Earth","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"2 Actions","chargeeffect":"If a Creature is Knocked Prone, they take 2d6 Damage","school":"evocation","damage":"","damagetype":"none","range":10,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You cause a small disturbance in the ground within 10 Units of you that you can see, displacing your target by 1 Unit. This Creature must then make an Athletics or Acrobatics Check against your Spell Attack or be knocked Prone."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarxh2J4f8m","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Flame Rebuke","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"touchmelee","actions":"1 Action","chargeeffect":"","school":"fiend","damage":"1d8","damagetype":"fire","range":1,"components":"","reaction":true,"sustained":false,"level":"novice","value":0,"description":"When you are hit by a Melee Attack from a Creature within 1 Unit, you can use your Reaction to deal Fire Damage to the Creature that hit you. This effect cannot be Resisted."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarxheLKSp3","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Confusify","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"1 Action","chargeeffect":"","school":"fey","damage":"2d8","damagetype":"psychic","range":6,"components":"","reaction":false,"sustained":true,"level":"expert","value":0,"description":"You target a Creature within 6 Units and Confuse them as long as you Sustain this Spell or the Spell breaks naturally. When the Spell ends, the target takes 2d8 Psychic Damage. If this Damage brings the target to 0 Health or lower, their head explodes and they die."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHary23B6qyf","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Diamond Skin","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Minute","chargeeffect":"","school":"evocation","damage":"","damagetype":"none","range":0,"components":"one diamond worth 100 gold.","reaction":false,"sustained":true,"level":"master","value":0,"description":"You target three Creatures and make their skin as hard as diamond, reducing Damage they take by an amount equal to your Spell Damage Bonus Modifier. This spell lasts as long as you are Concentrating on it"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHary90vJXdp","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Dead Speak","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"10 Minutes","chargeeffect":"","school":"necromancy","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"Speak with any dead humanoid that still has the capabilities of speech"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHary9thw2O6","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Cure Poison","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"divine","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You touch one Creature and remove the Poison Condition"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHaryOilnL3R","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Celestial Ray","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"ray","actions":"1 Action","chargeeffect":"-2 Spell Attack, add 3d6 Damage","school":"draconic","damage":"2d6","damagetype":"divine","range":14,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You shoot a Ray of energy at a Target you can see within 14 Units dealing Divine Damage."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHaryiYv9zb0","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Banish","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"2 Actions","chargeeffect":"Raise Threshold to 65 health","school":"divine","damage":"","damagetype":"none","range":0,"components":"","reaction":false,"sustained":false,"level":"expert","value":0,"description":"You target a Dark Creature from another plane. If that Creature has less than 50 health, it is banished."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarykem0Wck","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Commune","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 hour","chargeeffect":"","school":"divine","damage":"","damagetype":"none","range":-1,"components":"","reaction":false,"sustained":false,"level":"master","value":0,"description":"You perform a ritual which gives you an audience with your God or one of their servants."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHaryo0s2g63","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Hover","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"draconic","damage":"","damagetype":"none","range":-1,"components":"","reaction":true,"sustained":false,"level":"beginner","value":0,"description":"As a Reaction, you can immediately stop falling and remain at that height until the end of your next turn. While hovering in this way, you can only move horizontally."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHaryq0HtUX6","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Hellfire","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"target","actions":"2 Actions","chargeeffect":"","school":"fiend","damage":"8d8","damagetype":"fire","range":20,"components":"","reaction":false,"sustained":false,"level":"master","value":0,"description":"You summon Hellfire beneath a target you can see within 20 Units, dealing Damage. If a target is reduced to 0 Health by this spell, they are instantly incinerated."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHaryqQ3Pnq4","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Hero Call","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Minute","chargeeffect":"","school":"auguration","damage":"","damagetype":"none","range":0,"components":"An Artifact from that time or world","reaction":false,"sustained":false,"level":"master","value":0,"description":"You open a rift and call a random hero from another time and perhaps world to aid you. This hero lasts one day and takes the form of an 8th Level Character. If this hero gives you permission, you can target them specifically with this spell if cast again. If this spell is cast 10 days in a row on the same person, the hero will not vanish after 1 day but is not bound to serve you."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarz2f10AAE","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Frisky","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"","chargeeffect":"1","school":"fey","damage":"","damagetype":"none","range":-1,"components":"","reaction":false,"sustained":false,"level":"beginner","value":0,"description":"You touch a Creature and grant them a +2 Bonus to Thievery Knowledge for the next hour."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarz6NrhkB0","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Hallowed Ground","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"2 hours per attempt","chargeeffect":"","school":"divine","damage":"","damagetype":"none","range":-2,"components":"","reaction":false,"sustained":false,"level":"master","value":0,"description":"You target an area such as a building that fits within a radius of 10 Units and perform a ritual to make the ground sacred, protecting it against dark Creatures. To complete the ritual, you must complete a series of 5 Skill Checks using your Spell Attack Modifier that equal or exceed 9. For each failed attempt, you gain one tier of Exhaustion. After an area becomes Hallowed, Lesser Undead are destroyed upon passing the boundry. Any other Undead must make a Resistance Check greater than 12 or they fail to enter. Upon failure, the Creature takes 2d12 Radiant Damage. Any Creature that does manage to enter the Hallowed Ground suffers 1d12 Radiant Damage for each round that they end their turn inside the area."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarzNNFKy6v","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Names","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"utility","actions":"1 Action","chargeeffect":"","school":"fey","damage":"","damagetype":"none","range":10,"components":"","reaction":false,"sustained":true,"level":"beginner","value":0,"description":"You speak the name of someone you can see within 10 Units. While you Sustain this Spell, the target has a 1d4 Penalty to Resistance Checks on the next Fey Spell you cast."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarzNud6PL3","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Lesser Anomoly","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"area","actions":"1 Action","chargeeffect":"Additional 1 Unit Radius","school":"transmutation","damage":"1d6","damagetype":"physical","range":8,"components":"","reaction":false,"sustained":false,"level":"novice","value":0,"description":"You manipulate gravity to create a shock of force at a location with a radius of 2 Units to a place you can see within 8 Units. Any Creature Large or smaller that fails the check is drawn to the center of the area and take 1d6 Force Damage"},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarzhfZ4nM6","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Frostray","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"ray","actions":"1 Action","chargeeffect":"Additional 1d12","school":"evocation","damage":"1d12","damagetype":"cold","range":8,"components":"","reaction":false,"sustained":true,"level":"expert","value":0,"description":"You launch a ray of cold energy at a target you can see within 12 Units. If you score a True Hit on this attack, the Creature is Frozen until the end of their next turn."},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.11","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671364502305,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"MOcIlHarzxNeNG1Y","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}
{"name":"Spell Test","type":"spell","img":"systems/fvtt-avd12/images/icons/spell1.webp","system":{"spelltype":"projectile","actions":"1","chargeeffect":"Charge effect","school":"abjuration","damage":"5","damagetype":"physical","range":6,"components":"None","reaction":true,"sustained":true,"level":"beginner","value":0,"description":""},"effects":[],"flags":{},"_stats":{"systemId":"fvtt-avd12","systemVersion":"10.0.12","coreVersion":"10.288","createdTime":1668664007492,"modifiedTime":1671406100342,"lastModifiedBy":"JgmaAbvFHQvSlowN"},"_id":"xFmxJsAXFaPOr7UF","folder":null,"sort":0,"ownership":{"default":0,"JgmaAbvFHQvSlowN":3}}

View File

@ -808,9 +808,12 @@ ul, li {
text-align: center;
}
.skill-good-checkbox {
height: 14px;
width: 14px;
.skill-label {
font-size: 0.7rem;
}
.skill-good-checkbox {
max-height: 10px;
max-width: 10px;
}
.flex-actions-bar {

View File

@ -42,11 +42,20 @@
"system": "fvtt-avd12",
"private": false,
"flags": {}
},
{
"type": "Item",
"label": "Spells",
"name": "spells",
"path": "packs/spells.db",
"system": "fvtt-avd12",
"private": false,
"flags": {}
}
],
"title": "AnyVenture D12 RPG",
"url": "https://www.uberwald.me/gitea/public/fvtt-avd12",
"version": "10.0.12",
"download": "https://www.uberwald.me/gitea/public/fvtt-avd12/archive/fvtt-avd12-v10.0.12.zip",
"version": "10.0.15",
"download": "https://www.uberwald.me/gitea/public/fvtt-avd12/archive/fvtt-avd12-v10.0.15.zip",
"background": "systems/fvtt-avd12/images/ui/avd12_welcome_page.webp"
}

View File

@ -175,6 +175,10 @@
}
}
},
"level": {
"label": "Level",
"value": 0
},
"size": {
"label": "Size",
"value": ""
@ -184,6 +188,11 @@
"tmpvalue": 0,
"max": 0
},
"focus": {
"focuspoints": 0,
"focusregen": 0,
"currentFocusPoints": 0
},
"lifeline": {
"value": 0,
"max": 0

View File

@ -17,7 +17,7 @@
</div>
{{#each attr.skills as |skill skillKey|}}
<div class="flexrow">
<span class="item-field-label-medium"><a class="roll-skill" data-attr-key="{{attrKey}}" data-skill-key="{{skillKey}}">{{upperFirst skillKey}} : {{skill.finalvalue}}</a></span>
<span class="item-field-label-medium skill-label"><a class="roll-skill" data-attr-key="{{attrKey}}" data-skill-key="{{skillKey}}">{{upperFirst skillKey}} {{skill.finalvalue}}<i class="fa-solid fa-dice-d12"></i></a></span>
<input type="checkbox" class="skill-good-checkbox" name="system.attributes.{{attrKey}}.skills.{{skillKey}}.good" {{checked skill.good}} />
</div>
{{/each}}
@ -56,35 +56,71 @@
<div class="tab main" data-group="primary" data-tab="main">
<ul class="stat-list alternate-list item-list">
<li class="item flexrow list-item items-title-bg">
<span class="item-name-label-header">
<h3><label class="items-title-text">Skills</label></h3>
</span>
<span class="item-field-label-short">
<label class="short-label">Ability</label>
</span>
<span class="item-field-label-short">
<label class="short-label">Dice</label>
</span>
<span class="item-field-label-long">
<label class="short-label">Background</label>
</span>
<li class="item flexrow list-item">
<span class="item-name-label-header-short">Level</span>
<input type="text" class="item-field-label-short" name="system.level.value" value="{{system.level.value}}" data-dtype="Number"/>
<span class="item-name-label-header-short">&nbsp;</span>
<span class="item-name-label-header-short">Health</span>
<input type="text" class="item-field-label-short" name="system.health.value" value="{{system.health.value}}" data-dtype="Number"/> /
<input type="text" class="item-field-label-short" name="system.health.max" value="{{system.health.max}}" data-dtype="Number"/>
<span class="item-name-label-header-medium">&nbsp;</span>
</li>
{{#each skills as |skill key|}}
<li class="item stat flexrow list-item list-item-shadow" data-item-id="{{skill._id}}">
<a class="item-edit item-name-img" title="Edit Item"><img class="sheet-competence-img"
src="{{skill.img}}" /></a>
<span class="item-name-label"><a class="roll-skill">{{skill.name}}</a></span>
<span class="item-field-label-short">{{upper skill.system.ability}}</span>
<span class="item-field-label-short">{{skill.system.skilldice}}</span>
<span class="item-field-label-long">&nbsp;-&nbsp;</span>
<div class="item-filler">&nbsp;</div>
<div class="item-controls item-controls-fixed">
<a class="item-control item-delete" title="Delete Item"><i class="fas fa-trash"></i></a>
</div>
<li class="item flexrow list-item">
<span class="item-name-label-header-short">Focus Regen</span>
<input type="text" class="item-field-label-short" value="{{focusData.focusRegen}}" data-dtype="Number" disabled/>
<span class="item-name-label-header-short">&nbsp;</span>
<span class="item-name-label-header-short">Focus Points</span>
<input type="text" class="item-field-label-short" value="{{focusData.currentFocusPoints}}" data-dtype="Number" disabled/> /
<input type="text" class="item-field-label-short" value="{{focusData.focusPoints}}" data-dtype="Number" disabled/>
<span class="item-name-label-header-medium">&nbsp;</span>
</li>
{{/each}}
</ul>
<div class="grid-2col">
<ul class="stat-list alternate-list">
<li class="item flexrow list-item items-title-bg">
<span class="item-name-label-header-long">
<h3><label class="items-title-text">Mitigations</label></h3>
</span>
</li>
{{#each system.mitigation as |mitigation key|}}
<li class="item flexrow list-item list-item-shadow" data-mitigation-id="{{key}}">
<span class="item-name-label-medium">{{mitigation.label}}</span>
<span class="item-name-label-short">{{mitigation.value}}</span>
</li>
{{/each}}
</ul>
<ul class="stat-list alternate-list">
<li class="item flexrow list-item items-title-bg">
<span class="item-name-label-header-long">
<h3><label class="items-title-text">Bonuses</label></h3>
</span>
</li>
{{#each system.bonus as |bonus key|}}
<li class="item flexrow list-item list-item-shadow" data-bonus-id="{{key}}">
<span class="item-name-label-medium">{{upperFirst key}}</span>
<ul class="ul-level1">
{{#each bonus as |value key2|}}
<li class="item flexrow list-item list-item-shadow" data-bonus-id="{{key}}">
<span class="item-name-label-short">{{upperFirst key2}}</span>
<span class="item-name-label-short">{{value}}</span>
</li>
{{/each}}
</ul>
</li>
{{/each}}
</ul>
</div>
</div>
{{!-- Combat Tab --}}
@ -138,7 +174,7 @@
<a class="item-edit item-name-img" title="Edit Item"><img class="sheet-competence-img"
src="{{spell.img}}" /></a>
<span class="item-name-label">
<a class="spell-roll">{{spell.name}}</a>
<a class="roll-spell">{{spell.name}} <i class="fa-solid fa-dice-d12"></i></a>
</span>
<span class="item-field-label-medium">{{upperFirst spell.system.spelltype}}</span>
<span class="item-field-label-medium">{{upperFirst spell.system.level}}</span>
@ -310,8 +346,8 @@
<a class="item-edit item-name-img" title="Edit Item"><img class="sheet-competence-img"
src="{{weapon.img}}" /></a>
<span class="item-name-label">{{weapon.name}}</span>
<span class="item-field-label-short"><label>{{upper weapon.system.ability}}</label></span>
<span class="item-field-label-short"><label>{{upper weapon.system.damage}}</label></span>
<span class="item-field-label-short"><label>{{upperFirst weapon.system.ability}}</label></span>
<span class="item-field-label-short"><label>{{upperFirst weapon.system.damage}}</label></span>
<div class="item-filler">&nbsp;</div>
<div class="item-controls item-controls-fixed">
@ -345,7 +381,7 @@
<a class="item-edit item-name-img" title="Edit Item"><img class="sheet-competence-img"
src="{{armor.img}}" /></a>
<span class="item-name-label">{{armor.name}}</span>
<span class="item-field-label-short">{{upper armor.system.armortype}}</span>
<span class="item-field-label-short">{{upperFirst armor.system.armortype}}</span>
<span class="item-field-label-short">{{armor.system.absorprionroll}}</span>
<div class="item-filler">&nbsp;</div>
@ -394,7 +430,7 @@
<h3><label class="items-title-text">Equipment</label></h3>
</span>
<span class="item-field-label-long">
<label class="short-label">Quantity</label>
<label class="short-label">Qty</label>
</span>
<div class="item-filler">&nbsp;</div>
<div class="item-controls item-controls-fixed">
@ -402,13 +438,25 @@
</div>
</li>
{{#each containersTree as |equip key|}}
{{> systems/fvtt-crucible-rpg/templates/partial-actor-equipment.html equip=equip level=1}}
<ul class="item-list list-item-shadow2 list-item-margin1">
{{#each equip.data.contents as |subgear key|}}
{{> systems/fvtt-crucible-rpg/templates/partial-actor-equipment.html equip=subgear level=2}}
{{/each}}
</ul>
{{#each equipments as |equip key|}}
<li class="item list-item flexrow list-item-shadow" data-item-id="{{equip._id}}">
<a class="item-edit item-name-img" title="Edit Item"><img class="sheet-competence-img"
src="{{equip.img}}" /></a>
<span class="item-name-label">{{equip.name}}</span>
<span class="item-field-label-long"><label>
{{equip.system.quantity}}
(<a class="quantity-minus plus-minus-button"> -</a>/<a class="quantity-plus plus-minus-button">+</a>)
</label>
</span>
<div class="item-filler">&nbsp;</div>
<div class="item-controls item-controls-fixed">
<a class="item-control item-equip" title="Worn">{{#if equip.system.equipped}}<i
class="fas fa-circle"></i>{{else}}<i class="fas fa-genderless"></i>{{/if}}</a>
<a class="item-control item-delete" title="Delete Item"><i class="fas fa-trash"></i></a>
</div>
</li>
{{/each}}
</ul>

View File

@ -15,6 +15,21 @@
</div>
{{/if}}
{{#if spell}}
<div class="flexrow">
<span class="roll-dialog-label">Spell : </span>
<span class="roll-dialog-label">{{spell.name}} ({{upperFirst spell.system.level}} - Cost : {{spellCost}})</span>
</div>
<div class="flexrow">
<span class="roll-dialog-label">Spell Attack level : </span>
<span class="roll-dialog-label">{{spellAttack}}</span>
</div>
<div class="flexrow">
<span class="roll-dialog-label">Spell Damage level : </span>
<span class="roll-dialog-label">{{spellDamage}}</span>
</div>
{{/if}}
<div class="flexrow">
<span class="roll-dialog-label">Bonus/Malus : </span>
<select id="bonusMalusRoll" name="bonusMalusRoll">

View File

@ -31,10 +31,8 @@
<ul class="ul-level1">
{{#each level.choices as |choice choiceIndex|}}
<li class="">
<h3 class="item-field-label-long">Level choice {{add choiceIndex 1}}</h3>
</li>
<li class="item flexrow" data-level-index="{{@../index}}" data-choice-index="{{choiceIndex}}">
<h3 class="item-field-label-long">Level choice {{add choiceIndex 1}}</h3>
<div class="drop-module-step">
<label>Drop traits/actions/... here !</label>
</div>

View File

@ -115,8 +115,17 @@
{{> systems/fvtt-avd12/templates/items/partial-options-focus-bond.hbs}}
{{/select}}
</select>
</li>
{{/if}}
</li>
<li class='flexrow'>
<span>Focus Points : {{focusData.focusPoints}} </span>
<span>Burn Chance : {{focusData.burnChance}} </span>
<span>Focus Regen : {{focusData.focusRegen}} </span>
</li>
<li class='flexrow'>
<span>Spell Attack Bonus : {{focusData.spellAttackBonus}} </span>
<span>Spell Damage Bonus : {{focusData.spellDamageBonus}} </span>
</li>
{{/if}}
<li class='flexrow'>
<h3 class='item-field-label-long'>