mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-08-30 03:40:32 +00:00
12353 lines
1.1 MiB
Plaintext
12353 lines
1.1 MiB
Plaintext
<!-- Spell descriptions reproduced from the Dragonslayer™️ Role-Playing Game
|
||
under the Dragonslayer™️ Role-Playing Game Third-Party License.
|
||
This character sheet is not affiliated with Old School
|
||
Publishing. Dragonslayer™️ RPG © 2024. -->
|
||
<template class="ds-character-sheet">
|
||
<div class="ds-tabs">
|
||
<input type="checkbox" id="character_tab_control" name="attr_show_character" class="ds-tab-content-control" checked>
|
||
<button type="action" class="ds-tab-button" name="act_character_tab">Character</button>
|
||
<input type="checkbox" id="notes_tab_control" name="attr_show_notes" class="ds-tab-content-control">
|
||
<button type="action" class="ds-tab-button" name="act_notes_tab">Notes</button>
|
||
<input type="checkbox" id="spells_tab_control" name="attr_show_spells_tab" class="ds-tab-content-control">
|
||
<button type="action" class="ds-tab-button" name="act_spells_tab">Spells</button>
|
||
</div>
|
||
|
||
<!-- Hidden checkboxes for content control -->
|
||
<input type="checkbox" id="character_content" name="attr_show_character" class="ds-tab-content-control" checked>
|
||
<div id="character" class="ds-tab-content">
|
||
<!-- Existing character sheet content -->
|
||
<div class="ds-sheet-container">
|
||
<div class="ds-sheet-header">
|
||
<!-- CHARACTER DETAILS -->
|
||
<div class="ds-character-info">
|
||
<div class="ds-info-row">
|
||
<div class="ds-full-width">
|
||
<label>Character Name</label>
|
||
<input type="text" name="attr_character_name" />
|
||
</div>
|
||
<div class="ds-col-small">
|
||
<label>Race</label>
|
||
<select name="attr_race" class="ds-select">
|
||
<option value="Human">Human</option>
|
||
<option value="Cyclopsman">Cyclopsman</option>
|
||
<option value="Dwarf">Dwarf</option>
|
||
<option value="Elf">Elf</option>
|
||
<option value="Gnome">Gnome</option>
|
||
<option value="Halfling">Halfling</option>
|
||
<option value="Half-Elf">Half-Elf</option>
|
||
<option value="Half-Orc">Half-Orc</option>
|
||
</select>
|
||
</div>
|
||
<div class="ds-col-small">
|
||
<label>Class</label>
|
||
<select name="attr_class" class="ds-select">
|
||
<option value="Cleric">Cleric</option>
|
||
<option value="Druid">Druid</option>
|
||
<option value="Monk">Monk</option>
|
||
<option value="Fighter">Fighter</option>
|
||
<option value="Barbarian">Barbarian</option>
|
||
<option value="Paladin">Paladin</option>
|
||
<option value="Ranger">Ranger</option>
|
||
<option value="Magic-User">Magic-User</option>
|
||
<option value="Illusionist">Illusionist</option>
|
||
<option value="Thief">Thief</option>
|
||
<option value="Assassin">Assassin</option>
|
||
</select>
|
||
</div>
|
||
<div class="ds-col-tiny">
|
||
<label>Level</label>
|
||
<input type="number" name="attr_level" />
|
||
</div>
|
||
<div class="ds-col-large">
|
||
<label>Title</label>
|
||
<input type="text" name="attr_title" class="ds-title-input" />
|
||
</div>
|
||
</div>
|
||
|
||
<div class="ds-info-row">
|
||
<div class="ds-col-medium">
|
||
<label>Alignment</label>
|
||
<input type="text" name="attr_alignment" />
|
||
</div>
|
||
<div class="ds-col-medium">
|
||
<label>Deity</label>
|
||
<input type="text" name="attr_deity" />
|
||
</div>
|
||
<div class="ds-col-tiny">
|
||
<label>Age</label>
|
||
<input type="number" name="attr_age" />
|
||
</div>
|
||
<div class="ds-col-small">
|
||
<label>Height</label>
|
||
<input type="text" name="attr_height" />
|
||
</div>
|
||
<div class="ds-col-small">
|
||
<label>Weight</label>
|
||
<input type="text" name="attr_weight" />
|
||
</div>
|
||
<div class="ds-full-width">
|
||
<label>Languages</label>
|
||
<input type="text" name="attr_languages" />
|
||
</div>
|
||
</div>
|
||
|
||
<div class="ds-info-row">
|
||
<div class="ds-col-tiny">
|
||
<label>XP Bonus %</label>
|
||
<input type="number" name="attr_xp_bonus" />
|
||
</div>
|
||
<div class="ds-col-tiny">
|
||
<label>Experience</label>
|
||
<input type="number" name="attr_experience" />
|
||
</div>
|
||
<div class="ds-col-tiny">
|
||
<label>Move</label>
|
||
<input type="number" name="attr_move" />
|
||
</div>
|
||
<div class="ds-col-tiny">
|
||
<label>Attack Bonus</label>
|
||
<input type="number" name="attr_attack_bonus" />
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- MIDDLE SECTION: AC/HP/MOVE & WEAPON -->
|
||
<div class="ds-middle-section">
|
||
<!-- LEFT SIDE: AC, HP, and Movement in a vertical layout -->
|
||
<div class="ds-defense-container">
|
||
<!-- AC Section -->
|
||
<div class="ds-section-label">ARMOR CLASS</div>
|
||
<input type="number" name="attr_armor_class" class="ds-input" />
|
||
|
||
<div class="ds-section-label">Armor Description</div>
|
||
<input type="text" name="attr_armor_description" class="ds-input" />
|
||
|
||
<!-- HP Section -->
|
||
<div class="ds-section-label">HIT POINTS</div>
|
||
<div class="ds-hp-row">
|
||
<div class="ds-hp-item">
|
||
<label>Current:</label>
|
||
<input type="number" name="attr_hp" class="ds-input" />
|
||
</div>
|
||
<div class="ds-hp-item">
|
||
<label>Max:</label>
|
||
<input type="number" name="attr_hp_max" class="ds-input" />
|
||
</div>
|
||
<div class="ds-hp-item ds-hit-die-container">
|
||
<label>Hit die:</label>
|
||
<input type="text" name="attr_hit_die" id="ds-hit-die" />
|
||
<button type="roll"
|
||
value="&{template:default} {{name=@{character_name} Rolled a Hit Die}} {{Hit Points=[[@{hit_die}]]}}"></button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- RIGHT SIDE: WEAPON CONTAINER -->
|
||
<div class="ds-weapon-container">
|
||
<!-- Column headers -->
|
||
<div class="ds-weapon-header">
|
||
<div class="ds-weapon-name-header">Weapon</div>
|
||
<div class="ds-weapon-damage-header">Damage</div>
|
||
</div>
|
||
|
||
<div class="ds-weapon-item">
|
||
<label>Primary</label>
|
||
<div class="ds-weapon-row">
|
||
<input type="text" name="attr_weapon_name" class="ds-weapon-name" />
|
||
<input type="text" name="attr_weapon_primary_dmg" class="ds-dmg-field" />
|
||
<button type="roll" class="ds-weapon-roll"
|
||
value="&{template:ds-attack} {{color=black}} {{title=@{weapon_name} Attack}} {{subtitle=@{character_name}}} {{ac_hit=[[20 - @{str_melee_mod} - @{attack_bonus} - (?{Situational Bonus?|0}) - 1d20]]}} {{damage=[[@{weapon_primary_dmg}]]}} {{crit_dmg=[[2*(@{weapon_primary_dmg})]]}} {{crit=Damage doubled!}} {{fumble=Roll on the critical miss table!}}" />
|
||
</div>
|
||
</div>
|
||
|
||
<div class="ds-weapon-item">
|
||
<label>Secondary</label>
|
||
<div class="ds-weapon-row">
|
||
<input type="text" name="attr_weapon_secondary_name" class="ds-weapon-name" />
|
||
<input type="text" name="attr_weapon_secondary_dmg" class="ds-dmg-field" />
|
||
<button type="roll" class="ds-weapon-roll"
|
||
value="&{template:ds-attack} {{color=black}} {{title=@{weapon_secondary_name} Attack}} {{subtitle=@{character_name}}} {{ac_hit=[[20 - @{str_melee_mod} - @{attack_bonus} - (?{Situational Bonus?|0}) - 1d20]]}} {{damage=[[@{weapon_secondary_dmg}]]}} {{crit_dmg=[[2*(@{weapon_secondary_dmg})]]}} {{crit=Damage doubled!}} {{fumble=Roll on the critical miss table!}}" />
|
||
</div>
|
||
</div>
|
||
|
||
<div class="ds-weapon-item">
|
||
<label>Missile Weapon</label>
|
||
<div class="ds-weapon-row">
|
||
<input type="text" name="attr_missile_weapon" class="ds-weapon-name" />
|
||
<input type="text" name="attr_missile_dmg" class="ds-dmg-field" />
|
||
<input type="hidden" name="attr_missile_race_mod" value="0" />
|
||
<button type="roll" class="ds-weapon-roll"
|
||
value="&{template:ds-attack} {{color=black}} {{title=@{missile_weapon} Attack}} {{subtitle=@{character_name}}} {{ac_hit=[[20 - @{dex_missile} - @{attack_bonus} - @{missile_race_mod} - (?{Situational Bonus?|0}) - 1d20]]}} {{damage=[[@{missile_dmg}]]}} {{crit_dmg=[[2*(@{missile_dmg})]]}} {{crit=Damage doubled!}} {{fumble=Roll on the critical miss table!}}" />
|
||
</div>
|
||
|
||
<!-- Ammo tracking -->
|
||
<div class="ds-ammo-tracking">
|
||
<label class="ds-ammo-label">Ammo:</label>
|
||
<div class="ds-ammo-checkboxes">
|
||
<input type="checkbox" name="attr_ammo_1" class="ds-ammo-box" />
|
||
<input type="checkbox" name="attr_ammo_2" class="ds-ammo-box" />
|
||
<input type="checkbox" name="attr_ammo_3" class="ds-ammo-box" />
|
||
<input type="checkbox" name="attr_ammo_4" class="ds-ammo-box" />
|
||
<input type="checkbox" name="attr_ammo_5" class="ds-ammo-box" />
|
||
<input type="checkbox" name="attr_ammo_6" class="ds-ammo-box" />
|
||
<input type="checkbox" name="attr_ammo_7" class="ds-ammo-box" />
|
||
<input type="checkbox" name="attr_ammo_8" class="ds-ammo-box" />
|
||
<input type="checkbox" name="attr_ammo_9" class="ds-ammo-box" />
|
||
<input type="checkbox" name="attr_ammo_10" class="ds-ammo-box" />
|
||
<input type="checkbox" name="attr_ammo_11" class="ds-ammo-box" />
|
||
<input type="checkbox" name="attr_ammo_12" class="ds-ammo-box" />
|
||
<input type="checkbox" name="attr_ammo_13" class="ds-ammo-box" />
|
||
<input type="checkbox" name="attr_ammo_14" class="ds-ammo-box" />
|
||
<input type="checkbox" name="attr_ammo_15" class="ds-ammo-box" />
|
||
<input type="checkbox" name="attr_ammo_16" class="ds-ammo-box" />
|
||
<input type="checkbox" name="attr_ammo_17" class="ds-ammo-box" />
|
||
<input type="checkbox" name="attr_ammo_18" class="ds-ammo-box" />
|
||
<input type="checkbox" name="attr_ammo_19" class="ds-ammo-box" />
|
||
<input type="checkbox" name="attr_ammo_20" class="ds-ammo-box" />
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- ULTRA COMPACT ABILITIES AND SAVES SECTION -->
|
||
<div class="ds-abilities-container">
|
||
<!-- Left column: Abilities -->
|
||
<div class="ds-abilities-panel">
|
||
<div class="ds-section-header">ABILITIES</div>
|
||
|
||
<!-- Roll Template for Ability Checks -->
|
||
<rolltemplate class="sheet-rolltemplate-ds-check">
|
||
<div class="sheet-template-container">
|
||
<div class="sheet-template-head {{color}}">
|
||
<div class="sheet-template-head-row">
|
||
{{#title}}
|
||
<div class="sheet-template-head-cell-left">{{title}}</div>
|
||
{{/title}}
|
||
{{^title}}
|
||
<div class="sheet-template-head-cell-left">{{checkvs}}</div>
|
||
{{/title}}
|
||
{{#subtitle}}
|
||
<div class="sheet-template-head-cell-right">{{subtitle}}</div>
|
||
{{/subtitle}}
|
||
{{^subtitle}}
|
||
{{#character}}
|
||
<div class="sheet-template-head-cell-right">for {{character}}</div>
|
||
{{/character}}
|
||
{{/subtitle}}
|
||
</div>
|
||
</div>
|
||
<div class="sheet-template-body">
|
||
<div class="sheet-template-body-row">
|
||
<span class="sheet-check-label">Roll</span>
|
||
<span class="sheet-check-label"></span>
|
||
<span class="sheet-check-label">Target</span>
|
||
</div>
|
||
<div class="sheet-template-body-row">
|
||
<span class="sheet-check-value">{{checkroll}}</span>
|
||
<span class="sheet-check-value">≤</span>
|
||
<span class="sheet-check-value">{{checktarget}}</span>
|
||
</div>
|
||
{{#rollTotal() checkroll checktarget}}
|
||
{{#rollWasCrit() checkroll}}
|
||
|
||
{{#crit}}
|
||
<div class="sheet-template-result sheet-template-success">
|
||
CRITICAL SUCCESS!
|
||
{{#crit}}
|
||
<br>
|
||
<span class="sheet-template-result-description">{{crit}}</span>
|
||
{{/crit}}
|
||
</div>
|
||
{{/crit}}
|
||
{{^crit}}
|
||
<div class="sheet-template-result sheet-template-success">
|
||
Success!
|
||
{{#success}}
|
||
<br>
|
||
<span class="sheet-template-result-description">{{success}}</span>
|
||
{{/success}}
|
||
</div>
|
||
{{/crit}}
|
||
{{/rollWasCrit() checkroll}}
|
||
|
||
{{#rollWasFumble() checkroll}}
|
||
{{#fumble}}
|
||
<div class="sheet-template-result sheet-template-failure">
|
||
CRITICAL FAILURE!
|
||
{{#fumble}}
|
||
<br>
|
||
<span class="sheet-template-result-description">{{fumble}}</span>
|
||
{{/fumble}}
|
||
</div>
|
||
{{/fumble}}
|
||
{{^fumble}}
|
||
<div class="sheet-template-result sheet-template-success">
|
||
Success!
|
||
{{#success}}
|
||
<br>
|
||
<span class="sheet-template-result-description">{{success}}</span>
|
||
{{/success}}
|
||
</div>
|
||
{{/fumble}}
|
||
{{/rollWasFumble() checkroll}}
|
||
|
||
{{#^rollWasCrit() checkroll}}
|
||
{{#^rollWasFumble() checkroll}}
|
||
<div class="sheet-template-result sheet-template-success">
|
||
Success!
|
||
{{#success}}
|
||
<br>
|
||
<span class="sheet-template-result-description">{{success}}</span>
|
||
{{/success}}
|
||
</div>
|
||
{{/^rollWasFumble() checkroll}}
|
||
{{/^rollWasCrit() checkroll}}
|
||
{{/rollTotal() checkroll checktarget}}
|
||
|
||
{{#rollLess() checkroll checktarget}}
|
||
{{#rollWasCrit() checkroll}}
|
||
{{#crit}}
|
||
<div class="sheet-template-result sheet-template-success">
|
||
CRITICAL SUCCESS!
|
||
{{#crit}}
|
||
<br>
|
||
<span class="sheet-template-result-description">{{crit}}</span>
|
||
{{/crit}}
|
||
</div>
|
||
{{/crit}}
|
||
{{^crit}}
|
||
<div class="sheet-template-result sheet-template-success">
|
||
Success!
|
||
{{#success}}
|
||
<br>
|
||
<span class="sheet-template-result-description">{{success}}</span>
|
||
{{/success}}
|
||
</div>
|
||
{{/crit}}
|
||
{{/rollWasCrit() checkroll}}
|
||
|
||
{{#rollWasFumble() checkroll}}
|
||
{{#fumble}}
|
||
<div class="sheet-template-result sheet-template-failure">
|
||
CRITICAL FAILURE!
|
||
{{#fumble}}
|
||
<br>
|
||
<span class="sheet-template-result-description">{{fumble}}</span>
|
||
{{/fumble}}
|
||
</div>
|
||
{{/fumble}}
|
||
{{^fumble}}
|
||
<div class="sheet-template-result sheet-template-success">
|
||
Success!
|
||
{{#success}}
|
||
<br>
|
||
<span class="sheet-template-result-description">{{success}}</span>
|
||
{{/success}}
|
||
</div>
|
||
{{/fumble}}
|
||
{{/rollWasFumble() checkroll}}
|
||
|
||
{{#^rollWasCrit() checkroll}}
|
||
{{#^rollWasFumble() checkroll}}
|
||
<div class="sheet-template-result sheet-template-success">
|
||
Success!
|
||
{{#success}}
|
||
<br>
|
||
<span class="sheet-template-result-description">{{success}}</span>
|
||
{{/success}}
|
||
</div>
|
||
{{/^rollWasFumble() checkroll}}
|
||
{{/^rollWasCrit() checkroll}}
|
||
{{/rollLess() checkroll checktarget}}
|
||
|
||
{{#rollGreater() checkroll checktarget}}
|
||
{{#rollWasFumble() checkroll}}
|
||
{{#fumble}}
|
||
<div class="sheet-template-result sheet-template-failure">
|
||
CRITICAL FAILURE!
|
||
{{#fumble}}
|
||
<br>
|
||
<span class="sheet-template-result-description">{{fumble}}</span>
|
||
{{/fumble}}
|
||
</div>
|
||
{{/fumble}}
|
||
{{^fumble}}
|
||
<div class="sheet-template-result sheet-template-failure">
|
||
Failed!
|
||
{{#fail}}
|
||
<br>
|
||
<span class="sheet-template-result-description">{{fail}}</span>
|
||
{{/fail}}
|
||
</div>
|
||
{{/fumble}}
|
||
{{/rollWasFumble() checkroll}}
|
||
|
||
{{#^rollWasFumble() checkroll}}
|
||
<div class="sheet-template-result sheet-template-failure">
|
||
Failed!
|
||
{{#fail}}
|
||
<br>
|
||
<span class="sheet-template-result-description">{{fail}}</span>
|
||
{{/fail}}
|
||
</div>
|
||
{{/^rollWasFumble() checkroll}}
|
||
{{/rollGreater() checkroll checktarget}}
|
||
</div>
|
||
</div>
|
||
</rolltemplate>
|
||
|
||
<div class="ds-abilities-table">
|
||
<!-- Strength -->
|
||
<div class="ds-ability-row">
|
||
<span class="ds-ability-name">STR</span>
|
||
<div class="ds-ability-score-cell">
|
||
<input type="number" name="attr_strength" class="ds-ability-score" />
|
||
<button type="roll"
|
||
value="&{template:ds-check} {{title=Strength Check}} {{subtitle=for @{character_name}}} {{checkroll=[[1d20cs1cf20-(?{Misc Modifier?|0})]]}} {{checktarget=[[ @{strength} ]]}} {{success=A great feat of strength!}} {{fail=Not strong enough!}}"
|
||
title="Roll STR Check (d20 ≤ STR)"></button>
|
||
</div>
|
||
<div class="ds-mods-cell">
|
||
<div class="ds-mod-item">
|
||
<label>Melee</label>
|
||
<input type="text" name="attr_str_melee_mod" />
|
||
</div>
|
||
<div class="ds-mod-item">
|
||
<label>Force Door</label>
|
||
<input type="text" name="attr_str_force_door" />
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Intelligence -->
|
||
<div class="ds-ability-row">
|
||
<span class="ds-ability-name">INT</span>
|
||
<div class="ds-ability-score-cell">
|
||
<input type="number" name="attr_intelligence" class="ds-ability-score" />
|
||
<button type="roll"
|
||
value="&{template:ds-check} {{title=Intelligence Check}} {{subtitle=for @{character_name}}} {{checkroll=[[1d20cs1cf20-(?{Misc Modifier?|0})]]}} {{checktarget=[[ @{intelligence} ]]}} {{success=Your mind is sharp!}} {{fail=Not smart enough!}}"
|
||
title="Roll INT Check (d20 ≤ INT)"></button>
|
||
</div>
|
||
<div class="ds-mods-cell">
|
||
<div class="ds-mod-item">
|
||
<label>Languages</label>
|
||
<input type="text" name="attr_int_languages" />
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Wisdom -->
|
||
<div class="ds-ability-row">
|
||
<span class="ds-ability-name">WIS</span>
|
||
<div class="ds-ability-score-cell">
|
||
<input type="number" name="attr_wisdom" class="ds-ability-score" />
|
||
<button type="roll"
|
||
value="&{template:ds-check} {{title=Wisdom Check}} {{subtitle=for @{character_name}}} {{checkroll=[[1d20cs1cf20-(?{Misc Modifier?|0})]]}} {{checktarget=[[ @{wisdom} ]]}} {{success=You see the truth!}} {{fail=Not wise enough!}}"
|
||
title="Roll WIS Check (d20 ≤ WIS)"></button>
|
||
</div>
|
||
<div class="ds-mods-cell">
|
||
<div class="ds-mod-item">
|
||
<label>Magic Save</label>
|
||
<input type="text" name="attr_wis_magic_save" />
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Dexterity -->
|
||
<div class="ds-ability-row">
|
||
<span class="ds-ability-name">DEX</span>
|
||
<div class="ds-ability-score-cell">
|
||
<input type="number" name="attr_dexterity" class="ds-ability-score" />
|
||
<button type="roll"
|
||
value="&{template:ds-check} {{title=Dexterity Check}} {{subtitle=for @{character_name}}} {{checkroll=[[1d20cs1cf20-(?{Misc Modifier?|0})]]}} {{checktarget=[[ @{dexterity} ]]}} {{success=You move with grace!}} {{fail=Not fast enough!}}"
|
||
title="Roll DEX Check (d20 ≤ DEX)"></button>
|
||
</div>
|
||
<div class="ds-mods-cell">
|
||
<div class="ds-mod-item">
|
||
<label>Missile</label>
|
||
<input type="text" name="attr_dex_missile" />
|
||
</div>
|
||
<div class="ds-mod-item">
|
||
<label>Armor</label>
|
||
<input type="text" name="attr_dex_armor" />
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Constitution -->
|
||
<div class="ds-ability-row">
|
||
<span class="ds-ability-name">CON</span>
|
||
<div class="ds-ability-score-cell">
|
||
<input type="number" name="attr_constitution" class="ds-ability-score" />
|
||
<button type="roll"
|
||
value="&{template:ds-check} {{title=Constitution Check}} {{subtitle=for @{character_name}}} {{checkroll=[[1d20cs1cf20-(?{Misc Modifier?|0})]]}} {{checktarget=[[ @{constitution} ]]}} {{success=You endure with fortitude!}} {{fail=Not tough enough!}}"
|
||
title="Roll CON Check (d20 ≤ CON)"></button>
|
||
</div>
|
||
<div class="ds-mods-cell">
|
||
<div class="ds-mod-item">
|
||
<label>Hit Point</label>
|
||
<input type="text" name="attr_con_hp" />
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Charisma -->
|
||
<div class="ds-ability-row">
|
||
<span class="ds-ability-name">CHA</span>
|
||
<div class="ds-ability-score-cell">
|
||
<input type="number" name="attr_charisma" class="ds-ability-score" />
|
||
<button type="roll"
|
||
value="&{template:ds-check} {{title=Charisma Check}} {{subtitle=for @{character_name}}} {{checkroll=[[1d20cs1cf20-(?{Misc Modifier?|0})]]}} {{checktarget=[[ @{charisma} ]]}} {{success=Quite charming!}} {{fail=Not charming enough!}}"
|
||
title="Roll CHA Check (d20 ≤ CHA)"></button>
|
||
</div>
|
||
<div class="ds-mods-cell">
|
||
<div class="ds-mod-item">
|
||
<label>Henchmen</label>
|
||
<input type="text" name="attr_cha_henchmen" />
|
||
</div>
|
||
<div class="ds-mod-item">
|
||
<label>Morale</label>
|
||
<input type="text" name="attr_cha_morale" />
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Right column: Saving Throws -->
|
||
<div class="ds-saves-panel">
|
||
<div class="ds-section-header">SAVING THROWS</div>
|
||
|
||
<div class="ds-saves-container">
|
||
<div class="ds-save-item">
|
||
<label>Breath</label>
|
||
<input type="number" name="attr_save_breath" />
|
||
<input type="hidden" name="attr_save_breath_race_bonus" value="0" />
|
||
<button type="roll" name="roll_save_breath"
|
||
value="&{template:ds-save} {{title=Save vs. Breath}} {{subtitle=for @{character_name}}} {{savetarget=[[ @{save_breath} ]]}} {{saveroll=[[1d20+(?{Misc. Modifier?|0})]]}} {{success=You made your check}} {{fail=You missed your check}} {{fumble=You missed your check against all odds}}"></button>
|
||
</div>
|
||
<div class="ds-save-item">
|
||
<label>Death</label>
|
||
<input type="number" name="attr_save_death" />
|
||
<input type="hidden" name="attr_save_death_race_bonus" value="0" />
|
||
<button type="roll" name="roll_save_death"
|
||
value="&{template:ds-save} {{title=Save vs. Death}} {{subtitle=for @{character_name}}} {{savetarget=[[ @{save_death} ]]}} {{saveroll=[[1d20+(?{Misc. Modifier?|0})]]}} {{success=You made your check}} {{fail=You missed your check}} {{fumble=You missed your check against all odds}}"></button>
|
||
</div>
|
||
<div class="ds-save-item">
|
||
<label>Stone</label>
|
||
<input type="number" name="attr_save_stone" />
|
||
<input type="hidden" name="attr_save_stone_race_bonus" value="0" />
|
||
<button type="roll" name="roll_save_stone"
|
||
value="&{template:ds-save} {{title=Save vs. Stone}} {{subtitle=for @{character_name}}} {{savetarget=[[ @{save_stone} ]]}} {{saveroll=[[1d20+(?{Misc. Modifier?|0})]]}} {{success=You made your check}} {{fail=You missed your check}} {{fumble=You missed your check against all odds}}"></button>
|
||
</div>
|
||
<div class="ds-save-item">
|
||
<label>Wand</label>
|
||
<input type="number" name="attr_save_wand" />
|
||
<input type="hidden" name="attr_save_wand_race_bonus" value="0" />
|
||
<button type="roll" name="roll_save_wand"
|
||
value="&{template:ds-save} {{title=Save vs. Wand}} {{subtitle=for @{character_name}}} {{savetarget=[[ @{save_wand} ]]}} {{saveroll=[[1d20+(?{Misc. Modifier?|0})]]}} {{success=You made your check}} {{fail=You missed your check}} {{fumble=You missed your check against all odds}}"></button>
|
||
</div>
|
||
<div class="ds-save-item">
|
||
<label>Spell</label>
|
||
<input type="number" name="attr_save_spell" />
|
||
<input type="hidden" name="attr_save_spell_race_bonus" value="0" />
|
||
<button type="roll" name="roll_save_spell"
|
||
value="&{template:ds-save} {{title=Save vs. Spell}} {{subtitle=for @{character_name}}} {{savetarget=[[ @{save_spell} ]]}} {{saveroll=[[1d20+(?{Misc. Modifier?|0})]]}} {{success=You made your check}} {{fail=You missed your check}} {{fumble=You missed your check against all odds}}"></button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- LOWER SECTIONS -->
|
||
<div class="ds-lower-section">
|
||
<div class="ds-two-columns">
|
||
<!-- EQUIPMENT & ITEMS -->
|
||
<div class="ds-equipment-section">
|
||
<h3>EQUIPMENT & ITEMS</h3>
|
||
<div class="ds-equipment-header">
|
||
<div class="ds-count-header">Count</div>
|
||
<div class="ds-description-header">Description</div>
|
||
<div class="ds-weight-header">Weight</div>
|
||
</div>
|
||
<fieldset class="repeating_equipment">
|
||
<input type="number" name="attr_item_count" class="ds-item-count" />
|
||
<input type="text" name="attr_item_description" class="ds-item-description" />
|
||
<input type="number" name="attr_item_weight" class="ds-item-weight" />
|
||
</fieldset>
|
||
|
||
<!-- WEALTH & TREASURE -->
|
||
<div class="ds-treasure-box">
|
||
<h4>WEALTH & TREASURE</h4>
|
||
<div class="ds-currency-row">
|
||
<label>cp</label>
|
||
<input type="number" name="attr_cp" />
|
||
</div>
|
||
<div class="ds-currency-row">
|
||
<label>sp</label>
|
||
<input type="number" name="attr_sp" />
|
||
</div>
|
||
<div class="ds-currency-row">
|
||
<label>ep</label>
|
||
<input type="number" name="attr_ep" />
|
||
</div>
|
||
<div class="ds-currency-row">
|
||
<label>gp</label>
|
||
<input type="number" name="attr_gp" />
|
||
</div>
|
||
<div class="ds-currency-row">
|
||
<label>pp</label>
|
||
<input type="number" name="attr_pp" />
|
||
</div>
|
||
|
||
<!-- Additional Treasure -->
|
||
<div class="ds-additional-treasure">
|
||
<fieldset class="repeating_treasure">
|
||
<input type="text" name="attr_treasure_type" class="ds-treasure-type" placeholder="Treasure Type" />
|
||
<input type="number" name="attr_treasure_amount" class="ds-treasure-amount" placeholder="Amount" />
|
||
</fieldset>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- OTHER ABILITIES -->
|
||
<div class="ds-abilities-spells-section">
|
||
<h3>OTHER ABILITIES</h3>
|
||
<input type="checkbox" name="attr_show_turn_undead" class="ds-show-turn-undead" style="display: none;" />
|
||
<div class="ds-turn-undead-section">
|
||
<div class="ds-ability-entry">
|
||
<div class="ds-ability-roll-group">
|
||
<button type="action" name="act_turn_undead" class="ds-turn-undead-button">Turn Undead</button>
|
||
<input type="number" name="attr_turn_undead_charges" value="3" min="0" max="3"
|
||
class="ds-turn-undead-charges" />
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="ds-abilities-list">
|
||
<fieldset class="repeating_abilities">
|
||
<div class="ds-ability-entry">
|
||
<div class="ds-ability-roll-group">
|
||
<input type="text" name="attr_ability_name" class="ds-ability-name-input"
|
||
placeholder="Ability Name" />
|
||
<input type="text" name="attr_ability_dice" class="ds-ability-dice" placeholder="1d20" />
|
||
<select name="attr_ability_compare" class="ds-ability-compare">
|
||
<option value="le">≤</option>
|
||
<option value="ge">≥</option>
|
||
</select>
|
||
<input type="number" name="attr_ability_target" class="ds-ability-target" placeholder="Target" />
|
||
<button type="roll" name="roll_custom_ability"
|
||
value="&{template:ds-check} {{title=@{ability_name}}} {{subtitle=for @{character_name}}} {{checkroll=[[@{ability_dice}-(?{Misc Modifier?|0})]]}} {{checktarget=[[@{ability_target}]]}} {{success=Success!}} {{fail=Failed!}}"></button>
|
||
</div>
|
||
</div>
|
||
</fieldset>
|
||
</div>
|
||
|
||
<!-- MISC. FEATURES -->
|
||
<div class="ds-misc-features-box">
|
||
<h4>MISC. FEATURES</h4>
|
||
<fieldset class="repeating_features">
|
||
<input type="text" name="attr_feature_desc" class="ds-feature-desc" placeholder="Feature Description" />
|
||
</fieldset>
|
||
</div>
|
||
|
||
<!-- SPELLS PER DAY -->
|
||
<input type="checkbox" name="attr_show_spells" class="ds-show-spells" />
|
||
<div class="ds-spells-per-day-box">
|
||
<h4>SPELLS PER DAY</h4>
|
||
<input type="checkbox" name="attr_show_spell_level_1" class="ds-show-spell-level" />
|
||
<div class="ds-spell-level-container">
|
||
<div class="ds-spell-level-row">
|
||
<span>1st</span>
|
||
<span><input type="number" name="attr_spells_1" /></span>
|
||
<span><input type="checkbox" name="attr_spell1_1" /></span>
|
||
<span><input type="checkbox" name="attr_spell1_2" /></span>
|
||
<span><input type="checkbox" name="attr_spell1_3" /></span>
|
||
<span><input type="checkbox" name="attr_spell1_4" /></span>
|
||
<span><input type="checkbox" name="attr_spell1_5" /></span>
|
||
<span><input type="checkbox" name="attr_spell1_6" /></span>
|
||
<span><input type="checkbox" name="attr_spell1_7" /></span>
|
||
<span><input type="checkbox" name="attr_spell1_8" /></span>
|
||
<span><input type="checkbox" name="attr_spell1_9" /></span>
|
||
</div>
|
||
</div>
|
||
<input type="checkbox" name="attr_show_spell_level_2" class="ds-show-spell-level" />
|
||
<div class="ds-spell-level-container">
|
||
<div class="ds-spell-level-row">
|
||
<span>2nd</span>
|
||
<span><input type="number" name="attr_spells_2" /></span>
|
||
<span><input type="checkbox" name="attr_spell2_1" /></span>
|
||
<span><input type="checkbox" name="attr_spell2_2" /></span>
|
||
<span><input type="checkbox" name="attr_spell2_3" /></span>
|
||
<span><input type="checkbox" name="attr_spell2_4" /></span>
|
||
<span><input type="checkbox" name="attr_spell2_5" /></span>
|
||
<span><input type="checkbox" name="attr_spell2_6" /></span>
|
||
<span><input type="checkbox" name="attr_spell2_7" /></span>
|
||
<span><input type="checkbox" name="attr_spell2_8" /></span>
|
||
<span><input type="checkbox" name="attr_spell2_9" /></span>
|
||
</div>
|
||
</div>
|
||
<input type="checkbox" name="attr_show_spell_level_3" class="ds-show-spell-level" />
|
||
<div class="ds-spell-level-container">
|
||
<div class="ds-spell-level-row">
|
||
<span>3rd</span>
|
||
<span><input type="number" name="attr_spells_3" /></span>
|
||
<span><input type="checkbox" name="attr_spell3_1" /></span>
|
||
<span><input type="checkbox" name="attr_spell3_2" /></span>
|
||
<span><input type="checkbox" name="attr_spell3_3" /></span>
|
||
<span><input type="checkbox" name="attr_spell3_4" /></span>
|
||
<span><input type="checkbox" name="attr_spell3_5" /></span>
|
||
<span><input type="checkbox" name="attr_spell3_6" /></span>
|
||
<span><input type="checkbox" name="attr_spell3_7" /></span>
|
||
<span><input type="checkbox" name="attr_spell3_8" /></span>
|
||
<span><input type="checkbox" name="attr_spell3_9" /></span>
|
||
</div>
|
||
</div>
|
||
<input type="checkbox" name="attr_show_spell_level_4" class="ds-show-spell-level" />
|
||
<div class="ds-spell-level-container">
|
||
<div class="ds-spell-level-row">
|
||
<span>4th</span>
|
||
<span><input type="number" name="attr_spells_4" /></span>
|
||
<span><input type="checkbox" name="attr_spell4_1" /></span>
|
||
<span><input type="checkbox" name="attr_spell4_2" /></span>
|
||
<span><input type="checkbox" name="attr_spell4_3" /></span>
|
||
<span><input type="checkbox" name="attr_spell4_4" /></span>
|
||
<span><input type="checkbox" name="attr_spell4_5" /></span>
|
||
<span><input type="checkbox" name="attr_spell4_6" /></span>
|
||
<span><input type="checkbox" name="attr_spell4_7" /></span>
|
||
<span><input type="checkbox" name="attr_spell4_8" /></span>
|
||
<span><input type="checkbox" name="attr_spell4_9" /></span>
|
||
</div>
|
||
</div>
|
||
<input type="checkbox" name="attr_show_spell_level_5" class="ds-show-spell-level" />
|
||
<div class="ds-spell-level-container">
|
||
<div class="ds-spell-level-row">
|
||
<span>5th</span>
|
||
<span><input type="number" name="attr_spells_5" /></span>
|
||
<span><input type="checkbox" name="attr_spell5_1" /></span>
|
||
<span><input type="checkbox" name="attr_spell5_2" /></span>
|
||
<span><input type="checkbox" name="attr_spell5_3" /></span>
|
||
<span><input type="checkbox" name="attr_spell5_4" /></span>
|
||
<span><input type="checkbox" name="attr_spell5_5" /></span>
|
||
<span><input type="checkbox" name="attr_spell5_6" /></span>
|
||
<span><input type="checkbox" name="attr_spell5_7" /></span>
|
||
<span><input type="checkbox" name="attr_spell5_8" /></span>
|
||
<span><input type="checkbox" name="attr_spell5_9" /></span>
|
||
</div>
|
||
</div>
|
||
<input type="checkbox" name="attr_show_spell_level_6" class="ds-show-spell-level" />
|
||
<div class="ds-spell-level-container">
|
||
<div class="ds-spell-level-row">
|
||
<span>6th</span>
|
||
<span><input type="number" name="attr_spells_6" /></span>
|
||
<span><input type="checkbox" name="attr_spell6_1" /></span>
|
||
<span><input type="checkbox" name="attr_spell6_2" /></span>
|
||
<span><input type="checkbox" name="attr_spell6_3" /></span>
|
||
<span><input type="checkbox" name="attr_spell6_4" /></span>
|
||
<span><input type="checkbox" name="attr_spell6_5" /></span>
|
||
<span><input type="checkbox" name="attr_spell6_6" /></span>
|
||
<span><input type="checkbox" name="attr_spell6_7" /></span>
|
||
<span><input type="checkbox" name="attr_spell6_8" /></span>
|
||
<span><input type="checkbox" name="attr_spell6_9" /></span>
|
||
</div>
|
||
</div>
|
||
<input type="checkbox" name="attr_show_spell_level_7" class="ds-show-spell-level" />
|
||
<div class="ds-spell-level-container">
|
||
<div class="ds-spell-level-row">
|
||
<span>7th</span>
|
||
<span><input type="number" name="attr_spells_7" /></span>
|
||
<span><input type="checkbox" name="attr_spell7_1" /></span>
|
||
<span><input type="checkbox" name="attr_spell7_2" /></span>
|
||
<span><input type="checkbox" name="attr_spell7_3" /></span>
|
||
<span><input type="checkbox" name="attr_spell7_4" /></span>
|
||
<span><input type="checkbox" name="attr_spell7_5" /></span>
|
||
<span><input type="checkbox" name="attr_spell7_6" /></span>
|
||
<span><input type="checkbox" name="attr_spell7_7" /></span>
|
||
<span><input type="checkbox" name="attr_spell7_8" /></span>
|
||
<span><input type="checkbox" name="attr_spell7_9" /></span>
|
||
</div>
|
||
</div>
|
||
<input type="checkbox" name="attr_show_spell_level_8" class="ds-show-spell-level" />
|
||
<div class="ds-spell-level-container">
|
||
<div class="ds-spell-level-row">
|
||
<span>8th</span>
|
||
<span><input type="number" name="attr_spells_8" /></span>
|
||
<span><input type="checkbox" name="attr_spell8_1" /></span>
|
||
<span><input type="checkbox" name="attr_spell8_2" /></span>
|
||
<span><input type="checkbox" name="attr_spell8_3" /></span>
|
||
<span><input type="checkbox" name="attr_spell8_4" /></span>
|
||
<span><input type="checkbox" name="attr_spell8_5" /></span>
|
||
<span><input type="checkbox" name="attr_spell8_6" /></span>
|
||
<span><input type="checkbox" name="attr_spell8_7" /></span>
|
||
<span><input type="checkbox" name="attr_spell8_8" /></span>
|
||
<span><input type="checkbox" name="attr_spell8_9" /></span>
|
||
</div>
|
||
</div>
|
||
<input type="checkbox" name="attr_show_spell_level_9" class="ds-show-spell-level" />
|
||
<div class="ds-spell-level-container">
|
||
<div class="ds-spell-level-row">
|
||
<span>9th</span>
|
||
<span><input type="number" name="attr_spells_9" /></span>
|
||
<span><input type="checkbox" name="attr_spell9_1" /></span>
|
||
<span><input type="checkbox" name="attr_spell9_2" /></span>
|
||
<span><input type="checkbox" name="attr_spell9_3" /></span>
|
||
<span><input type="checkbox" name="attr_spell9_4" /></span>
|
||
<span><input type="checkbox" name="attr_spell9_5" /></span>
|
||
<span><input type="checkbox" name="attr_spell9_6" /></span>
|
||
<span><input type="checkbox" name="attr_spell9_7" /></span>
|
||
<span><input type="checkbox" name="attr_spell9_8" /></span>
|
||
<span><input type="checkbox" name="attr_spell9_9" /></span>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<input type="checkbox" name="attr_show_thief_skills" class="ds-show-thief-skills" style="display: none;" />
|
||
|
||
<!-- THIEF SKILLS SECTION -->
|
||
<div class="ds-thief-skills-section">
|
||
<h3>THIEF SKILLS</h3>
|
||
<div class="ds-thief-skills-grid">
|
||
<div class="ds-thief-skill">
|
||
<label>Pick Pockets</label>
|
||
<input type="number" name="attr_pick_pockets" />
|
||
<button type="roll"
|
||
value="&{template:ds-check} {{title=Pick Pockets Check}} {{subtitle=for @{character_name}}} {{checkroll=[[1d100cs<1cf>[[@{pick_pockets} + 15]]-(?{Misc Modifier?|0})]]}} {{checktarget=[[@{pick_pockets}]]}} {{success=You pilfer successfully!}} {{fail=You fail to steal anything.}} {{fumble=You get caught!}}"></button>
|
||
</div>
|
||
<div class="ds-thief-skill">
|
||
<label>Open Locks</label>
|
||
<input type="number" name="attr_open_locks" />
|
||
<button type="roll"
|
||
value="&{template:ds-check} {{title=Open Locks Check}} {{subtitle=for @{character_name}}} {{checkroll=[[1d100cs<1cf>100-(?{Misc Modifier?|0})]]}} {{checktarget=[[@{open_locks}]]}} {{success=You pick the lock!}} {{fail=The lock remains closed.}}"></button>
|
||
</div>
|
||
<div class="ds-thief-skill">
|
||
<label>Find/Remove Traps</label>
|
||
<input type="number" name="attr_find_remove_traps" />
|
||
<button type="roll"
|
||
value="&{template:ds-check} {{title=Find/Remove Traps Check}} {{subtitle=for @{character_name}}} {{checkroll=[[1d100cs<1cf>100-(?{Misc Modifier?|0})]]}} {{checktarget=[[@{find_remove_traps}]]}} {{success=You handle the trap!}} {{fail=You fail to deal with the trap.}}"></button>
|
||
</div>
|
||
<div class="ds-thief-skill">
|
||
<label>Move Silently</label>
|
||
<input type="number" name="attr_move_silently" />
|
||
<button type="roll"
|
||
value="&{template:ds-check} {{title=Move Silently Check}} {{subtitle=for @{character_name}}} {{checkroll=[[1d100cs<1cf>100-(?{Misc Modifier?|0})]]}} {{checktarget=[[@{move_silently}]]}} {{success=You move without sound!}} {{fail=Your movement makes noise.}} {{fumble=You make a loud noise!}}"></button>
|
||
</div>
|
||
<div class="ds-thief-skill">
|
||
<label>Hide in Shadows</label>
|
||
<input type="number" name="attr_hide_shadows" />
|
||
<button type="roll"
|
||
value="&{template:ds-check} {{title=Hide in Shadows Check}} {{subtitle=for @{character_name}}} {{checkroll=[[1d100cs<1cf>100-(?{Misc Modifier?|0})]]}} {{checktarget=[[@{hide_shadows}]]}} {{success=You hide successfully!}} {{fail=You remain visible.}} {{fumble=You draw attention to yourself!}}"></button>
|
||
</div>
|
||
<div class="ds-thief-skill">
|
||
<label>Climb Walls</label>
|
||
<input type="number" name="attr_climb_walls" />
|
||
<button type="roll"
|
||
value="&{template:ds-check} {{title=Climb Walls Check}} {{subtitle=for @{character_name}}} {{checkroll=[[1d100cs<1cf>100-(?{Misc Modifier?|0})]]}} {{checktarget=[[@{climb_walls}]]}} {{success=You climb successfully!}} {{fail=You fail to climb.}}"></button>
|
||
</div>
|
||
<div class="ds-thief-skill">
|
||
<label>Hear Noise (d6)</label>
|
||
<input type="number" name="attr_hear_noise" max="6" />
|
||
<button type="roll"
|
||
value="&{template:ds-check} {{title=Hear Noise Check}} {{subtitle=for @{character_name}}} {{checkroll=[[1d6cs<1cf>6-(?{Misc Modifier?|0})]]}} {{checktarget=[[@{hear_noise}]]}} {{success=You hear something!}} {{fail=You hear nothing unusual.}}"></button>
|
||
</div>
|
||
<div class="ds-thief-skill">
|
||
<label>Appraise (d6)</label>
|
||
<input type="number" name="attr_appraise" max="6" />
|
||
<button type="roll"
|
||
value="&{template:ds-check} {{title=Appraise Check}} {{subtitle=for @{character_name}}} {{checkroll=[[1d6cs<1cf>6-(?{Misc Modifier?|0})]]}} {{checktarget=[[@{appraise}]]}} {{success=You assess the value accurately!}} {{fail=You misjudge the value.}} {{fumble=You greatly misjudge the value!}}"></button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- HENCHMEN & HIRELINGS -->
|
||
<div class="ds-henchmen-section">
|
||
<h3>HENCHMEN & HIRELINGS</h3>
|
||
<div class="ds-henchmen-header">
|
||
<span class="ds-henchmen-label">Name</span>
|
||
<span class="ds-henchmen-label">Class</span>
|
||
<span class="ds-henchmen-label">Lvl.</span>
|
||
<span class="ds-henchmen-label">HP</span>
|
||
<span class="ds-henchmen-label">AC</span>
|
||
<span class="ds-henchmen-label">Armor</span>
|
||
<span class="ds-henchmen-label">XP</span>
|
||
<span class="ds-henchmen-label">Weapon</span>
|
||
<span class="ds-henchmen-label">DMG.</span>
|
||
</div>
|
||
<fieldset class="repeating_henchmen">
|
||
<div class="ds-henchmen-row">
|
||
<input type="text" name="attr_hench_name" class="ds-henchmen-input" />
|
||
<input type="text" name="attr_hench_class" class="ds-henchmen-input" />
|
||
<input type="number" name="attr_hench_level" class="ds-henchmen-input" />
|
||
<input type="number" name="attr_hench_hp" class="ds-henchmen-input" />
|
||
<input type="number" name="attr_hench_ac" class="ds-henchmen-input" />
|
||
<input type="text" name="attr_hench_armor" class="ds-henchmen-input" />
|
||
<input type="number" name="attr_hench_xp" class="ds-henchmen-input" />
|
||
<input type="text" name="attr_hench_weapon" class="ds-henchmen-input" />
|
||
<input type="text" name="attr_hench_dmg" class="ds-henchmen-input" />
|
||
</div>
|
||
</fieldset>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<input type="checkbox" id="notes_content" name="attr_show_notes" class="ds-tab-content-control">
|
||
<div id="notes" class="ds-tab-content">
|
||
<textarea class="ds-notes-input" placeholder="Enter your notes here..."></textarea>
|
||
</div>
|
||
|
||
<input type="checkbox" id="spells_content" name="attr_show_spells_tab" class="ds-tab-content-control">
|
||
<div id="spells" class="ds-tab-content">
|
||
<input type="checkbox" class="ds-prepared-spells-control" id="prepared_spells_control"
|
||
name="attr_show_prepared_spells" style="display: none;">
|
||
<div class="ds-prepared-spells-section">
|
||
<button type="action" class="ds-prepare-spells-button" name="act_prepare_spells">Prepare Spells</button>
|
||
<input type="checkbox" name="attr_show_druid_prepared_spells_control" class="ds-show-prepared-spells-control"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-druid">
|
||
<div class="ds-prepared-spells-header">
|
||
<span class="ds-prepared-spells-name-header">Spell</span>
|
||
<span class="ds-prepared-spells-level-header">Lvl.</span>
|
||
<span class="ds-prepared-spells-range-header">Range</span>
|
||
<span class="ds-prepared-spells-duration-header">Duration</span>
|
||
<span class="ds-prepared-spells-description-header">Description</span>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell5_animal_growth"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Animal Growth✦</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">80 Feet</span>
|
||
<span class="ds-prepred-spell-duration">2 Rounds/Level</span>
|
||
<span class="ds-prepred-spell-description">This ritual prayer allows the caster to double the size of eight
|
||
animals (maximum) in a 20x20 foot area (i.e., a three foot tall animal grows to six feet in height). The
|
||
double growth also applies to mass, hit dice, attack, and damage values. The opposite, Animal Diminution ,
|
||
reduces the aforementioned by half.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Animal Growth✦}} {{Level=5}} {{Range=80 Feet}} {{Duration=2 Rounds/Level}} {{Description=This ritual prayer allows the caster to double the size of eight animals (maximum) in a 20x20 foot area (i.e., a three foot tall animal grows to six feet in height). The double growth also applies to mass, hit dice, attack, and damage values. The opposite, Animal Diminution , reduces the aforementioned by half.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell5_animal_diminution"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Animal Diminution†</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">80 Feet</span>
|
||
<span class="ds-prepred-spell-duration">2 Rounds/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell reduces up to eight animals to half their normal size,
|
||
mass, hit dice, attack, and damage within a 20x20 foot area. Effects are the inverse of Animal
|
||
Growth.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Animal Diminution†}} {{Level=5}} {{Range=80 Feet}} {{Duration=2 Rounds/Level}} {{Description=This spell reduces up to eight animals to half their normal size, mass, hit dice, attack, and damage within a 20x20 foot area. Effects are the inverse of Animal Growth.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell7_animate_rock"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Animate Rock</span>
|
||
<span class="ds-prepred-spell-level">7</span>
|
||
<span class="ds-prepred-spell-range">40 Feet</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell is a limited form of Animate Object. The druid can
|
||
animate 2x2x2 feet of rock, or any other mineral (per level). The rock animated may not be part of an
|
||
existing structure (dais, wall, or altar, etc.). Otherwise, this spell functions as per Animate
|
||
Object.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Animate Rock}} {{Level=7}} {{Range=40 Feet}} {{Duration=1 Round/Level}} {{Description=This spell is a limited form of Animate Object. The druid can animate 2x2x2 feet of rock, or any other mineral (per level). The rock animated may not be part of an existing structure (dais, wall, or altar, etc.). Otherwise, this spell functions as per Animate Object.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell3_animate_plantbased_dead"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Animate Plant-Based Dead</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">60 Feet</span>
|
||
<span class="ds-prepred-spell-duration">Special</span>
|
||
<span class="ds-prepred-spell-description">This spell allows the caster to call upon plant-matter (grasses,
|
||
vines, funguses, roots, molds, etc.) to grow through and animate skeletons and corpses within the spell's
|
||
range. The animated dead are plant-based. They are not considered undead and cannot be turned by clerics.
|
||
They will obey the caster until destroyed, the caster is slain, or they are dismissed by Dispel
|
||
Magic.<br><br>The spell animates 1 hit die for every level of the caster. For example, a Level 5 Cleric
|
||
could raise five skeletons (HD: 1 each) or two zombies (HD: 2 each) and one skeleton (HD: 1), etc. The
|
||
skeletons and zombies animated have the same hit dice, armor class, and movement rates as their undead
|
||
counterparts. However, because they are plant-based they take double damage from cold-based attacks.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Animate Plant-Based Dead}} {{Level=3}} {{Range=60 Feet}} {{Duration=Special}} {{Description=This spell allows the caster to call upon plant-matter (grasses, vines, funguses, roots, molds, etc.) to grow through and animate skeletons and corpses within the spell's range. The animated dead are plant-based. They are not considered undead and cannot be turned by clerics. They will obey the caster until destroyed, the caster is slain, or they are dismissed by Dispel Magic.<br><br>The spell animates 1 hit die for every level of the caster. For example, a Level 5 Cleric could raise five skeletons (HD: 1 each) or two zombies (HD: 2 each) and one skeleton (HD: 1), etc. The skeletons and zombies animated have the same hit dice, armor class, and movement rates as their undead counterparts. However, because they are plant-based they take double damage from cold-based attacks.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell6_antianimal_shell"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Anti-Animal Shell</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">Caster</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn/Level</span>
|
||
<span class="ds-prepred-spell-description">Anti-Animal Shell conjures a semi-translucent force globe that
|
||
protects all those within from attacks by mundane animals. Mundane animals include all mammals, but not
|
||
undead, devils, demons, or exotic other-planar creatures. The caster may terminate the spell at any time.
|
||
The radius is 10x10 feet plus 10 feet per two levels of the caster.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Anti-Animal Shell}} {{Level=6}} {{Range=Caster}} {{Duration=1 Turn/Level}} {{Description=Anti-Animal Shell conjures a semi-translucent force globe that protects all those within from attacks by mundane animals. Mundane animals include all mammals, but not undead, devils, demons, or exotic other-planar creatures. The caster may terminate the spell at any time. The radius is 10x10 feet plus 10 feet per two levels of the caster.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell5_antiplant_shell"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Anti-Plant Shell</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">Caster</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn/Level</span>
|
||
<span class="ds-prepred-spell-description">Anti-Plant Shell creates an invisible force globe. The shell
|
||
protects all those within from melee or missile attacks from plant-based beings or animated plants. The
|
||
caster may end this spell at any time. The shell radius is 10x10 feet plus 10 feet per two caster
|
||
levels.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Anti-Plant Shell}} {{Level=5}} {{Range=Caster}} {{Duration=1 Turn/Level}} {{Description=Anti-Plant Shell creates an invisible force globe. The shell protects all those within from melee or missile attacks from plant-based beings or animated plants. The caster may end this spell at any time. The shell radius is 10x10 feet plus 10 feet per two caster levels.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell2_barkskin"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Barkskin</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">4 Rounds/1 per Level</span>
|
||
<span class="ds-prepred-spell-description">Barkskin hardens a being's skin like a tree. The druid can cast the
|
||
spell on him/herself or a willing recipient. The effect improves armor class by +1 and provides a +1 to all
|
||
saves (except Spell).</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Barkskin}} {{Level=2}} {{Range=Touch}} {{Duration=4 Rounds/1 per Level}} {{Description=Barkskin hardens a being's skin like a tree. The druid can cast the spell on him/herself or a willing recipient. The effect improves armor class by +1 and provides a +1 to all saves (except Spell).}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell3_call_lightning"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Call Lightning</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">10 Rounds/1 per Level</span>
|
||
<span class="ds-prepred-spell-description">By means of this spell, the caster calls forth a lightning bolt
|
||
that scores 2d8 points of damage plus 1d8 per level. The spell requires the caster to be outdoors and in a
|
||
storm (any type).<br><br>The bolt of lightning strikes downward at a target within a 360 feet radius of the
|
||
druid. All those within 10 feet<br><br>of the target mark, or in the bolt's path, take damage. The caster
|
||
may call a bolt of lightning once per 10 rounds. The spell only functions below ground with a clear vertical
|
||
access to a stormy sky. Targets may save versus Spell for half damage.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Call Lightning}} {{Level=3}} {{Range=0}} {{Duration=10 Rounds/1 per Level}} {{Description=By means of this spell, the caster calls forth a lightning bolt that scores 2d8 points of damage plus 1d8 per level. The spell requires the caster to be outdoors and in a storm (any type).<br><br>The bolt of lightning strikes downward at a target within a 360 feet radius of the druid. All those within 10 feet<br><br>of the target mark, or in the bolt's path, take damage. The caster may call a bolt of lightning once per 10 rounds. The spell only functions below ground with a clear vertical access to a stormy sky. Targets may save versus Spell for half damage.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell7_chariot_of_fire"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Chariot of Fire</span>
|
||
<span class="ds-prepred-spell-level">7</span>
|
||
<span class="ds-prepred-spell-range">10 feet</span>
|
||
<span class="ds-prepred-spell-duration">5 Turns/1 Turn per Level</span>
|
||
<span class="ds-prepred-spell-description">The caster conjures a flaming chariot drawn by two horses. The
|
||
chariot accommodates eight medium-sized or smaller beings (including the caster). The chariot can either
|
||
travel on the ground (80 feet) or fly (160 feet). The flaming horses (Stats: AC: 2, HP: 30) can only by
|
||
harmed by water-based attacks, magic, spells, and magical weapons. The horses and chariot inflict 1d6 if
|
||
touched.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Chariot of Fire}} {{Level=7}} {{Range=10 feet}} {{Duration=5 Turns/1 Turn per Level}} {{Description=The caster conjures a flaming chariot drawn by two horses. The chariot accommodates eight medium-sized or smaller beings (including the caster). The chariot can either travel on the ground (80 feet) or fly (160 feet). The flaming horses (Stats: AC: 2, HP: 30) can only by harmed by water-based attacks, magic, spells, and magical weapons. The horses and chariot inflict 1d6 if touched.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell1_charm_person_or_mammal"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Charm Person or Mammal</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">25 Feet/5 Feet per Level</span>
|
||
<span class="ds-prepred-spell-duration">Special</span>
|
||
<span class="ds-prepred-spell-description">This spell is akin to Charm Person but includes animals. All the
|
||
aspects of Charm Person apply, except the druid need not speak the animal‘s language.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Charm Person or Mammal}} {{Level=1}} {{Range=25 Feet/5 Feet per Level}} {{Duration=Special}} {{Description=This spell is akin to Charm Person but includes animals. All the aspects of Charm Person apply, except the druid need not speak the animal‘s language.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell5_charm_plants"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Charm Plants</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">25 Feet/5 Feet per Level</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">Through this spell, the caster may command plants. The plants act
|
||
within their means and intelligent plants are allowed a save versus Spell at -4 to resist the dweomer. Once
|
||
enchanted, the caster may command plants indefinitely in the area of effect.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Charm Plants}} {{Level=5}} {{Range=25 Feet/5 Feet per Level}} {{Duration=Permanent}} {{Description=Through this spell, the caster may command plants. The plants act within their means and intelligent plants are allowed a save versus Spell at -4 to resist the dweomer. Once enchanted, the caster may command plants indefinitely in the area of effect.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell5_commune_with_nature"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Commune with Nature</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">One Half Mile/Level</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">Through this ritual a druid attunes with, and gathers knowledge of,
|
||
the natural world. The spell may not be cast underground. The ritual spell allows the caster to ascertain a
|
||
piece of information (per level of the caster) from any of the following: general state, terrain, plant
|
||
life, mineral composition, location of water, inhabitants, animal populations, sylvan creatures, unnatural
|
||
beings or monsters. If a druid is touching a standing stone at the time of casting, or within a stone
|
||
circle, s/he gains one additional piece of information. If at either location at sunset or sunrise, s/he
|
||
receives two pieces of information. Further, if at either location on the Summer or Winter Solstice, three
|
||
additional pieces of information are gained. This ritual requires one turn to cast.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Commune with Nature}} {{Level=5}} {{Range=One Half Mile/Level}} {{Duration=See below}} {{Description=Through this ritual a druid attunes with, and gathers knowledge of, the natural world. The spell may not be cast underground. The ritual spell allows the caster to ascertain a piece of information (per level of the caster) from any of the following: general state, terrain, plant life, mineral composition, location of water, inhabitants, animal populations, sylvan creatures, unnatural beings or monsters. If a druid is touching a standing stone at the time of casting, or within a stone circle, s/he gains one additional piece of information. If at either location at sunset or sunrise, s/he receives two pieces of information. Further, if at either location on the Summer or Winter Solstice, three additional pieces of information are gained. This ritual requires one turn to cast.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell7_confusion"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Confusion</span>
|
||
<span class="ds-prepred-spell-level">7</span>
|
||
<span class="ds-prepred-spell-range">10 Feet</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell confuses 2d4 targets within a 10x10 foot area. On a
|
||
failed save (Spell at -2), targets are unable to function independently. Roll below, at the opening of every
|
||
combat round, to determine the target's response:<br><br>1d20 Confusion Result 15-20 Attacks nearest being.
|
||
9-14 Mumbles incoherently (2 Rounds). 5-8 Scratches head befuddled. 1-4 Wanders in random direction (1
|
||
Turn).</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Confusion}} {{Level=7}} {{Range=10 Feet}} {{Duration=1 Round/Level}} {{Description=This spell confuses 2d4 targets within a 10x10 foot area. On a failed save (Spell at -2), targets are unable to function independently. Roll below, at the opening of every combat round, to determine the target's response:<br><br>1d20 Confusion Result 15-20 Attacks nearest being. 9-14 Mumbles incoherently (2 Rounds). 5-8 Scratches head befuddled. 1-4 Wanders in random direction (1 Turn).}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell7_conjure_earth_elemental"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Conjure Earth Elemental</span>
|
||
<span class="ds-prepred-spell-level">7</span>
|
||
<span class="ds-prepred-spell-range">10 Feet</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn/Level</span>
|
||
<span class="ds-prepred-spell-description">Through this spell, the caster calls one HD: 16 Earth Elemental to
|
||
pull itself up from the ground. The elemental will obey, perform tasks, and fight for the spell's duration.
|
||
Dispel Magic returns the elemental to the Plane of Earth.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Conjure Earth Elemental}} {{Level=7}} {{Range=10 Feet}} {{Duration=1 Turn/Level}} {{Description=Through this spell, the caster calls one HD: 16 Earth Elemental to pull itself up from the ground. The elemental will obey, perform tasks, and fight for the spell's duration. Dispel Magic returns the elemental to the Plane of Earth.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell6_conjure_fire_elemental"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Conjure Fire Elemental</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">40 feet</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn/Level</span>
|
||
<span class="ds-prepred-spell-description">The caster, through this spell, summons an elemental from the Plane
|
||
of Fire. The elemental is bound to perform tasks and fight for the spell's duration. Dispel Magic returns
|
||
the entity to its home plane of existence. The spell requires a fire. At the time of casting, roll the table
|
||
below to determine the elemental's hit dice:<br><br>1d100 Fire Elemental Hit Dice 96-100 Fire Elemental (HD:
|
||
20) 86-95 Fire Elemental (HD: 16) 01-85 Fire Elemental (HD: 12)</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Conjure Fire Elemental}} {{Level=6}} {{Range=40 feet}} {{Duration=1 Turn/Level}} {{Description=The caster, through this spell, summons an elemental from the Plane of Fire. The elemental is bound to perform tasks and fight for the spell's duration. Dispel Magic returns the entity to its home plane of existence. The spell requires a fire. At the time of casting, roll the table below to determine the elemental's hit dice:<br><br>1d100 Fire Elemental Hit Dice 96-100 Fire Elemental (HD: 20) 86-95 Fire Elemental (HD: 16) 01-85 Fire Elemental (HD: 12)}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell4_control_temperature"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Control Temperature</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">4 Turns/1 Turn per Level</span>
|
||
<span class="ds-prepred-spell-description">Through this ritual prayer, the caster can adjust temperature (up
|
||
or down) within a 20 foot radius. The temperature adjustment is 60 degrees plus 10 degrees per caster level
|
||
(beyond Level 6). For example, at Level 9 a druid can affect a change of 90 degrees Fahrenheit.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Control Temperature}} {{Level=4}} {{Range=0}} {{Duration=4 Turns/1 Turn per Level}} {{Description=Through this ritual prayer, the caster can adjust temperature (up or down) within a 20 foot radius. The temperature adjustment is 60 degrees plus 10 degrees per caster level (beyond Level 6). For example, at Level 9 a druid can affect a change of 90 degrees Fahrenheit.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell6_control_weather"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Control Weather</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">4d12 hours</span>
|
||
<span class="ds-prepred-spell-description">This spell changes weather in a fixed area. The spell requires one
|
||
turn to cast and 1d4 additional turns to manifest (3d4+4 square miles). The caster can only call forth
|
||
season and climate-appropriate weather: Season Weather Type Spring Electrical Storm, Wind Storm, Tornado
|
||
Summer Rain Storm, Hail Storm, or Heatwave Autumn Rain Storm, Hail Storm, or Hurricane Winter Snow Storm,
|
||
Ice Storm, Polar Vortex Through this spell, caster may adjust weather tendencies only. This includes
|
||
direction and intensity, but not specific control. The caster, for example, cannot direct the path of a
|
||
hurricane or ice storm. The spell precludes conflicting weather patterns.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Control Weather}} {{Level=6}} {{Range=0}} {{Duration=4d12 hours}} {{Description=This spell changes weather in a fixed area. The spell requires one turn to cast and 1d4 additional turns to manifest (3d4+4 square miles). The caster can only call forth season and climate-appropriate weather: Season Weather Type Spring Electrical Storm, Wind Storm, Tornado Summer Rain Storm, Hail Storm, or Heatwave Autumn Rain Storm, Hail Storm, or Hurricane Winter Snow Storm, Ice Storm, Polar Vortex Through this spell, caster may adjust weather tendencies only. This includes direction and intensity, but not specific control. The caster, for example, cannot direct the path of a hurricane or ice storm. The spell precludes conflicting weather patterns.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell7_control_weather_advanced"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Control Weather (Advanced)</span>
|
||
<span class="ds-prepred-spell-level">7</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">4d12 hours</span>
|
||
<span class="ds-prepred-spell-description">This spell, more potent than the lesser spell of the same name,
|
||
controls weather. The spell can alter weather forward or backward by one season. For example, in winter the
|
||
caster may change the weather to fall or spring. In every other aspect, this spell is identical to Control
|
||
Weather.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Control Weather (Advanced)}} {{Level=7}} {{Range=0}} {{Duration=4d12 hours}} {{Description=This spell, more potent than the lesser spell of the same name, controls weather. The spell can alter weather forward or backward by one season. For example, in winter the caster may change the weather to fall or spring. In every other aspect, this spell is identical to Control Weather.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell5_control_winds"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Control Winds</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn/Level</span>
|
||
<span class="ds-prepred-spell-description">This ritual adjusts wind within a 40 foot radius per level of the
|
||
caster. The effect is centered on the caster and increases or decreases wind velocity. This effect continues
|
||
until the caster alters the desired velocity, dismisses the spell, or the spell concludes.<br><br>During the
|
||
spell, the caster is centered in a calm “eye” of the wind. The druid can adjust wind speed up or down 3
|
||
miles per hour, in 3 mile increments, each round. When the caster ends the spell or the spell's duration
|
||
ends, wind velocity decreases at the identical rate.<br><br>As a guideline, Strong Wind (35+mph) will make
|
||
sailing arduous, ranged attacks inaccurate, and force small airborne creatures to ground. Severe Wind (50+
|
||
mph) will cause building and ship damage, and force medium-sized flying creatures to ground. Windstorms (70+
|
||
mph) will force most avian monsters to land, uproot trees, may blow down wooden buildings, and imperil
|
||
vessels.<br><br>In more extreme examples, Hurricane Wind (90+ mph) will outright demolish wooden buildings,
|
||
uproot large trees, and destroy ships. Tornadoes (175+ mph) level all structures and
|
||
vegetation.<br><br>Note: The spell will function in confined spaces and underground. If the radius of the
|
||
spell is constricted under 40 feet, the spell provides no “eye” to the caster.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Control Winds}} {{Level=5}} {{Range=0}} {{Duration=1 Turn/Level}} {{Description=This ritual adjusts wind within a 40 foot radius per level of the caster. The effect is centered on the caster and increases or decreases wind velocity. This effect continues until the caster alters the desired velocity, dismisses the spell, or the spell concludes.<br><br>During the spell, the caster is centered in a calm “eye” of the wind. The druid can adjust wind speed up or down 3 miles per hour, in 3 mile increments, each round. When the caster ends the spell or the spell's duration ends, wind velocity decreases at the identical rate.<br><br>As a guideline, Strong Wind (35+mph) will make sailing arduous, ranged attacks inaccurate, and force small airborne creatures to ground. Severe Wind (50+ mph) will cause building and ship damage, and force medium-sized flying creatures to ground. Windstorms (70+ mph) will force most avian monsters to land, uproot trees, may blow down wooden buildings, and imperil vessels.<br><br>In more extreme examples, Hurricane Wind (90+ mph) will outright demolish wooden buildings, uproot large trees, and destroy ships. Tornadoes (175+ mph) level all structures and vegetation.<br><br>Note: The spell will function in confined spaces and underground. If the radius of the spell is constricted under 40 feet, the spell provides no “eye” to the caster.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell2_create_water"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Create Water✦</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">10 Feet</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">This spell generates four gallons of drinking water per level of
|
||
the caster. The caster can create water directly into vessels (like barrels), or in a space three foot
|
||
cubed. Destroy Water , reverse of the spell, completely evaporates water in a similar volume. This spell
|
||
precludes the creation of water within a living target.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Create Water✦}} {{Level=2}} {{Range=10 Feet}} {{Duration=Permanent}} {{Description=This spell generates four gallons of drinking water per level of the caster. The caster can create water directly into vessels (like barrels), or in a space three foot cubed. Destroy Water , reverse of the spell, completely evaporates water in a similar volume. This spell precludes the creation of water within a living target.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell2_destroy_water"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Destroy Water†</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">10 Feet</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">Evaporates up to 4 gallons of water per caster level in a 3-foot
|
||
cube or container. Cannot target water inside a living creature.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Destroy Water†}} {{Level=2}} {{Range=10 Feet}} {{Duration=Permanent}} {{Description=Evaporates up to 4 gallons of water per caster level in a 3-foot cube or container. Cannot target water inside a living creature.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell7_creeping_doom"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Creeping Doom</span>
|
||
<span class="ds-prepred-spell-level">7</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">4 Rounds/Level</span>
|
||
<span class="ds-prepred-spell-description">Through Creeping Doom , a druid calls forth a massive swarm of
|
||
insects. The druid may command the 20x20 foot mass of biting and stinging insects to attack a target within
|
||
80 feet. The swarm consists of individual insects (2d4+2)x (+5 per level) and moves 5 feet per round. Each
|
||
insect scores one hit point of damage and dies. The caster may direct the mass of insects to move and attack
|
||
other targets within range of the spell, as desired (and subject to its movement rate). The swarm gets
|
||
weaker the further it moves from the caster. If the swarm moves beyond 80 feet of the druid, 2d10 insects
|
||
skitter away. A further 2d10 disperse for every 5 feet thereafter until the swarm scatters completely or the
|
||
spell's duration ends.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Creeping Doom}} {{Level=7}} {{Range=0}} {{Duration=4 Rounds/Level}} {{Description=Through Creeping Doom , a druid calls forth a massive swarm of insects. The druid may command the 20x20 foot mass of biting and stinging insects to attack a target within 80 feet. The swarm consists of individual insects (2d4+2)x (+5 per level) and moves 5 feet per round. Each insect scores one hit point of damage and dies. The caster may direct the mass of insects to move and attack other targets within range of the spell, as desired (and subject to its movement rate). The swarm gets weaker the further it moves from the caster. If the swarm moves beyond 80 feet of the druid, 2d10 insects skitter away. A further 2d10 disperse for every 5 feet thereafter until the swarm scatters completely or the spell's duration ends.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell5_cure_critical_wounds"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Cure Critical Wounds✦</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">By touch, a cleric heals 4d8 hit points of damage +1 per level.
|
||
This spell cannot grant hit points beyond the recipient's maximum.<br><br>The reverse, Cause Critical Wounds
|
||
, inflicts 4d8 hit points of damage +1 per level on a successful touch attack.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Cure Critical Wounds✦}} {{Level=5}} {{Range=Touch}} {{Duration=Permanent}} {{Description=By touch, a cleric heals 4d8 hit points of damage +1 per level. This spell cannot grant hit points beyond the recipient's maximum.<br><br>The reverse, Cause Critical Wounds , inflicts 4d8 hit points of damage +1 per level on a successful touch attack.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell5_cause_critical_wounds"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Cause Critical Wounds†</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">Inflicts 4d8 +1 per caster level damage on a successful touch
|
||
attack.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Cause Critical Wounds†}} {{Level=5}} {{Range=Touch}} {{Duration=Permanent}} {{Description=Inflicts 4d8 +1 per caster level damage on a successful touch attack.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell3_cure_disease"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Cure Disease✦</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">Through touch, the spell cures all forms of disease, including
|
||
lycanthropy and mummy rot. The reverse, Cause Disease , inflicts a disease that poisons the blood, decreases
|
||
Constitution by four points, and all attack and damage rolls are at -1. The target falls into a comma in 2d6
|
||
days. A save versus Spell negates the effect. The disease caused by this spell cannot be cured (except by
|
||
Cure Disease ) and the target requires twice normal healing time.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Cure Disease✦}} {{Level=3}} {{Range=Touch}} {{Duration=Permanent}} {{Description=Through touch, the spell cures all forms of disease, including lycanthropy and mummy rot. The reverse, Cause Disease , inflicts a disease that poisons the blood, decreases Constitution by four points, and all attack and damage rolls are at -1. The target falls into a comma in 2d6 days. A save versus Spell negates the effect. The disease caused by this spell cannot be cured (except by Cure Disease ) and the target requires twice normal healing time.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell3_cause_disease"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Cause Disease†</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">Inflicts a deadly blood disease reducing Constitution by 4, and -1
|
||
to attack and damage. Victim falls into a coma in 2d6 days unless a save is made. Cannot be healed except by
|
||
Cure Disease.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Cause Disease†}} {{Level=3}} {{Range=Touch}} {{Duration=Permanent}} {{Description=Inflicts a deadly blood disease reducing Constitution by 4, and -1 to attack and damage. Victim falls into a coma in 2d6 days unless a save is made. Cannot be healed except by Cure Disease.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell2_cure_light_wounds"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Cure Light Wounds✦</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">By touch, the cleric heals 1d8 hit points of damage +1 per level.
|
||
This spell cannot grant hit points beyond the recipient's maximum.<br><br>Cause Light Wounds (the reverse)
|
||
causes 1d8 hit points of damage +1 per level on a successful touch attack.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Cure Light Wounds✦}} {{Level=2}} {{Range=Touch}} {{Duration=Permanent}} {{Description=By touch, the cleric heals 1d8 hit points of damage +1 per level. This spell cannot grant hit points beyond the recipient's maximum.<br><br>Cause Light Wounds (the reverse) causes 1d8 hit points of damage +1 per level on a successful touch attack.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell2_cause_light_wounds"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Cause Light Wounds†</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">Inflicts 1d8 +1 per caster level damage on a successful touch
|
||
attack.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Cause Light Wounds†}} {{Level=2}} {{Range=Touch}} {{Duration=Permanent}} {{Description=Inflicts 1d8 +1 per caster level damage on a successful touch attack.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell3_cure_moderate_wounds"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Cure Moderate Wounds✦</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">Through touch, the cleric heals 2d8 hit points of damage +1 per
|
||
level. This spell cannot grant points beyond the recipient's maximum.<br><br>Cause Moderate Wounds causes
|
||
2d8 hit points of damage +1 per level on a successful touch attack.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Cure Moderate Wounds✦}} {{Level=3}} {{Range=Touch}} {{Duration=Permanent}} {{Description=Through touch, the cleric heals 2d8 hit points of damage +1 per level. This spell cannot grant points beyond the recipient's maximum.<br><br>Cause Moderate Wounds causes 2d8 hit points of damage +1 per level on a successful touch attack.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell3_cause_moderate_wounds"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Cause Moderate Wounds†</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">Inflicts 2d8 +1 per caster level damage on a successful touch
|
||
attack.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Cause Moderate Wounds†}} {{Level=3}} {{Range=Touch}} {{Duration=Permanent}} {{Description=Inflicts 2d8 +1 per caster level damage on a successful touch attack.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell4_cure_serious_wounds"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Cure Serious Wounds✦</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">By touch, the cleric heals 3d8 hit points of damage +1 per level.
|
||
This spell cannot grant hit points beyond the recipient's maximum. Cause Serious Wounds causes 3d8 hit
|
||
points of damage +1 per level on a successful touch attack.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Cure Serious Wounds✦}} {{Level=4}} {{Range=Touch}} {{Duration=Permanent}} {{Description=By touch, the cleric heals 3d8 hit points of damage +1 per level. This spell cannot grant hit points beyond the recipient's maximum. Cause Serious Wounds causes 3d8 hit points of damage +1 per level on a successful touch attack.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell4_cause_serious_wounds"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Cause Serious Wounds†</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">Inflicts 3d8 +1 per caster level damage on a successful touch
|
||
attack.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Cause Serious Wounds†}} {{Level=4}} {{Range=Touch}} {{Duration=Permanent}} {{Description=Inflicts 3d8 +1 per caster level damage on a successful touch attack.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell2_darkvision"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Darkvision</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">12 Turns/6 Turns per Level</span>
|
||
<span class="ds-prepred-spell-description">The caster or touched subject can see 60 feet in the dark for the
|
||
duration of the spell.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Darkvision}} {{Level=2}} {{Range=Touch}} {{Duration=12 Turns/6 Turns per Level}} {{Description=The caster or touched subject can see 60 feet in the dark for the duration of the spell.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell1_detect_magic"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Detect Magic</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">10 Feet/10 Feet per Level</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn</span>
|
||
<span class="ds-prepred-spell-description">This spell allows the caster to identify a magical object or being
|
||
in the area of effect for the duration of the spell. This includes objects or beings that are permanently or
|
||
temporarily under any form of enchantment.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Detect Magic}} {{Level=1}} {{Range=10 Feet/10 Feet per Level}} {{Duration=1 Turn}} {{Description=This spell allows the caster to identify a magical object or being in the area of effect for the duration of the spell. This includes objects or beings that are permanently or temporarily under any form of enchantment.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell1_detect_pits_and_snares"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Detect Pits and Snares</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">10 Feet/10 per Level</span>
|
||
<span class="ds-prepred-spell-duration">4 Rounds/1 per Level</span>
|
||
<span class="ds-prepred-spell-description">Through this spell, a druid can detect pit traps, snare traps,
|
||
dead-fall stone traps, as well as mechanical traps within range, for the duration of the spell.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Detect Pits and Snares}} {{Level=1}} {{Range=10 Feet/10 per Level}} {{Duration=4 Rounds/1 per Level}} {{Description=Through this spell, a druid can detect pit traps, snare traps, dead-fall stone traps, as well as mechanical traps within range, for the duration of the spell.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell4_dispel_magic"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Dispel Magic</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">5 Feet/5 Feet per Level</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">This spell negates magic effects. The caster instantly dismisses
|
||
all spells and spell-effects, regardless of class, of the same level or lower.<br><br>A possibility of spell
|
||
failure exists. For each level above the caster, a 7% chance exists (cumulatively) that Dispel Magic fails.
|
||
For example, if a Level 7 Magic-User attempts to dispel the effect of a Level 10 Magic-User, the failure
|
||
rate is 21%.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Dispel Magic}} {{Level=4}} {{Range=5 Feet/5 Feet per Level}} {{Duration=Permanent}} {{Description=This spell negates magic effects. The caster instantly dismisses all spells and spell-effects, regardless of class, of the same level or lower.<br><br>A possibility of spell failure exists. For each level above the caster, a 7% chance exists (cumulatively) that Dispel Magic fails. For example, if a Level 7 Magic-User attempts to dispel the effect of a Level 10 Magic-User, the failure rate is 21%.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell2_dragon_mist"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Dragon Mist</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">30 Feet</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">Dragon Mist creates a 20x20x20 foot bank of thick sulphuric,
|
||
choking mist centered anywhere within range. All living beings within become helpless with asphyxiation and
|
||
nausea (+2 to hit). The condition persists as long as the target remains in the mist and for 1d4+1 rounds
|
||
afterwards. Any creature that succeeds on a save versus Death when leaving fog is unaffected for the
|
||
additional rounds. The mist also obscures vision.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Dragon Mist}} {{Level=2}} {{Range=30 Feet}} {{Duration=Permanent}} {{Description=Dragon Mist creates a 20x20x20 foot bank of thick sulphuric, choking mist centered anywhere within range. All living beings within become helpless with asphyxiation and nausea (+2 to hit). The condition persists as long as the target remains in the mist and for 1d4+1 rounds afterwards. Any creature that succeeds on a save versus Death when leaving fog is unaffected for the additional rounds. The mist also obscures vision.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell2_elderberry"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Elderberry✦</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">Not applicable</span>
|
||
<span class="ds-prepred-spell-duration">1 Hour</span>
|
||
<span class="ds-prepred-spell-description">Upon casting this spell, the druid slowly breathes on, and thus
|
||
enchants, a handful of elderberries (1d4+1 per level). Each elderberry, which must be consumed within six
|
||
turns (one hour), heals two hit points of damage. A maximum of eight berries may be consumed in any 24-hour
|
||
period. In addition, the consumption of an enchanted elderberry fully nourishes a player character for the
|
||
same time period. The reverse of this spell, Poisonberry, creates a similar number of berries but causes 2
|
||
hit points of damage if ingested and immediately makes the subject famished.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Elderberry✦}} {{Level=2}} {{Range=Not applicable}} {{Duration=1 Hour}} {{Description=Upon casting this spell, the druid slowly breathes on, and thus enchants, a handful of elderberries (1d4+1 per level). Each elderberry, which must be consumed within six turns (one hour), heals two hit points of damage. A maximum of eight berries may be consumed in any 24-hour period. In addition, the consumption of an enchanted elderberry fully nourishes a player character for the same time period. The reverse of this spell, Poisonberry, creates a similar number of berries but causes 2 hit points of damage if ingested and immediately makes the subject famished.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell2_poisonberry"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Poisonberry†</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">Not applicable</span>
|
||
<span class="ds-prepred-spell-duration">1 Hour</span>
|
||
<span class="ds-prepred-spell-description">Creates enchanted berries that deal 2 damage if eaten and cause
|
||
intense hunger. Max eight berries consumed in 24 hours.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Poisonberry†}} {{Level=2}} {{Range=Not applicable}} {{Duration=1 Hour}} {{Description=Creates enchanted berries that deal 2 damage if eaten and cause intense hunger. Max eight berries consumed in 24 hours.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell1_entangle"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Entangle</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">80 Feet</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn</span>
|
||
<span class="ds-prepred-spell-description">Through this spell a druid causes all grasses, weeds, and vines, to
|
||
grow in length. All those within, or that enter, a 40x40 foot area are entangled. The vegetative overgrowth
|
||
immobilizes all those affected (+4 to hit). A successful save versus Spell, slows movement to half speed (+2
|
||
to hit).</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Entangle}} {{Level=1}} {{Range=80 Feet}} {{Duration=1 Turn}} {{Description=Through this spell a druid causes all grasses, weeds, and vines, to grow in length. All those within, or that enter, a 40x40 foot area are entangled. The vegetative overgrowth immobilizes all those affected (+4 to hit). A successful save versus Spell, slows movement to half speed (+2 to hit).}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell1_face_of_the_forest"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Face of the Forest</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">N/A</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">By means of this spell a druid creates a telepathic bond with a
|
||
tree. The druid must spend three turns carving a face, also called an arborglyph, of their deity into its
|
||
trunk. The druid may choose one of two options prior to casting the spell.<br><br>S/he may “see” through the
|
||
Face of the Forest for the preceding 24-hour period. Alternatively, the druid can command the tree to alarm
|
||
the caster telepathically of any movement in the face's line of sight for the next 24 hour period. Once the
|
||
time period has elapsed, or the tree has alarmed, the spell ends. Deities such as Silvanus the Green Man, or
|
||
Herne the Hunter, are commonly used to carve arborglyphs.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Face of the Forest}} {{Level=1}} {{Range=N/A}} {{Duration=See below}} {{Description=By means of this spell a druid creates a telepathic bond with a tree. The druid must spend three turns carving a face, also called an arborglyph, of their deity into its trunk. The druid may choose one of two options prior to casting the spell.<br><br>S/he may “see” through the Face of the Forest for the preceding 24-hour period. Alternatively, the druid can command the tree to alarm the caster telepathically of any movement in the face's line of sight for the next 24 hour period. Once the time period has elapsed, or the tree has alarmed, the spell ends. Deities such as Silvanus the Green Man, or Herne the Hunter, are commonly used to carve arborglyphs.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell1_faerie_fire"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Faerie Fire</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">10 Feet</span>
|
||
<span class="ds-prepred-spell-duration">4 Rounds/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell casts a colored outline around two medium- sized or four
|
||
small-sized creatures (bullywugs, halflings, goblins, kobolds, etc.) in a 20 foot radius plus 5 feet per
|
||
level. The spell provides +2 on all attacks due to the increased visibility of the targets.<br><br>The
|
||
glowing outline makes the target visible in darkness up to 60 feet away (30 feet if close to a light
|
||
source). The druid may choose green, blue, or purple, Faerie Fire.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Faerie Fire}} {{Level=1}} {{Range=10 Feet}} {{Duration=4 Rounds/Level}} {{Description=This spell casts a colored outline around two medium- sized or four small-sized creatures (bullywugs, halflings, goblins, kobolds, etc.) in a 20 foot radius plus 5 feet per level. The spell provides +2 on all attacks due to the increased visibility of the targets.<br><br>The glowing outline makes the target visible in darkness up to 60 feet away (30 feet if close to a light source). The druid may choose green, blue, or purple, Faerie Fire.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell6_feeblemind"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Feeblemind</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">40 Feet</span>
|
||
<span class="ds-prepred-spell-duration">Indefinite</span>
|
||
<span class="ds-prepred-spell-description">This spell makes a single being or creature mentally invalided, if
|
||
a save versus Spell is failed (-4). The affected being or creature babbles incoherently and is rendered
|
||
unable to communicate, attack, or wield magic. Only a Dispel Magic or Heal negates Feeblemind.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Feeblemind}} {{Level=6}} {{Range=40 Feet}} {{Duration=Indefinite}} {{Description=This spell makes a single being or creature mentally invalided, if a save versus Spell is failed (-4). The affected being or creature babbles incoherently and is rendered unable to communicate, attack, or wield magic. Only a Dispel Magic or Heal negates Feeblemind.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell2_feign_death"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Feign Death</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">6 Rounds/1 Round per Level</span>
|
||
<span class="ds-prepred-spell-description">This spell initiates a paralytic state in the caster or another
|
||
willing subject. This state imitates death to observers, even upon close examination. To Feign Death in an
|
||
unwilling target, the caster must make a touch attack/contact and the being must be equal, or have fewer,
|
||
hit dice. The spell provides no saving throw.<br><br>Under the spell, the target remains fully conscious but
|
||
utterly immobile. All paralysis, poison, or energy drain attacks directed at the catatonic subject fail.
|
||
Although, poison, with a longer duration than the spell, takes effect at the spell's conclusion.<br><br>At
|
||
any time, the caster can dismiss the spell. The subject requires 1d3 rounds to emerge from the magical
|
||
catatonic state.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Feign Death}} {{Level=2}} {{Range=Touch}} {{Duration=6 Rounds/1 Round per Level}} {{Description=This spell initiates a paralytic state in the caster or another willing subject. This state imitates death to observers, even upon close examination. To Feign Death in an unwilling target, the caster must make a touch attack/contact and the being must be equal, or have fewer, hit dice. The spell provides no saving throw.<br><br>Under the spell, the target remains fully conscious but utterly immobile. All paralysis, poison, or energy drain attacks directed at the catatonic subject fail. Although, poison, with a longer duration than the spell, takes effect at the spell's conclusion.<br><br>At any time, the caster can dismiss the spell. The subject requires 1d3 rounds to emerge from the magical catatonic state.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell2_find_plants"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Find Plants</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn/Level</span>
|
||
<span class="ds-prepred-spell-description">Through this spell the caster may locate a specific plant within a
|
||
10 foot radius per level. The spell is caster- centered. The caster may choose a different plant type every
|
||
round, and the radius moves with the caster.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Find Plants}} {{Level=2}} {{Range=0}} {{Duration=1 Turn/Level}} {{Description=Through this spell the caster may locate a specific plant within a 10 foot radius per level. The spell is caster- centered. The caster may choose a different plant type every round, and the radius moves with the caster.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell7_finger_of_death"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Finger of Death</span>
|
||
<span class="ds-prepred-spell-level">7</span>
|
||
<span class="ds-prepred-spell-range">10 Feet</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">Through this ritual prayer, a druid may kill a creature or being
|
||
within range and line of sight. The subject is entitled to a save (Death) to negate the spell.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Finger of Death}} {{Level=7}} {{Range=10 Feet}} {{Duration=Permanent}} {{Description=Through this ritual prayer, a druid may kill a creature or being within range and line of sight. The subject is entitled to a save (Death) to negate the spell.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell6_fire_seeds"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Fire Seeds</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">40 Feet</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">Through this spell a druid transforms acorns or holly berries into
|
||
explosives that detonate on command. The spell requires one round per acorn/berry to enchant. The
|
||
enchantment last for 1 turn per level of the caster. The type (acorn or berry) determines the total number
|
||
enchanted. The druid may only enchant one type per casting: Acorns: The spell can enchant a maximum of four
|
||
acorns. On a successful ranged attack roll, an acorn explodes in fire and scores 2d8 points of damage (save
|
||
versus Spell for half damage), Acorns combust flammable materials within 10 feet and can be thrown a maximum
|
||
of 40 feet. Holly Berries: This version of the spell enchants a maximum of eight berries. Unlike the acorns,
|
||
the holly berries are too light to hurl at a target. Upon speaking the command word within 40 feet, the
|
||
berries explode for 1d8 points of fire damage each. Each berry has a 5 foot explosive radius. Like the
|
||
acorns, the berries combust flammable materials. A save versus Spell halves the damage.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Fire Seeds}} {{Level=6}} {{Range=40 Feet}} {{Duration=See below}} {{Description=Through this spell a druid transforms acorns or holly berries into explosives that detonate on command. The spell requires one round per acorn/berry to enchant. The enchantment last for 1 turn per level of the caster. The type (acorn or berry) determines the total number enchanted. The druid may only enchant one type per casting: Acorns: The spell can enchant a maximum of four acorns. On a successful ranged attack roll, an acorn explodes in fire and scores 2d8 points of damage (save versus Spell for half damage), Acorns combust flammable materials within 10 feet and can be thrown a maximum of 40 feet. Holly Berries: This version of the spell enchants a maximum of eight berries. Unlike the acorns, the holly berries are too light to hurl at a target. Upon speaking the command word within 40 feet, the berries explode for 1d8 points of fire damage each. Each berry has a 5 foot explosive radius. Like the acorns, the berries combust flammable materials. A save versus Spell halves the damage.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell7_fire_storm"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Fire Storm✦</span>
|
||
<span class="ds-prepred-spell-level">7</span>
|
||
<span class="ds-prepred-spell-range">100 Feet</span>
|
||
<span class="ds-prepred-spell-duration">1 Round</span>
|
||
<span class="ds-prepred-spell-description">When cast, a 20x20x20 foot area per level (plus 5 feet every two
|
||
levels) chosen by the caster is consumed in flames like a Wall of Fire. Any creature within the area takes
|
||
1d6 damage per level of the caster. All those within 5 feet take 1d4 damage per level of the
|
||
caster.<br><br>The reverse, Quench Fire , extinguishes mundane fire over twice the aforementioned area. The
|
||
spell may extinguish magical fire (5% per level of the caster).</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Fire Storm✦}} {{Level=7}} {{Range=100 Feet}} {{Duration=1 Round}} {{Description=When cast, a 20x20x20 foot area per level (plus 5 feet every two levels) chosen by the caster is consumed in flames like a Wall of Fire. Any creature within the area takes 1d6 damage per level of the caster. All those within 5 feet take 1d4 damage per level of the caster.<br><br>The reverse, Quench Fire , extinguishes mundane fire over twice the aforementioned area. The spell may extinguish magical fire (5% per level of the caster).}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell7_quench_fire"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Quench Fire†</span>
|
||
<span class="ds-prepred-spell-level">7</span>
|
||
<span class="ds-prepred-spell-range">100 Feet</span>
|
||
<span class="ds-prepred-spell-duration">1 Round</span>
|
||
<span class="ds-prepred-spell-description">Extinguishes mundane fires in a large area and has a chance to
|
||
snuff magical fire (5% per caster level).</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Quench Fire†}} {{Level=7}} {{Range=100 Feet}} {{Duration=1 Round}} {{Description=Extinguishes mundane fires in a large area and has a chance to snuff magical fire (5% per caster level).}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell3_fire_trap"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Fire Trap</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent until Triggered</span>
|
||
<span class="ds-prepred-spell-description">This spell traps an item (book, bottle, chest, coffer, coffin,
|
||
door, drawer, etc.). When a being takes (or opens) the object, the spell detonates in a 5 foot radius. The
|
||
flames of the detonation score 1d4 fire damage plus 1 point per level of the caster. A save versus Spell
|
||
halves the damage. The object is protected from the fiery discharge. A Fire Trapped item cannot receive a
|
||
second warding spell and Knock always fails.<br><br>The spell is difficult to find and remove. Any Find/
|
||
Remove Traps roll is halved and failure detonates.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Fire Trap}} {{Level=3}} {{Range=Touch}} {{Duration=Permanent until Triggered}} {{Description=This spell traps an item (book, bottle, chest, coffer, coffin, door, drawer, etc.). When a being takes (or opens) the object, the spell detonates in a 5 foot radius. The flames of the detonation score 1d4 fire damage plus 1 point per level of the caster. A save versus Spell halves the damage. The object is protected from the fiery discharge. A Fire Trapped item cannot receive a second warding spell and Knock always fails.<br><br>The spell is difficult to find and remove. Any Find/ Remove Traps roll is halved and failure detonates.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell1_fistfang"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Fistfang</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">N/A</span>
|
||
<span class="ds-prepred-spell-duration">2 Rounds/Level</span>
|
||
<span class="ds-prepred-spell-description">By means of this spell, a druid summons a fanged maw that increases
|
||
damage upon a successful attack roll in combat. The druid can summon the Fistfang onto his or her fist,
|
||
sling stone, or the end of a club. In either case, the druid scores an additional +2 damage as the fanged
|
||
maw bites into flesh.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Fistfang}} {{Level=1}} {{Range=N/A}} {{Duration=2 Rounds/Level}} {{Description=By means of this spell, a druid summons a fanged maw that increases damage upon a successful attack roll in combat. The druid can summon the Fistfang onto his or her fist, sling stone, or the end of a club. In either case, the druid scores an additional +2 damage as the fanged maw bites into flesh.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell2_flame_blade"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Flame Blade</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">Upon casting this spell, a druid calls forth a three-foot long ray
|
||
of burning fire to emerge from the hand. The blade scores 1d4+4 points of damage. If the target is undead,
|
||
or specifically vulnerable to fire, the blade scores an additional +2 points of damage. The blade scores no
|
||
damage against a target that uses fire as a form of attack or that is a fire-dwelling creature. If a target
|
||
is protected from fire there is a -2 penalty to damage. The blade is not considered a magic weapon and will
|
||
ignite combustible materials.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Flame Blade}} {{Level=2}} {{Range=0}} {{Duration=1 Round/Level}} {{Description=Upon casting this spell, a druid calls forth a three-foot long ray of burning fire to emerge from the hand. The blade scores 1d4+4 points of damage. If the target is undead, or specifically vulnerable to fire, the blade scores an additional +2 points of damage. The blade scores no damage against a target that uses fire as a form of attack or that is a fire-dwelling creature. If a target is protected from fire there is a -2 penalty to damage. The blade is not considered a magic weapon and will ignite combustible materials.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell3_flame_charm"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Flame Charm</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">10 Feet</span>
|
||
<span class="ds-prepred-spell-duration">2 Rounds/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell imbues a flame with the ability to charm. The flame
|
||
flickers and dances, entrancing all those in a 10 foot radius. All those who fail a save (Spell) stand
|
||
mesmerized and motionless. If their view of the flame is blocked or disrupted, the dweomer is broken. The
|
||
spell must be cast on an existing fire. If the spell Suggestion is cast while Fire Charmed , the ensorcelled
|
||
subject(s) save versus Spell at a -3 penalty. A standard- sized campfire causes 1d4 points of damage.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Flame Charm}} {{Level=3}} {{Range=10 Feet}} {{Duration=2 Rounds/Level}} {{Description=This spell imbues a flame with the ability to charm. The flame flickers and dances, entrancing all those in a 10 foot radius. All those who fail a save (Spell) stand mesmerized and motionless. If their view of the flame is blocked or disrupted, the dweomer is broken. The spell must be cast on an existing fire. If the spell Suggestion is cast while Fire Charmed , the ensorcelled subject(s) save versus Spell at a -3 penalty. A standard- sized campfire causes 1d4 points of damage.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell4_flash_inferno"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Flash Inferno✦</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">40 Feet</span>
|
||
<span class="ds-prepred-spell-duration">1 Round</span>
|
||
<span class="ds-prepred-spell-description">This spell causes a 10x10 feet area within range to explode in
|
||
flames. The fire ignites flammable materials and inflicts 1d4 points of fire damage per level within the
|
||
area of effect.<br><br>Flash Freeze , the reverse of Flash Inferno , may be used to extinguish normal fires
|
||
in the same 10x10 area and cause 1d4 points of cold damage per level.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Flash Inferno✦}} {{Level=4}} {{Range=40 Feet}} {{Duration=1 Round}} {{Description=This spell causes a 10x10 feet area within range to explode in flames. The fire ignites flammable materials and inflicts 1d4 points of fire damage per level within the area of effect.<br><br>Flash Freeze , the reverse of Flash Inferno , may be used to extinguish normal fires in the same 10x10 area and cause 1d4 points of cold damage per level.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell4_flash_freeze"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Flash Freeze†</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">40 Feet</span>
|
||
<span class="ds-prepred-spell-duration">1 Round</span>
|
||
<span class="ds-prepred-spell-description">Extinguishes fires in a 10x10 area and inflicts 1d4 cold damage per
|
||
caster level.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Flash Freeze†}} {{Level=4}} {{Range=40 Feet}} {{Duration=1 Round}} {{Description=Extinguishes fires in a 10x10 area and inflicts 1d4 cold damage per caster level.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell2_fungus_shape"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Fungus Shape</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">6 Turns/1 Turn per Level</span>
|
||
<span class="ds-prepred-spell-description">By means of this spell, the caster transmutes into a large mushroom
|
||
or patch of mix-colored mold. Close inspection will not reveal that the fungus or mold is a magically
|
||
concealed humanoid. To all normal observation, the caster is a fungus or mold. While in fungal form, the
|
||
caster can see everything around him or her. The spell includes the transmutation of all equipment and
|
||
clothing. At any time, the caster may terminate the spell and undertake full action the same round.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Fungus Shape}} {{Level=2}} {{Range=0}} {{Duration=6 Turns/1 Turn per Level}} {{Description=By means of this spell, the caster transmutes into a large mushroom or patch of mix-colored mold. Close inspection will not reveal that the fungus or mold is a magically concealed humanoid. To all normal observation, the caster is a fungus or mold. While in fungal form, the caster can see everything around him or her. The spell includes the transmutation of all equipment and clothing. At any time, the caster may terminate the spell and undertake full action the same round.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell4_hallucinatory_forest"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Hallucinatory Forest</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">30 Feet</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">Through this spell the caster creates an illusion over a specific
|
||
area. The terrain appears, smells, and sounds exactly as determined by the caster. Dispel Magic also
|
||
dismisses the illusion. The caster may change a 10x10 foot area (per level). If cast by a druid, enchanted
|
||
woodland creatures such as dryads, brownies, nymphs, pixies, satyrs, etc., will recognize the truth of the
|
||
illusion. The spell ends if an intelligent being contacts the terrain.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Hallucinatory Forest}} {{Level=4}} {{Range=30 Feet}} {{Duration=See below}} {{Description=Through this spell the caster creates an illusion over a specific area. The terrain appears, smells, and sounds exactly as determined by the caster. Dispel Magic also dismisses the illusion. The caster may change a 10x10 foot area (per level). If cast by a druid, enchanted woodland creatures such as dryads, brownies, nymphs, pixies, satyrs, etc., will recognize the truth of the illusion. The spell ends if an intelligent being contacts the terrain.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell2_heat_metal"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Heat Metal✦</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">40 Feet</span>
|
||
<span class="ds-prepred-spell-duration">7 Rounds</span>
|
||
<span class="ds-prepred-spell-description">Heat Metal, or the reverse Freeze Metal, changes the temperature of
|
||
metal and causes damage to opponents. A druid can affect a number of medium-sized targets commensurate with
|
||
his/her experience level. All those in metal armor, equipment, or using metal weapons, are
|
||
affected.<br><br>Heat Metal damage may (1 on d6) include additional burn affects and conditions, subject to
|
||
the discretion of the Maze Controller. These include: 1) Extremities: Unusable for 2d4 days, 2) Body:
|
||
Moderate-to-severe burns and bedridden for 1d4 days, 3) Head: Severe burns and unconscious for 1d4+1
|
||
turns.<br><br>The reverse of the spell, Freeze Metal , has similar effects. The freezing damage of this
|
||
version affects small body parts, that, at the Maze Controller's discretion, require amputation (fingers,
|
||
ears, toes, nose, etc.). Heat Metal and Freeze Metal Charisma penalties may apply.<br><br>This spell may be
|
||
negated by spells or magical items that ward against heat or cold. Proximity to sources of heat or cold,
|
||
magical or mundane, may dampen the spell effectiveness, subject to the Maze Controller. The two versions of
|
||
this spell counter each other. Consult the chart below to determine the spell's effects over the seven round
|
||
duration:<br><br>Round Heat/Freeze Metal Damage (HP) 1 Warm/Cool 0 2 Hot/Cold 1d4 3-5 Searing/Freezing 2d4 6
|
||
Hot/Cold 1d4 7 Warm/Cool 0</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Heat Metal✦}} {{Level=2}} {{Range=40 Feet}} {{Duration=7 Rounds}} {{Description=Heat Metal, or the reverse Freeze Metal, changes the temperature of metal and causes damage to opponents. A druid can affect a number of medium-sized targets commensurate with his/her experience level. All those in metal armor, equipment, or using metal weapons, are affected.<br><br>Heat Metal damage may (1 on d6) include additional burn affects and conditions, subject to the discretion of the Maze Controller. These include: 1) Extremities: Unusable for 2d4 days, 2) Body: Moderate-to-severe burns and bedridden for 1d4 days, 3) Head: Severe burns and unconscious for 1d4+1 turns.<br><br>The reverse of the spell, Freeze Metal , has similar effects. The freezing damage of this version affects small body parts, that, at the Maze Controller's discretion, require amputation (fingers, ears, toes, nose, etc.). Heat Metal and Freeze Metal Charisma penalties may apply.<br><br>This spell may be negated by spells or magical items that ward against heat or cold. Proximity to sources of heat or cold, magical or mundane, may dampen the spell effectiveness, subject to the Maze Controller. The two versions of this spell counter each other. Consult the chart below to determine the spell's effects over the seven round duration:<br><br>Round Heat/Freeze Metal Damage (HP) 1 Warm/Cool 0 2 Hot/Cold 1d4 3-5 Searing/Freezing 2d4 6 Hot/Cold 1d4 7 Warm/Cool 0}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell2_freeze_metal"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Freeze Metal†</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">40 Feet</span>
|
||
<span class="ds-prepred-spell-duration">7 Rounds</span>
|
||
<span class="ds-prepred-spell-description">Causes metal objects or armor to freeze, dealing cold damage and
|
||
risking frostbite or limb loss (at DM discretion).</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Freeze Metal†}} {{Level=2}} {{Range=40 Feet}} {{Duration=7 Rounds}} {{Description=Causes metal objects or armor to freeze, dealing cold damage and risking frostbite or limb loss (at DM discretion).}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell1_hernes_blessing"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Herne's Blessing</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">4 Rounds/1 Round per Level</span>
|
||
<span class="ds-prepred-spell-description">By means of this spell, a druid calls forth the blessing of Herne,
|
||
Lord of the Hunt. Herne's Blessing provides a +2 armor class bonus against arrow and spear attacks as well
|
||
as a -1 reduction against damage caused by these weapons (to a minimum of 1 point of damage).</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Herne's Blessing}} {{Level=1}} {{Range=0}} {{Duration=4 Rounds/1 Round per Level}} {{Description=By means of this spell, a druid calls forth the blessing of Herne, Lord of the Hunt. Herne's Blessing provides a +2 armor class bonus against arrow and spear attacks as well as a -1 reduction against damage caused by these weapons (to a minimum of 1 point of damage).}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell3_hold_animals"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Hold Animals</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">20 Feet</span>
|
||
<span class="ds-prepred-spell-duration">2 Rounds/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell allows a druid to paralyze normal or giant animals for
|
||
the duration of the spell to a maximum of 400 pounds per level of the caster. A saving throw modifier
|
||
(Spell) is applied subject to the number of targets: 3-4 animals (no modifier), 2 (-1), and 1 (-2). Undead
|
||
animals are unaffected by the spell as well as those with immunity to mind-influencing spells.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Hold Animals}} {{Level=3}} {{Range=20 Feet}} {{Duration=2 Rounds/Level}} {{Description=This spell allows a druid to paralyze normal or giant animals for the duration of the spell to a maximum of 400 pounds per level of the caster. A saving throw modifier (Spell) is applied subject to the number of targets: 3-4 animals (no modifier), 2 (-1), and 1 (-2). Undead animals are unaffected by the spell as well as those with immunity to mind-influencing spells.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell4_hold_plant"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Hold Plant</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">10 Feet</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell immobilizes all fungus and plant life in a 30x30 radius,
|
||
or a maximum of four plant or fungus- based beings. Intelligent plants or fungi, receive a saving throw
|
||
(Spell) to negate the effect. A saving throw modifier (Spell) is applied subject to the number of targets:
|
||
3-4 plants (no modifier), 2 (-1), and 1 (-2).</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Hold Plant}} {{Level=4}} {{Range=10 Feet}} {{Duration=1 Round/Level}} {{Description=This spell immobilizes all fungus and plant life in a 30x30 radius, or a maximum of four plant or fungus- based beings. Intelligent plants or fungi, receive a saving throw (Spell) to negate the effect. A saving throw modifier (Spell) is applied subject to the number of targets: 3-4 plants (no modifier), 2 (-1), and 1 (-2).}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell4_ice_storm"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Ice Storm</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">See below</span>
|
||
<span class="ds-prepred-spell-duration">1 Round</span>
|
||
<span class="ds-prepred-spell-description">Through this spell the caster's calls forth great hailstones for
|
||
one round. The Ice Storm deals 3d10 points damage to every creature in a 40x40 foot area. As an alternative,
|
||
the spell may call a Sleet Storm in a 80x80 foot radius. Movement within the area of effect is halved with a
|
||
1-3 on d6 chance of falling prone.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Ice Storm}} {{Level=4}} {{Range=See below}} {{Duration=1 Round}} {{Description=Through this spell the caster's calls forth great hailstones for one round. The Ice Storm deals 3d10 points damage to every creature in a 40x40 foot area. As an alternative, the spell may call a Sleet Storm in a 80x80 foot radius. Movement within the area of effect is halved with a 1-3 on d6 chance of falling prone.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell5_insect_plague_greater"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Insect Plague (Greater)</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">30 Feet</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell calls forth a plague of locusts (40x40x10 foot radius).
|
||
The swarm obscures vision and inflicts targets one hit point of damage per round. All those of two or fewer
|
||
hit dice automatically flee the swarm. All those<br><br>of three to five hit dice check morale or flee.
|
||
Fleeing targets move at their fastest movement rate until they are 50 feet from the Insect Plague. The swarm
|
||
may be neutralized by heavy smoke or fire. At the time of casting, the cleric or druid must designate the
|
||
center of the stationary plague. Once the spell expires, the insects disperse. Although less effective, the
|
||
spell may be cast underground (those of two or fewer hit dice are allowed a morale check).</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Insect Plague (Greater)}} {{Level=5}} {{Range=30 Feet}} {{Duration=1 Turn/Level}} {{Description=This spell calls forth a plague of locusts (40x40x10 foot radius). The swarm obscures vision and inflicts targets one hit point of damage per round. All those of two or fewer hit dice automatically flee the swarm. All those<br><br>of three to five hit dice check morale or flee. Fleeing targets move at their fastest movement rate until they are 50 feet from the Insect Plague. The swarm may be neutralized by heavy smoke or fire. At the time of casting, the cleric or druid must designate the center of the stationary plague. Once the spell expires, the insects disperse. Although less effective, the spell may be cast underground (those of two or fewer hit dice are allowed a morale check).}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell3_insect_plague_lesser"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Insect Plague (Lesser)</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">30 Feet</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">Upon casting this spell, a plague of stinging insects emerges, and
|
||
engulfs, a single target. They inflict two hit points of damage per round and the target cannot act except
|
||
to flee. The caster can command the swarm to follow, or switch targets, but this requires one round to
|
||
disengage from one opponent and attack another. The plague moves at a rate 20 feet per round. Although less
|
||
effective, the spell may be cast underground (the target is allowed a morale check).</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Insect Plague (Lesser)}} {{Level=3}} {{Range=30 Feet}} {{Duration=1 Round/Level}} {{Description=Upon casting this spell, a plague of stinging insects emerges, and engulfs, a single target. They inflict two hit points of damage per round and the target cannot act except to flee. The caster can command the swarm to follow, or switch targets, but this requires one round to disengage from one opponent and attack another. The plague moves at a rate 20 feet per round. Although less effective, the spell may be cast underground (the target is allowed a morale check).}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell1_invisibility_animal"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Invisibility (Animal)</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn/1 Round per Level</span>
|
||
<span class="ds-prepred-spell-description">A druid may turn a willing animal invisible. All other aspects of
|
||
this spell are the same as Invisibility.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Invisibility (Animal)}} {{Level=1}} {{Range=Touch}} {{Duration=1 Turn/1 Round per Level}} {{Description=A druid may turn a willing animal invisible. All other aspects of this spell are the same as Invisibility.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell1_locate_animal"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Locate Animal</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">Through this spell, a druid may detect whether a specific animal
|
||
type is in range. The range is 20 feet wide and 20 feet long per level in one direction only. The druid may
|
||
face a different direction each round.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Locate Animal}} {{Level=1}} {{Range=0}} {{Duration=1 Round/Level}} {{Description=Through this spell, a druid may detect whether a specific animal type is in range. The range is 20 feet wide and 20 feet long per level in one direction only. The druid may face a different direction each round.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell4_lower_water"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Lower Water</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">10 Feet/10 Feet per Level</span>
|
||
<span class="ds-prepred-spell-duration">5 Rounds/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell allows the caster to lower 11,000 square feet of water
|
||
per level for the spell's duration.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Lower Water}} {{Level=4}} {{Range=10 Feet/10 Feet per Level}} {{Duration=5 Rounds/Level}} {{Description=This spell allows the caster to lower 11,000 square feet of water per level for the spell's duration.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell2_mist_of_the_glen"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Mist of the Glen</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">N/A</span>
|
||
<span class="ds-prepred-spell-duration">3 Rounds/Level</span>
|
||
<span class="ds-prepred-spell-description">A stationary mist eerily forms and shrouds the caster from sight,
|
||
including darkvision. Mist of the Glen covers a 10x10x10 foot area for four rounds per level of the caster.
|
||
The caster may see through the mist and, while within, cast spells one level higher. A strong wind scatters
|
||
the fog and reduces the spell's duration by 25%. While the caster remains in the Mist of the Glen , all
|
||
ranged and melee attacks are at -2.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Mist of the Glen}} {{Level=2}} {{Range=N/A}} {{Duration=3 Rounds/Level}} {{Description=A stationary mist eerily forms and shrouds the caster from sight, including darkvision. Mist of the Glen covers a 10x10x10 foot area for four rounds per level of the caster. The caster may see through the mist and, while within, cast spells one level higher. A strong wind scatters the fog and reduces the spell's duration by 25%. While the caster remains in the Mist of the Glen , all ranged and melee attacks are at -2.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell3_mold_to_moldmen"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Mold to Moldmen</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">50 Feet</span>
|
||
<span class="ds-prepred-spell-duration">4 Turns</span>
|
||
<span class="ds-prepred-spell-description">Through this ritual spell, a druid transforms moldy vegetable
|
||
matter into 1d4 HD: 1 moldmen (+1 per level). Moldmen are also called vegepygmies. The moldmen are subject
|
||
to the commands of the caster. At the end of the spell's duration, moldmen flee the caster at their highest
|
||
movement rate. The statistics for moldmen are as follows: AL: N, MV: 20, AC: 4, HD: 1, HP: 4, #AT: 1, DMG:
|
||
1d6, SV: F1, ML: 8.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Mold to Moldmen}} {{Level=3}} {{Range=50 Feet}} {{Duration=4 Turns}} {{Description=Through this ritual spell, a druid transforms moldy vegetable matter into 1d4 HD: 1 moldmen (+1 per level). Moldmen are also called vegepygmies. The moldmen are subject to the commands of the caster. At the end of the spell's duration, moldmen flee the caster at their highest movement rate. The statistics for moldmen are as follows: AL: N, MV: 20, AC: 4, HD: 1, HP: 4, #AT: 1, DMG: 1d6, SV: F1, ML: 8.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell2_moldskin"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Moldskin</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">4 Rounds/1 Round per Level</span>
|
||
<span class="ds-prepred-spell-description">Moldskin toughens skin through the formation of a hard leathery
|
||
fungal growth. The caster can use the spell on him/herself or another willing target. The effect improves
|
||
the target's armor class by 1 and provides +1 on all saving throws. Moldskin covers the face and makes the
|
||
bearer of the spell impervious to the effects of spores, molds, gases, drowning, oxygen deprivation, and
|
||
funguses. Spore, mold, plant, or fungus-based monsters will not attack the bearer of Moldskin.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Moldskin}} {{Level=2}} {{Range=Touch}} {{Duration=4 Rounds/1 Round per Level}} {{Description=Moldskin toughens skin through the formation of a hard leathery fungal growth. The caster can use the spell on him/herself or another willing target. The effect improves the target's armor class by 1 and provides +1 on all saving throws. Moldskin covers the face and makes the bearer of the spell impervious to the effects of spores, molds, gases, drowning, oxygen deprivation, and funguses. Spore, mold, plant, or fungus-based monsters will not attack the bearer of Moldskin.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell3_neutralize_poison"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Neutralize Poison✦</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">This spell neutralizes poison in a living being or poison placed on
|
||
an object. Neutralize Poison does not reverse the effects of poison (such as damage to hit points). The
|
||
caster may also neutralize a poisonous creature (such as a snake) with a successful touch attack.<br><br>The
|
||
opposite of the spell, Poison (useable by clerics, druids, and monks), requires a successful touch attack.
|
||
If the target fails a save versus Death, it dies.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Neutralize Poison✦}} {{Level=3}} {{Range=Touch}} {{Duration=Permanent}} {{Description=This spell neutralizes poison in a living being or poison placed on an object. Neutralize Poison does not reverse the effects of poison (such as damage to hit points). The caster may also neutralize a poisonous creature (such as a snake) with a successful touch attack.<br><br>The opposite of the spell, Poison (useable by clerics, druids, and monks), requires a successful touch attack. If the target fails a save versus Death, it dies.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell3_poison"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Poison†</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">On a successful touch attack, kills the target unless they save
|
||
versus Death. Can also poison a creature or object.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Poison†}} {{Level=3}} {{Range=Touch}} {{Duration=Permanent}} {{Description=On a successful touch attack, kills the target unless they save versus Death. Can also poison a creature or object.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell5_part_water"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Part Water</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">20 Feet/Level</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell parts a body of water (river, lake, etc.) ten feet wide
|
||
to a maximum length of 300 feet. The caster can end the spell at anytime prior to its full duration and
|
||
destroy pursuers following the spell's path.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Part Water}} {{Level=5}} {{Range=20 Feet/Level}} {{Duration=1 Turn/Level}} {{Description=This spell parts a body of water (river, lake, etc.) ten feet wide to a maximum length of 300 feet. The caster can end the spell at anytime prior to its full duration and destroy pursuers following the spell's path.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell1_pass_without_trace"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Pass without Trace</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell allows caster, or a recipient, to move through terrain
|
||
without any sign of passage (i.e. footprints). Tracking the subject is impossible. However, any area passed
|
||
through will radiate faint magic for six turns.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Pass without Trace}} {{Level=1}} {{Range=Touch}} {{Duration=1 Turn/Level}} {{Description=This spell allows caster, or a recipient, to move through terrain without any sign of passage (i.e. footprints). Tracking the subject is impossible. However, any area passed through will radiate faint magic for six turns.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell3_plant_growth"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Plant Growth</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">20 feet</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">This spell causes vegetation (grass, briar, bush, creeper, thistle,
|
||
tree, vine, etc.) within a 20x20 area of effect (plus 5x5 feet per level) to thicken, entwine, and become
|
||
impenetrable. The density of the vegetation reduces movement to 1/4. The spell requires the presence of
|
||
existing vegetation to manifest and the effect lasts until Dispel Magic is cast. Plant-based creatures are
|
||
unaffected by the spell.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Plant Growth}} {{Level=3}} {{Range=20 feet}} {{Duration=See below}} {{Description=This spell causes vegetation (grass, briar, bush, creeper, thistle, tree, vine, etc.) within a 20x20 area of effect (plus 5x5 feet per level) to thicken, entwine, and become impenetrable. The density of the vegetation reduces movement to 1/4. The spell requires the presence of existing vegetation to manifest and the effect lasts until Dispel Magic is cast. Plant-based creatures are unaffected by the spell.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell1_predict_weather"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Predict Weather</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">12 Turns</span>
|
||
<span class="ds-prepred-spell-description">The caster can use this ritual spell to divine weather in a five
|
||
mile radius. The caster can foresee the weather up to 12 turns away per level of the caster. The spell
|
||
grants information about weather conditions (wind, hail, rain, snow, sleet, temperature, etc.). The spell
|
||
cannot predict the exact locations of hurricanes, tornadoes, lightning, etc.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Predict Weather}} {{Level=1}} {{Range=0}} {{Duration=12 Turns}} {{Description=The caster can use this ritual spell to divine weather in a five mile radius. The caster can foresee the weather up to 12 turns away per level of the caster. The spell grants information about weather conditions (wind, hail, rain, snow, sleet, temperature, etc.). The spell cannot predict the exact locations of hurricanes, tornadoes, lightning, etc.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell2_produce_flame"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Produce Flame</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">2 Rounds/Level</span>
|
||
<span class="ds-prepred-spell-description">Flames burst forth as the caster's opens his hand (for 2 rounds per
|
||
level or until dismissed). The flames do not harm the caster or his/her equipment. However, they ignite
|
||
other flammables. The flames provide illumination as a torch (30 feet) but can also be thrown at targets up
|
||
to 40 feet away (1d2+1 damage per level with a successful attack roll), and will ignite flammable materials
|
||
in a two foot radius.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Produce Flame}} {{Level=2}} {{Range=0}} {{Duration=2 Rounds/Level}} {{Description=Flames burst forth as the caster's opens his hand (for 2 rounds per level or until dismissed). The flames do not harm the caster or his/her equipment. However, they ignite other flammables. The flames provide illumination as a torch (30 feet) but can also be thrown at targets up to 40 feet away (1d2+1 damage per level with a successful attack roll), and will ignite flammable materials in a two foot radius.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell3_protection_from_fire"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Protection from Fire</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">Through this spell, the caster (or a recipient) is rendered immune
|
||
to damage from normal fire. The caster is also provided immunity to magical fire for an unlimited period or
|
||
until s/he absorbs 12 hit points of damage (per level). Once the damage has been absorbed, the spell
|
||
ends.<br><br>If cast on another being, the duration is one turn per level of the caster. The recipient
|
||
receives immunity to all non-magical fire and takes only half damage from magical fire. The recipient also
|
||
saves against magical fire with a +4 bonus.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Protection from Fire}} {{Level=3}} {{Range=Touch}} {{Duration=See below}} {{Description=Through this spell, the caster (or a recipient) is rendered immune to damage from normal fire. The caster is also provided immunity to magical fire for an unlimited period or until s/he absorbs 12 hit points of damage (per level). Once the damage has been absorbed, the spell ends.<br><br>If cast on another being, the duration is one turn per level of the caster. The recipient receives immunity to all non-magical fire and takes only half damage from magical fire. The recipient also saves against magical fire with a +4 bonus.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell4_protection_from_lightning"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Protection from Lightning</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">Through this spell, the caster (or a recipient) is rendered immune
|
||
to damage from normal electricity. The caster is provided immunity to magic electricity, regardless of
|
||
source, for an unlimited period or until s/he absorbs 12 hit points of damage (per level). Once the damage
|
||
has been absorbed, the spell ends. If cast on another subject, the duration is one turn per caster level.
|
||
The recipient is immune to all non-magical lighting. Further, the subject takes only half damage from
|
||
magical or other lightning. The recipient also saves against magical lightning with a +4 bonus.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Protection from Lightning}} {{Level=4}} {{Range=Touch}} {{Duration=See below}} {{Description=Through this spell, the caster (or a recipient) is rendered immune to damage from normal electricity. The caster is provided immunity to magic electricity, regardless of source, for an unlimited period or until s/he absorbs 12 hit points of damage (per level). Once the damage has been absorbed, the spell ends. If cast on another subject, the duration is one turn per caster level. The recipient is immune to all non-magical lighting. Further, the subject takes only half damage from magical or other lightning. The recipient also saves against magical lightning with a +4 bonus.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell1_purify_water"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Purify Water✦</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">10 Feet</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">This spell decontaminates poisoned or undrinkable water for
|
||
consumption. The druid can convert one cubic foot of water per caster level. Contaminate Water , the reverse
|
||
of the spell, contaminates drinkable water. A caster can use Contaminate Water to make holy or unholy water
|
||
ineffective.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Purify Water✦}} {{Level=1}} {{Range=10 Feet}} {{Duration=Permanent}} {{Description=This spell decontaminates poisoned or undrinkable water for consumption. The druid can convert one cubic foot of water per caster level. Contaminate Water , the reverse of the spell, contaminates drinkable water. A caster can use Contaminate Water to make holy or unholy water ineffective.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell1_contaminate_water"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Contaminate Water†</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">10 Feet</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">Pollutes water, making it undrinkable. Can render holy or unholy
|
||
water ineffective.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Contaminate Water†}} {{Level=1}} {{Range=10 Feet}} {{Duration=Permanent}} {{Description=Pollutes water, making it undrinkable. Can render holy or unholy water ineffective.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell3_pyrotechnics"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Pyrotechnics✦</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">160 Feet</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">Subject to the caster's wishes, Pyrotechnics can either transform a
|
||
fire into a brilliant display of fireworks or a cloud of thick black smoke. Cryotechnics is the reverse of
|
||
the spell. Fireworks: This iteration results in a momentary burst of aerial pyrotechnics. The effect blinds
|
||
all those within 120 feet. The display is fully ten times the magnitude of the source flame. Only those with
|
||
a clear line of sight are affected. The reverse of the spell, Cryotechnics , causes a burst of blinding cold
|
||
energy that extinguishes a fire and sends explosive, colorful, ice shards into the air with the same area
|
||
and effect.<br><br>Smoke Cloud: This version causes thick black smoke to pour from a fire. The smoke
|
||
obscures all vision in a 20 foot radius and lingers for one round per caster level. The reverse of the
|
||
spell, Cryotechnics , extinguishes the fire and causes a thick, freezing, icy mist with the same area and
|
||
effect.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Pyrotechnics✦}} {{Level=3}} {{Range=160 Feet}} {{Duration=See below}} {{Description=Subject to the caster's wishes, Pyrotechnics can either transform a fire into a brilliant display of fireworks or a cloud of thick black smoke. Cryotechnics is the reverse of the spell. Fireworks: This iteration results in a momentary burst of aerial pyrotechnics. The effect blinds all those within 120 feet. The display is fully ten times the magnitude of the source flame. Only those with a clear line of sight are affected. The reverse of the spell, Cryotechnics , causes a burst of blinding cold energy that extinguishes a fire and sends explosive, colorful, ice shards into the air with the same area and effect.<br><br>Smoke Cloud: This version causes thick black smoke to pour from a fire. The smoke obscures all vision in a 20 foot radius and lingers for one round per caster level. The reverse of the spell, Cryotechnics , extinguishes the fire and causes a thick, freezing, icy mist with the same area and effect.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell3_cryotechnics"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Cryotechnics†</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">160 Feet</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">Either extinguishes a fire with freezing mist or creates a blinding
|
||
cold burst, launching icy shards. Mimics Pyrotechnics.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Cryotechnics†}} {{Level=3}} {{Range=160 Feet}} {{Duration=See below}} {{Description=Either extinguishes a fire with freezing mist or creates a blinding cold burst, launching icy shards. Mimics Pyrotechnics.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell2_ray_of_decay"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Ray of Decay</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">40 Feet</span>
|
||
<span class="ds-prepred-spell-duration">Instantaneous</span>
|
||
<span class="ds-prepred-spell-description">Through this spell a druid directs a beam of green energy at a
|
||
single target. The druid must have line-of-sight. The Ray of Decay dehydrates and sickens exposed flesh and
|
||
infects the victim with mold. The target takes 1d8 points of damage (save versus Death for half damage). If
|
||
the first save is failed, the target takes an additional 1d4 the next round. If the target saves the first
|
||
time, s/ he takes 1d2 the second round.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Ray of Decay}} {{Level=2}} {{Range=40 Feet}} {{Duration=Instantaneous}} {{Description=Through this spell a druid directs a beam of green energy at a single target. The druid must have line-of-sight. The Ray of Decay dehydrates and sickens exposed flesh and infects the victim with mold. The target takes 1d8 points of damage (save versus Death for half damage). If the first save is failed, the target takes an additional 1d4 the next round. If the target saves the first time, s/ he takes 1d2 the second round.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell1_read_magic_divine"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Read Magic (Divine)</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">N/A</span>
|
||
<span class="ds-prepred-spell-duration">2 Rounds/Level</span>
|
||
<span class="ds-prepred-spell-description">By means of Read Magic (Divine) , a cleric, druid, or monk can
|
||
decipher unintelligible divine magical writing (on scrolls, books, weapons, etc.). The spell does not
|
||
activate magic on an item, but it can if cursed. Once cast, the priest can read that specific item at-will
|
||
without further need for Read Magic (Divine).</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Read Magic (Divine)}} {{Level=1}} {{Range=N/A}} {{Duration=2 Rounds/Level}} {{Description=By means of Read Magic (Divine) , a cleric, druid, or monk can decipher unintelligible divine magical writing (on scrolls, books, weapons, etc.). The spell does not activate magic on an item, but it can if cursed. Once cast, the priest can read that specific item at-will without further need for Read Magic (Divine).}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell7_reincarnate"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Reincarnate</span>
|
||
<span class="ds-prepred-spell-level">7</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">Through this spell the caster raises a player character from the
|
||
dead in a different body. This transformation heals all afflictions and ailments.<br><br>The spell functions
|
||
regardless of the condition of the deceased. The spell requires a portion of existent bodily remains.
|
||
Reincarnate creates a new, healthy, young adult body. The options on the table below provide playable
|
||
races.<br><br>Roll 1d6 to select the left (1-3) or right column (4-6). Then roll 1d6 to determine experience
|
||
level (cannot exceed the original PC). A reincarnated PC must play the new player character race or
|
||
retire:<br><br>1d12 Incarnation 1 Orc 1 Werewolf 2 Half-Orc 2 Pixie 3 Centaur 3 Bugbear 4 Neanderthal 4
|
||
Half-Elf 5 Kobold 5 Human 6 Lizardman 6 Elf 7 Goblin 7 Dwarf 8 Hobgoblin 8 Dryad 9 Orc 9 Half-Orc 10 Ogre 10
|
||
Cyclopsman 11 Bullywug 11 Ogre Mage 12 Player's Choice 12 Player's Choice</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Reincarnate}} {{Level=7}} {{Range=0}} {{Duration=Permanent}} {{Description=Through this spell the caster raises a player character from the dead in a different body. This transformation heals all afflictions and ailments.<br><br>The spell functions regardless of the condition of the deceased. The spell requires a portion of existent bodily remains. Reincarnate creates a new, healthy, young adult body. The options on the table below provide playable races.<br><br>Roll 1d6 to select the left (1-3) or right column (4-6). Then roll 1d6 to determine experience level (cannot exceed the original PC). A reincarnated PC must play the new player character race or retire:<br><br>1d12 Incarnation 1 Orc 1 Werewolf 2 Half-Orc 2 Pixie 3 Centaur 3 Bugbear 4 Neanderthal 4 Half-Elf 5 Kobold 5 Human 6 Lizardman 6 Elf 7 Goblin 7 Dwarf 8 Hobgoblin 8 Dryad 9 Orc 9 Half-Orc 10 Ogre 10 Cyclopsman 11 Bullywug 11 Ogre Mage 12 Player's Choice 12 Player's Choice}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell6_shield_of_the_sylvan"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Shield of the Sylvan</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">Caster</span>
|
||
<span class="ds-prepred-spell-duration">3 Rounds/Level</span>
|
||
<span class="ds-prepred-spell-description">The caster conjures a semi-translucent green energy shield with a
|
||
20x20 foot radius that moves with the<br><br>caster. The shield blocks all weapons made of wood, or weapons
|
||
with wooden shafts or hafts (including axes, hammers, spears, crossbow bolts and arrows, etc.) resulting in
|
||
no damage for the duration of the spell.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Shield of the Sylvan}} {{Level=6}} {{Range=Caster}} {{Duration=3 Rounds/Level}} {{Description=The caster conjures a semi-translucent green energy shield with a 20x20 foot radius that moves with the<br><br>caster. The shield blocks all weapons made of wood, or weapons with wooden shafts or hafts (including axes, hammers, spears, crossbow bolts and arrows, etc.) resulting in no damage for the duration of the spell.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell1_shillelagh"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Shillelagh</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">The caster enchants his or her own non-magical club or knobby
|
||
quarterstaff as a +1 magical weapon (to hit only) for the duration of the spell. The weapon scores 2d4
|
||
damage. The caster must wield the weapon.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Shillelagh}} {{Level=1}} {{Range=Touch}} {{Duration=1 Round/Level}} {{Description=The caster enchants his or her own non-magical club or knobby quarterstaff as a +1 magical weapon (to hit only) for the duration of the spell. The weapon scores 2d4 damage. The caster must wield the weapon.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell2_snake_charm"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Snake Charm</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">30 Feet</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">This spell makes snakes apathetic to the caster and his or her
|
||
companions. A cleric or druid influences a number of snakes equal to the caster's level for 1d4+1 turns. A
|
||
Level 7 Cleric therefore affects seven hit dice (seven snakes of one hit die or two snakes of three hit
|
||
dice, etc.). Snakes openly hostile to the caster are more difficult to influence. Hostile snakes, or those
|
||
engaged in combat, are charmed for only 1d4+1 rounds.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Snake Charm}} {{Level=2}} {{Range=30 Feet}} {{Duration=See below}} {{Description=This spell makes snakes apathetic to the caster and his or her companions. A cleric or druid influences a number of snakes equal to the caster's level for 1d4+1 turns. A Level 7 Cleric therefore affects seven hit dice (seven snakes of one hit die or two snakes of three hit dice, etc.). Snakes openly hostile to the caster are more difficult to influence. Hostile snakes, or those engaged in combat, are charmed for only 1d4+1 rounds.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell3_snare"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Snare</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">Permanent until Triggered</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">This spell creates a strong, magical snare-trap. The spell requires
|
||
material such as a rope, cord, or vine, etc. When Snare is cast, the cord-like object blends into its
|
||
environment (only 1 on d10 chance to detect by mundane means). The caster ties the rope in a loop. The loop
|
||
tightens around the limb(s) of any creature that steps into it. The caster can fasten the looped Snare to a
|
||
thin tree (if available). The spell enchants the tree to spring when triggered. The trap scores 1d6 points
|
||
of damage and dangles the target in the air. If a tree is unavailable, the snare snaps tight around the
|
||
target's ankle but scores no damage. Snare is strengthened magically and constrains its target a for a
|
||
period of 12 hours. A trapped creature must possess giant strength (19+) to break the bond. The bonds loosen
|
||
as the spell dissipates, so after four hours Strength 18 is required, and after eight hours Strength 16 will
|
||
break the trap, etc.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Snare}} {{Level=3}} {{Range=Permanent until Triggered}} {{Duration=See below}} {{Description=This spell creates a strong, magical snare-trap. The spell requires material such as a rope, cord, or vine, etc. When Snare is cast, the cord-like object blends into its environment (only 1 on d10 chance to detect by mundane means). The caster ties the rope in a loop. The loop tightens around the limb(s) of any creature that steps into it. The caster can fasten the looped Snare to a thin tree (if available). The spell enchants the tree to spring when triggered. The trap scores 1d6 points of damage and dangles the target in the air. If a tree is unavailable, the snare snaps tight around the target's ankle but scores no damage. Snare is strengthened magically and constrains its target a for a period of 12 hours. A trapped creature must possess giant strength (19+) to break the bond. The bonds loosen as the spell dissipates, so after four hours Strength 18 is required, and after eight hours Strength 16 will break the trap, etc.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell1_speak_with_animals"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Speak with Animals</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">30 Feet</span>
|
||
<span class="ds-prepred-spell-duration">2 Rounds/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell allows the caster to communicate with normal or giant
|
||
animals. The caster may query, and receive responses from, one specific animal type. The caster selects the
|
||
animal type when cast. The animal may, if the caster is friendly, offer a favor or service. If the animal is
|
||
unfriendly, it may demand help or food. The spell does not influence or make an animal more cooperative or
|
||
friendly.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Speak with Animals}} {{Level=1}} {{Range=30 Feet}} {{Duration=2 Rounds/Level}} {{Description=This spell allows the caster to communicate with normal or giant animals. The caster may query, and receive responses from, one specific animal type. The caster selects the animal type when cast. The animal may, if the caster is friendly, offer a favor or service. If the animal is unfriendly, it may demand help or food. The spell does not influence or make an animal more cooperative or friendly.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell4_speak_with_plants"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Speak with Plants</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">30 Feet</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">Through Speak with Plants the caster may communicate, albeit
|
||
awkwardly and primitively, with plants, beings, or monsters, that are plant-based. The caster may ask
|
||
questions and receive answers. The caster can also ask plants to clear an overgrown path. The spell does not
|
||
predispose plants or plant creatures to the caster. If the caster presents a friendly disposition, and a
|
||
plant creature desires aid, it may help or ask for a favor.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Speak with Plants}} {{Level=4}} {{Range=30 Feet}} {{Duration=1 Round/Level}} {{Description=Through Speak with Plants the caster may communicate, albeit awkwardly and primitively, with plants, beings, or monsters, that are plant-based. The caster may ask questions and receive answers. The caster can also ask plants to clear an overgrown path. The spell does not predispose plants or plant creatures to the caster. If the caster presents a friendly disposition, and a plant creature desires aid, it may help or ask for a favor.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell2_spore_cloud"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Spore Cloud</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">30 Feet</span>
|
||
<span class="ds-prepred-spell-duration">4 Rounds/1 Round per Level</span>
|
||
<span class="ds-prepred-spell-description">Spore Cloud , like the spell Stinking Cloud , creates a 20x20x20
|
||
foot cubed spore-based haze centered anywhere within range. The cloud makes those within helpless with
|
||
gagging and retching. This lasts as long as the target(s) remain in the choking cloud and for 1d4+1 rounds
|
||
after exiting. Any creature that succeeds on a save (Death) when leaving the cloud is unaffected for the
|
||
additional rounds.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Spore Cloud}} {{Level=2}} {{Range=30 Feet}} {{Duration=4 Rounds/1 Round per Level}} {{Description=Spore Cloud , like the spell Stinking Cloud , creates a 20x20x20 foot cubed spore-based haze centered anywhere within range. The cloud makes those within helpless with gagging and retching. This lasts as long as the target(s) remain in the choking cloud and for 1d4+1 rounds after exiting. Any creature that succeeds on a save (Death) when leaving the cloud is unaffected for the additional rounds.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell5_sticks_to_snakes"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Sticks to Snakes</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">30 Feet</span>
|
||
<span class="ds-prepred-spell-duration">2 Rounds/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell transforms as many mundane sticks to snakes as the
|
||
caster's level of experience. The snakes then attack as commanded. There is a 1-2 on d6 chance that a snake
|
||
is poisonous (save or die). When slain or at the conclusion of the spell, the snakes change back to sticks.
|
||
Snake statistics are as follows: AL: N, MV: 20, AC: 7, HD: 1, #AT: 1, DMG: 1d3, SV: F1, ML: 7.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Sticks to Snakes}} {{Level=5}} {{Range=30 Feet}} {{Duration=2 Rounds/Level}} {{Description=This spell transforms as many mundane sticks to snakes as the caster's level of experience. The snakes then attack as commanded. There is a 1-2 on d6 chance that a snake is poisonous (save or die). When slain or at the conclusion of the spell, the snakes change back to sticks. Snake statistics are as follows: AL: N, MV: 20, AC: 7, HD: 1, #AT: 1, DMG: 1d3, SV: F1, ML: 7.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell3_stone_shape"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Stone Shape</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">The caster, through this spell, can modify and shape an existing
|
||
stone for any purpose desired. The amount of stone shaped is 1x1x1 foot per caster level. The spell can only
|
||
create crude shapes (chests, coffers, doors, etc). Fine detail is impossible.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Stone Shape}} {{Level=3}} {{Range=Touch}} {{Duration=Permanent}} {{Description=The caster, through this spell, can modify and shape an existing stone for any purpose desired. The amount of stone shaped is 1x1x1 foot per caster level. The spell can only create crude shapes (chests, coffers, doors, etc). Fine detail is impossible.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell5_stone_tell"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Stone Tell</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn</span>
|
||
<span class="ds-prepred-spell-description">Stone Tell allows the caster to speak with stone. The stone can
|
||
communicate, albeit in basic garbled terms. The stone can reveal who or what it has seen, or who or what is
|
||
concealed near, under, or behind it. The stones can communicate descriptions, if asked. The caster can speak
|
||
with either worked or natural stone.<br><br>If a druid casts Stone Tell on a standing stone or henge stone,
|
||
s/he can see images through the stone in addition to rudimentary communication.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Stone Tell}} {{Level=5}} {{Range=Touch}} {{Duration=1 Turn}} {{Description=Stone Tell allows the caster to speak with stone. The stone can communicate, albeit in basic garbled terms. The stone can reveal who or what it has seen, or who or what is concealed near, under, or behind it. The stones can communicate descriptions, if asked. The caster can speak with either worked or natural stone.<br><br>If a druid casts Stone Tell on a standing stone or henge stone, s/he can see images through the stone in addition to rudimentary communication.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell4_summon_animals_i"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Summon Animals I</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">40 Feet/Level</span>
|
||
<span class="ds-prepred-spell-duration">3 Rounds/1 per Level</span>
|
||
<span class="ds-prepred-spell-description">This spell summons 1d8 normal or giant animals of 1 to 4 hit dice
|
||
within range of the spell. The Maze Controller determines available animal types by ecosystem.<br><br>The
|
||
druid can try to summon three animal types prior to spell failure. Summoned animals serve the caster for a
|
||
specific task. Tasks include combat, aid, or other purposes within their ability. The druid can dismiss the
|
||
summoned animals as desired.<br><br>Examples of 1-4 hit die animals include (but are not limited to)
|
||
Baboons, Badgers, Giant Killer Bees, Giant Fire Beetles, Giant Frogs, Crocodiles, Giant Flies, Giant Crab
|
||
Spiders, Wolves, Axe Beaks, Giant Badgers, Giant Carnivorous Beetles, Giant Boars, Mountain Lions, Giant
|
||
Crabs, Giant Hawks, Hyenas, Giant Gecko Lizards, Giant Black Widow Spiders, Black Bears, Panthers, Giant
|
||
Eagles, Giant Draco Lizards, Giant Scorpions, Giant Wasps, Giant Weasels, Giant Wolverines.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Summon Animals I}} {{Level=4}} {{Range=40 Feet/Level}} {{Duration=3 Rounds/1 per Level}} {{Description=This spell summons 1d8 normal or giant animals of 1 to 4 hit dice within range of the spell. The Maze Controller determines available animal types by ecosystem.<br><br>The druid can try to summon three animal types prior to spell failure. Summoned animals serve the caster for a specific task. Tasks include combat, aid, or other purposes within their ability. The druid can dismiss the summoned animals as desired.<br><br>Examples of 1-4 hit die animals include (but are not limited to) Baboons, Badgers, Giant Killer Bees, Giant Fire Beetles, Giant Frogs, Crocodiles, Giant Flies, Giant Crab Spiders, Wolves, Axe Beaks, Giant Badgers, Giant Carnivorous Beetles, Giant Boars, Mountain Lions, Giant Crabs, Giant Hawks, Hyenas, Giant Gecko Lizards, Giant Black Widow Spiders, Black Bears, Panthers, Giant Eagles, Giant Draco Lizards, Giant Scorpions, Giant Wasps, Giant Weasels, Giant Wolverines.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell5_summon_animals_ii"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Summon Animals II</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">60 Feet/Level</span>
|
||
<span class="ds-prepred-spell-duration">4 Rounds/1 per Level</span>
|
||
<span class="ds-prepred-spell-description">This spell is a stronger version of Summon Animal I. The caster can
|
||
summon 3d4 animals from 1 to 4 hit dice or 1d6 animals of 5 to 8 hit dice.<br><br>Examples of animals
|
||
between 5-8 hit dice include: Grizzly Bears, Giant Boring Beetles, Lions, Giant Hyenas, Giant Horned
|
||
Chameleon Lizards, Giant Pythons, Giant Ice Toads, Polar Bears, Large Crocodiles, Giant Tuatara Lizards,
|
||
Cave Bears, Giant Stag Beetles, Sabre Toothed Tigers, Giant Octopus, Mudhorns, or Great White Sharks.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Summon Animals II}} {{Level=5}} {{Range=60 Feet/Level}} {{Duration=4 Rounds/1 per Level}} {{Description=This spell is a stronger version of Summon Animal I. The caster can summon 3d4 animals from 1 to 4 hit dice or 1d6 animals of 5 to 8 hit dice.<br><br>Examples of animals between 5-8 hit dice include: Grizzly Bears, Giant Boring Beetles, Lions, Giant Hyenas, Giant Horned Chameleon Lizards, Giant Pythons, Giant Ice Toads, Polar Bears, Large Crocodiles, Giant Tuatara Lizards, Cave Bears, Giant Stag Beetles, Sabre Toothed Tigers, Giant Octopus, Mudhorns, or Great White Sharks.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell6_summon_animals_iii"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Summon Animals III</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">80 Feet/Level</span>
|
||
<span class="ds-prepred-spell-duration">5 Rounds/1 per Level</span>
|
||
<span class="ds-prepred-spell-description">This spell is a more powerful version of Summon Animal I. The spell
|
||
summons 4d4 animals of 1 to 4 hit dice, or 2d4 animals of 1 to 8 hit dice, or 1d4 animals of 1 to 16 hit
|
||
dice. See Summon Animals I and II or the monster section for animals of 9-16 hit dice.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Summon Animals III}} {{Level=6}} {{Range=80 Feet/Level}} {{Duration=5 Rounds/1 per Level}} {{Description=This spell is a more powerful version of Summon Animal I. The spell summons 4d4 animals of 1 to 4 hit dice, or 2d4 animals of 1 to 8 hit dice, or 1d4 animals of 1 to 16 hit dice. See Summon Animals I and II or the monster section for animals of 9-16 hit dice.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell4_summon_plants_and_funguses"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Summon Plants and Funguses</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">40 Feet</span>
|
||
<span class="ds-prepred-spell-duration">3 Rounds/1 Round per Level</span>
|
||
<span class="ds-prepred-spell-description">This spell summons plants or funguses to grow out of the ground
|
||
before the caster. Summoned vegetation serves the caster for a specific task (i.e., battle) for the spell's
|
||
duration. The druid may release the summoned plants or funguses at any time. Use the following chart to
|
||
determine the result:<br><br>Summon Plants and Funguses 1d10 HD Result 1-4 HD: 1 Vegepygmie (1d4) 5-6 HD: 1
|
||
Vegepygmie (1d6+1) 7-9 HD: 3 Plant-Based Dead (1d4)* 10 HD: 4 Shambling Mound (1d3)** Vegepygmie AL: N, AC:
|
||
4, HD: 1, HP: 4, MV: 20, #AT: 1, DMG: 1d3 (Fist).<br><br>*See the spell Animate Plant-Based Dead. **See
|
||
Shambling Mound (half all monster stats).</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Summon Plants and Funguses}} {{Level=4}} {{Range=40 Feet}} {{Duration=3 Rounds/1 Round per Level}} {{Description=This spell summons plants or funguses to grow out of the ground before the caster. Summoned vegetation serves the caster for a specific task (i.e., battle) for the spell's duration. The druid may release the summoned plants or funguses at any time. Use the following chart to determine the result:<br><br>Summon Plants and Funguses 1d10 HD Result 1-4 HD: 1 Vegepygmie (1d4) 5-6 HD: 1 Vegepygmie (1d6+1) 7-9 HD: 3 Plant-Based Dead (1d4)* 10 HD: 4 Shambling Mound (1d3)** Vegepygmie AL: N, AC: 4, HD: 1, HP: 4, MV: 20, #AT: 1, DMG: 1d3 (Fist).<br><br>*See the spell Animate Plant-Based Dead. **See Shambling Mound (half all monster stats).}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell7_summon_treant"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Summon Treant</span>
|
||
<span class="ds-prepred-spell-level">7</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">T Turn/1 Turn Every Two Levels</span>
|
||
<span class="ds-prepred-spell-description">By means of this ritual, a druid may awaken a tree into a treant
|
||
(see Monster Entry). The treant will follow the instructions of the caster for the duration of the spell. At
|
||
the conclusion, the treant either wanders off (50%) or reverts back to a tree (50%). A large tree must be
|
||
present to cast the spell.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Summon Treant}} {{Level=7}} {{Range=Touch}} {{Duration=T Turn/1 Turn Every Two Levels}} {{Description=By means of this ritual, a druid may awaken a tree into a treant (see Monster Entry). The treant will follow the instructions of the caster for the duration of the spell. At the conclusion, the treant either wanders off (50%) or reverts back to a tree (50%). A large tree must be present to cast the spell.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell4_summon_woodland_beings"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Summon Woodland Beings</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">120 Feet/10 Feet per Level</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">This spell beckons sylvan beings to the caster's aid. The spell
|
||
must be cast outdoors. The casting ends upon the appearance of woodland beings, or none appear after two
|
||
turns. The Maze Controller decides the availability and type of woodland creature summoned, based on
|
||
environment and terrain. Refer to the table below for the sylvan type and number appearing: Sylvan Number
|
||
Sylvan Number Centaur 1d4 Pixie 1d6 Dryad 1d4 Sprite 1d6 Nixie 1d4 Treant 1 Satyr 1d4 Unicorn 1 Woodland
|
||
beings are allowed a saving throw (Spell) with a +4 bonus to ignore the summons. If any member of the
|
||
caster's party is evil, woodland beings receive a second save upon arrival. Sylvan beings that fail their
|
||
save may refuse the summons (50%) or remain and serve the caster (50%). If their summoner asks them to fight
|
||
on his or her behalf, the sylvan are allowed a morale check or flee (based on the druid's morale). This
|
||
number may be adjusted (+ or -) by the Maze Controller subject to the individual circumstances and past
|
||
experience with local woodland beings. If cast in a stone circle or henge, the sylvan cannot ignore the
|
||
summons.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Summon Woodland Beings}} {{Level=4}} {{Range=120 Feet/10 Feet per Level}} {{Duration=See below}} {{Description=This spell beckons sylvan beings to the caster's aid. The spell must be cast outdoors. The casting ends upon the appearance of woodland beings, or none appear after two turns. The Maze Controller decides the availability and type of woodland creature summoned, based on environment and terrain. Refer to the table below for the sylvan type and number appearing: Sylvan Number Sylvan Number Centaur 1d4 Pixie 1d6 Dryad 1d4 Sprite 1d6 Nixie 1d4 Treant 1 Satyr 1d4 Unicorn 1 Woodland beings are allowed a saving throw (Spell) with a +4 bonus to ignore the summons. If any member of the caster's party is evil, woodland beings receive a second save upon arrival. Sylvan beings that fail their save may refuse the summons (50%) or remain and serve the caster (50%). If their summoner asks them to fight on his or her behalf, the sylvan are allowed a morale check or flee (based on the druid's morale). This number may be adjusted (+ or -) by the Maze Controller subject to the individual circumstances and past experience with local woodland beings. If cast in a stone circle or henge, the sylvan cannot ignore the summons.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell7_transmute_metal_to_wood"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Transmute Metal to Wood✦</span>
|
||
<span class="ds-prepred-spell-level">7</span>
|
||
<span class="ds-prepred-spell-range">80 Feet</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">This incantation allows the caster to transmute one metal item into
|
||
wood. A metal magic item has a slight chance (10%) of being changed by this spell. The druid may alter 10
|
||
pounds of metal into wood per experience level. The transmutation is permanent. Only a Wish or Limited Wish
|
||
will reverse the effect.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Transmute Metal to Wood✦}} {{Level=7}} {{Range=80 Feet}} {{Duration=Permanent}} {{Description=This incantation allows the caster to transmute one metal item into wood. A metal magic item has a slight chance (10%) of being changed by this spell. The druid may alter 10 pounds of metal into wood per experience level. The transmutation is permanent. Only a Wish or Limited Wish will reverse the effect.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell5_transmute_rock_to_mud"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Transmute Rock to Mud✦</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">80 Feet</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">This spell transmutes 800 square feet of rock (10 feet deep) into
|
||
mud per level. Movement rate through mud is reduced by 3/4. Transmute Mud to Rock (reverse of the spell)
|
||
alters an equal volume into rock. Both transmutations are permanent.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Transmute Rock to Mud✦}} {{Level=5}} {{Range=80 Feet}} {{Duration=Permanent}} {{Description=This spell transmutes 800 square feet of rock (10 feet deep) into mud per level. Movement rate through mud is reduced by 3/4. Transmute Mud to Rock (reverse of the spell) alters an equal volume into rock. Both transmutations are permanent.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell5_transmute_mud_to_rock"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Transmute Mud to Rock†</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">80 Feet</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">This spell transmutes 800 square feet of mud (10 feet deep) into
|
||
rock per level. Transmute Mud to Rock (reverse of the spell) alters an equal volume into rock. Both
|
||
transmutations are permanent.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Transmute Mud to Rock†}} {{Level=5}} {{Range=80 Feet}} {{Duration=Permanent}} {{Description=This spell transmutes 800 square feet of mud (10 feet deep) into rock per level. Transmute Mud to Rock (reverse of the spell) alters an equal volume into rock. Both transmutations are permanent.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell7_transmute_wood_to_metal"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Transmute Wood to Metal†</span>
|
||
<span class="ds-prepred-spell-level">7</span>
|
||
<span class="ds-prepred-spell-range">80 Feet</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">This incantation allows the caster to transmute one wooden item
|
||
into
|
||
metal. A wooden magic item has a slight chance (10%) of being changed by this spell. The druid may alter 10
|
||
pounds of wood into metal per experience level. The transmutation is permanent. Only a Wish or Limited Wish
|
||
will reverse the effect.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Transmute Metal to Wood✦}} {{Level=7}} {{Range=80 Feet}} {{Duration=Permanent}} {{Description=This incantation allows the caster to transmute one metal item into wood. A metal magic item has a slight chance (10%) of being changed by this spell. The druid may alter 10 pounds of metal into wood per experience level. The transmutation is permanent. Only a Wish or Limited Wish will reverse the effect.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell6_transport_via_plants"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Transport via Plants</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">Through this spell the caster transports him/herself between two
|
||
living plants. The caster enters one plant and emerges from another across any distance in one round. The
|
||
caster need not have knowledge of the exit plant. Instead, the caster indicates the distance and compass
|
||
direction desired, and the spell facilitates the transport to the closest available plant. If the
|
||
destination plant is dead, Transport via Plants fails and transports the caster 1d100 miles in a random
|
||
direction to a plant of the same species.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Transport via Plants}} {{Level=6}} {{Range=Touch}} {{Duration=See below}} {{Description=Through this spell the caster transports him/herself between two living plants. The caster enters one plant and emerges from another across any distance in one round. The caster need not have knowledge of the exit plant. Instead, the caster indicates the distance and compass direction desired, and the spell facilitates the transport to the closest available plant. If the destination plant is dead, Transport via Plants fails and transports the caster 1d100 miles in a random direction to a plant of the same species.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell3_tree_shape"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Tree Shape</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">6 Turns/1 per Level</span>
|
||
<span class="ds-prepred-spell-description">By means of this spell, the caster assumes the form of a living
|
||
tree, shrubbery, or fallen tree trunk. A close inspection will not reveal the tree's true nature. While in
|
||
tree shape, the caster may hear and observe his/her surroundings. The spell alters the caster's equipment
|
||
and clothing. The caster can dismiss the spell as desired, and attack or cast spells in the same
|
||
round.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Tree Shape}} {{Level=3}} {{Range=0}} {{Duration=6 Turns/1 per Level}} {{Description=By means of this spell, the caster assumes the form of a living tree, shrubbery, or fallen tree trunk. A close inspection will not reveal the tree's true nature. While in tree shape, the caster may hear and observe his/her surroundings. The spell alters the caster's equipment and clothing. The caster can dismiss the spell as desired, and attack or cast spells in the same round.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell5_wall_of_fire"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Wall of Fire</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">30 Feet/10 Feet per Level</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">This spell conjures an immobile, blazing curtain of fire into
|
||
existence. A Wall of Fire is 1/4 inch thick and 10 feet long per caster level. The caster can shape the wall
|
||
in any manner desired such as curved, straight, or a protective circle. All those that attempt to pass
|
||
through it take 2d6 points of damage +1 per level of the caster. The wall scores double damage on cold-based
|
||
monsters or monsters that use cold-based attacks. Fire, or fire- using creatures take no damage. The wall
|
||
can be extinguished by white dragon breath, Cone of Cold , Ice Storm , or similar spells.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Wall of Fire}} {{Level=5}} {{Range=30 Feet/10 Feet per Level}} {{Duration=See below}} {{Description=This spell conjures an immobile, blazing curtain of fire into existence. A Wall of Fire is 1/4 inch thick and 10 feet long per caster level. The caster can shape the wall in any manner desired such as curved, straight, or a protective circle. All those that attempt to pass through it take 2d6 points of damage +1 per level of the caster. The wall scores double damage on cold-based monsters or monsters that use cold-based attacks. Fire, or fire- using creatures take no damage. The wall can be extinguished by white dragon breath, Cone of Cold , Ice Storm , or similar spells.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell6_wall_of_thorns"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Wall of Thorns</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">80 Feet</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn/Level</span>
|
||
<span class="ds-prepred-spell-description">A Wall of Thorns spell creates a briar barrier of needle- sharp
|
||
thorns 10x10x10 feet per level. Any being that passes through, or is pushed into, a Wall of Thorns takes
|
||
eight points of damage plus its armor class rating. All those within the wall area when cast take the above
|
||
damage. Edged weapons (such as axes) can cut a path through a Wall of Thorns at a rate of 10 feet/five
|
||
turns. The wall is immune to mundane fire. Magical fire will burn through the wall in two turns.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Wall of Thorns}} {{Level=6}} {{Range=80 Feet}} {{Duration=1 Turn/Level}} {{Description=A Wall of Thorns spell creates a briar barrier of needle- sharp thorns 10x10x10 feet per level. Any being that passes through, or is pushed into, a Wall of Thorns takes eight points of damage plus its armor class rating. All those within the wall area when cast take the above damage. Edged weapons (such as axes) can cut a path through a Wall of Thorns at a rate of 10 feet/five turns. The wall is immune to mundane fire. Magical fire will burn through the wall in two turns.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell1_warg_companion"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Warg Companion</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">1 Mile/2 Levels</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">By casting this spell, the druid calls a temporary wolf or hawk
|
||
companion within a one-mile radius. The spell is subject to the terrain type. Ultimately, the Maze
|
||
Controller decides the probability of which companion will respond to the spell. If the terrain is
|
||
unsuitable for either, it is possible that neither will heed the beckon. Once a hawk or wolf responds, the
|
||
druid and the animal share a telepathic bond. The druid may warg (see and hear through the animal's senses)
|
||
for a period equal to one turn (per caster level) and in a radius of one mile. To do so, the druid must
|
||
enter a catatonic state and concentrate exclusively on the telepathic bond and take no other action. If the
|
||
druid sustains damage, the spell ends.<br><br>Once a bond is created between a druid and a warg companion,
|
||
it is more likely (55%) that subsequent castings in the same area will call exactly the same hawk or wolf to
|
||
aid the druid. Each time the same hawk or wolf is called, the familial and telepathic bond between them
|
||
grows (+5% more likely). This also increases the radius of the bond of the hawk by one mile and the wolf by
|
||
one-half mile. If a hawk or wolf dies while telepathically linked to a druid, the druid takes 1d3 points of
|
||
damage permanently.<br><br>The hawk provides superior far vision and radius and the wolf superior smell and
|
||
hearing. From the standpoint of attack and damage, both are considered standard monster types (see monster
|
||
entry). The spell may only be attempted once per week.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Warg Companion}} {{Level=1}} {{Range=1 Mile/2 Levels}} {{Duration=See below}} {{Description=By casting this spell, the druid calls a temporary wolf or hawk companion within a one-mile radius. The spell is subject to the terrain type. Ultimately, the Maze Controller decides the probability of which companion will respond to the spell. If the terrain is unsuitable for either, it is possible that neither will heed the beckon. Once a hawk or wolf responds, the druid and the animal share a telepathic bond. The druid may warg (see and hear through the animal's senses) for a period equal to one turn (per caster level) and in a radius of one mile. To do so, the druid must enter a catatonic state and concentrate exclusively on the telepathic bond and take no other action. If the druid sustains damage, the spell ends.<br><br>Once a bond is created between a druid and a warg companion, it is more likely (55%) that subsequent castings in the same area will call exactly the same hawk or wolf to aid the druid. Each time the same hawk or wolf is called, the familial and telepathic bond between them grows (+5% more likely). This also increases the radius of the bond of the hawk by one mile and the wolf by one-half mile. If a hawk or wolf dies while telepathically linked to a druid, the druid takes 1d3 points of damage permanently.<br><br>The hawk provides superior far vision and radius and the wolf superior smell and hearing. From the standpoint of attack and damage, both are considered standard monster types (see monster entry). The spell may only be attempted once per week.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell2_warp_wood"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Warp Wood</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">10 Feet/Level</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">Through this ritual prayer the caster bends and warps wood. The
|
||
caster could warp a door open/stuck or sink a boat by warping its hull. The caster could also warp missile
|
||
weapons to uselessness. The caster can warp 1x1x1 foot per experience level. For instance, a Level 2 Druid
|
||
could warp the equivalent of two arrow quivers or four weapons with wooden handles.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Warp Wood}} {{Level=2}} {{Range=10 Feet/Level}} {{Duration=Permanent}} {{Description=Through this ritual prayer the caster bends and warps wood. The caster could warp a door open/stuck or sink a boat by warping its hull. The caster could also warp missile weapons to uselessness. The caster can warp 1x1x1 foot per experience level. For instance, a Level 2 Druid could warp the equivalent of two arrow quivers or four weapons with wooden handles.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell3_water_breathing"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Water Breathing</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">3 Turns/Level</span>
|
||
<span class="ds-prepred-spell-description">Through this spell the caster (or a recipient) can breathe water.
|
||
The recipient can still breathe air. Water breathing does not provide the ability to swim.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Water Breathing}} {{Level=3}} {{Range=Touch}} {{Duration=3 Turns/Level}} {{Description=Through this spell the caster (or a recipient) can breathe water. The recipient can still breathe air. Water breathing does not provide the ability to swim.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_druid_spell4_wyrd_refuge"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Wyrd Refuge</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell has two options. First, the druid can take refuge within
|
||
a tree for the duration of the spell. While inside, the druid bonds with the tree telepathically. S/he can
|
||
see and hear all that transpires within 40 feet. The druid can exit the tree and thereby dismiss the spell
|
||
at any time. At the end of the spell's duration, the druid is expelled in a random direction. If the tree is
|
||
cut down, the druid dies. Second, the druid can use this spell as a lesser version of Transport via Plants.
|
||
In this example, the druid can choose to pass between trees of the same type. This happens instantaneously
|
||
as the two portals open and close at the same time. The druid may open a door to another tree 30 feet away
|
||
(per caster level).</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Wyrd Refuge}} {{Level=4}} {{Range=Touch}} {{Duration=1 Turn/Level}} {{Description=This spell has two options. First, the druid can take refuge within a tree for the duration of the spell. While inside, the druid bonds with the tree telepathically. S/he can see and hear all that transpires within 40 feet. The druid can exit the tree and thereby dismiss the spell at any time. At the end of the spell's duration, the druid is expelled in a random direction. If the tree is cut down, the druid dies. Second, the druid can use this spell as a lesser version of Transport via Plants. In this example, the druid can choose to pass between trees of the same type. This happens instantaneously as the two portals open and close at the same time. The druid may open a door to another tree 30 feet away (per caster level).}}"></button>
|
||
</div>
|
||
</div>
|
||
<input type="checkbox" name="attr_show_magic_user_prepared_spells_control" class="ds-show-prepared-spells-control"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-magic-user">
|
||
<div class="ds-prepared-spells-header">
|
||
<span class="ds-prepared-spells-name-header">Spell</span>
|
||
<span class="ds-prepared-spells-level-header">Lvl.</span>
|
||
<span class="ds-prepared-spells-range-header">Range</span>
|
||
<span class="ds-prepared-spells-duration-header">Duration</span>
|
||
<span class="ds-prepared-spells-description-header">Description</span>
|
||
</div>
|
||
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell5_abners_faithful_hound"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Abner's Faithful Hound</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">10 Feet</span>
|
||
<span class="ds-prepred-spell-duration">2 Rounds/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell summons a spectral guard-dog. The dog guards a 30x30
|
||
foot area designated at the time of casting. The hound barks incessantly if an intruder approaches (larger
|
||
than rat-sized). The hound senses and sees ethereal, invisible, and phased beings or creatures. Abner's
|
||
Faithful Hound attacks as HD: 10 for 3d6 points of damage if the trespasser turns and flees. The dog's bite
|
||
is equivalent to a magic weapon (+3). The hound is immune to attack, but may be dispelled. The caster
|
||
dismisses the spell when s/he leaves area of effect.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Abner's Faithful Hound}} {{Level=5}} {{Range=10 Feet}} {{Duration=2 Rounds/Level}} {{Description=This spell summons a spectral guard-dog. The dog guards a 30x30 foot area designated at the time of casting. The hound barks incessantly if an intruder approaches (larger than rat-sized). The hound senses and sees ethereal, invisible, and phased beings or creatures. Abner's Faithful Hound attacks as HD: 10 for 3d6 points of damage if the trespasser turns and flees. The dog's bite is equivalent to a magic weapon (+3). The hound is immune to attack, but may be dispelled. The caster dismisses the spell when s/he leaves area of effect.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell7_abners_magic_sword"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Abner's Magic Sword</span>
|
||
<span class="ds-prepred-spell-level">7</span>
|
||
<span class="ds-prepred-spell-range">30 Feet</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">The caster conjures a glowing sword of energy (6d4 damage). While
|
||
using the sword, the magic-user attacks as a fighter (at half the caster's level, round up) and always hits
|
||
on a natural attack roll of 19-20. The energy sword strikes as a magical weapon, and may hit
|
||
phased-creatures or opponents on the Astral or Ethereal planes. Dispel Magic will dismiss Abner's Magic
|
||
Sword.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Abner's Magic Sword}} {{Level=7}} {{Range=30 Feet}} {{Duration=1 Round/Level}} {{Description=The caster conjures a glowing sword of energy (6d4 damage). While using the sword, the magic-user attacks as a fighter (at half the caster's level, round up) and always hits on a natural attack roll of 19-20. The energy sword strikes as a magical weapon, and may hit phased-creatures or opponents on the Astral or Ethereal planes. Dispel Magic will dismiss Abner's Magic Sword.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell1_affect_normal_fires"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Affect Normal Fires</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">5 Feet/Level</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">Through this spell the caster can alter a mundane fire. The flame
|
||
can be as small as a torch, or up to, and including, a bonfire. The caster can only manipulate the fire's
|
||
brightness. For example, a wizard could reduce the fire to a candle or increase the brightness to the spell
|
||
Light. However, the heat emitted never changes beyond its original size. Shrinking, or growing, a fire
|
||
reduces/increases fuel consumption by 50% or 100%, respectively.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Affect Normal Fires}} {{Level=1}} {{Range=5 Feet/Level}} {{Duration=1 Round/Level}} {{Description=Through this spell the caster can alter a mundane fire. The flame can be as small as a torch, or up to, and including, a bonfire. The caster can only manipulate the fire's brightness. For example, a wizard could reduce the fire to a candle or increase the brightness to the spell Light. However, the heat emitted never changes beyond its original size. Shrinking, or growing, a fire reduces/increases fuel consumption by 50% or 100%, respectively.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell5_airy_water"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Airy Water</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">N/A</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell conjures a bubble of breathable atmosphere in water (or
|
||
liquid-based medium). The bubble is centered on, and moves with, the caster. The area of effect is a 20x20
|
||
foot sphere, or a 40 foot radial hemisphere, subject to the wizard's preference. The bubble's atmosphere
|
||
does not allow aquatic beings to swim into or through it, and aquatic beings and creatures cannot breathe
|
||
Airy Water. Sentient aquatic beings will refuse to enter the bubble.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Airy Water}} {{Level=5}} {{Range=N/A}} {{Duration=1 Turn/Level}} {{Description=This spell conjures a bubble of breathable atmosphere in water (or liquid-based medium). The bubble is centered on, and moves with, the caster. The area of effect is a 20x20 foot sphere, or a 40 foot radial hemisphere, subject to the wizard's preference. The bubble's atmosphere does not allow aquatic beings to swim into or through it, and aquatic beings and creatures cannot breathe Airy Water. Sentient aquatic beings will refuse to enter the bubble.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell2_ambasses_absent_lapse"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Ambasse's Absent Lapse</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">Sight of target</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">Ambasse's Absent Lapse is a powerful dweomer that targets an
|
||
opposing magic-user in the midst of spell- casting. The Absent Lapse temporarily wipes the memory of the
|
||
spell from the mind of the caster for one round (plus and additional round per level). The Absent Lapse is
|
||
instantaneous and need not be declared prior to rolling initiative (the caster may not be in the midst of
|
||
casting to spontaneously cast Absent Lapse ).<br><br>The targeted wizard is allowed a saving throw (Spell)
|
||
to negate. The target receives a save modification based on Level Differential. Level Differential is either
|
||
a bonus or penalty applied for every level of difference between the caster and the targeted wizard. For
|
||
example, if the caster of Absent Lapse is Level 2 and the target is Level 4, the target would receive a
|
||
bonus of +2 on the save, or if the caster was Level 5 and the target Level 2, the target would have a -3
|
||
penalty, etc. The Absent Lapse cannot penetrate magic resistance, a Globe of Invulnerability , or magic
|
||
items that reflect spells.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Ambasse's Absent Lapse}} {{Level=2}} {{Range=Sight of target}} {{Duration=1 Round/Level}} {{Description=Ambasse's Absent Lapse is a powerful dweomer that targets an opposing magic-user in the midst of spell- casting. The Absent Lapse temporarily wipes the memory of the spell from the mind of the caster for one round (plus and additional round per level). The Absent Lapse is instantaneous and need not be declared prior to rolling initiative (the caster may not be in the midst of casting to spontaneously cast Absent Lapse ).<br><br>The targeted wizard is allowed a saving throw (Spell) to negate. The target receives a save modification based on Level Differential. Level Differential is either a bonus or penalty applied for every level of difference between the caster and the targeted wizard. For example, if the caster of Absent Lapse is Level 2 and the target is Level 4, the target would receive a bonus of +2 on the save, or if the caster was Level 5 and the target Level 2, the target would have a -3 penalty, etc. The Absent Lapse cannot penetrate magic resistance, a Globe of Invulnerability , or magic items that reflect spells.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell5_animate_dead"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Animate Dead</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">60 Feet</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">This spell animates dead remains, like bones or corpses, into
|
||
either skeletons or zombies. The constructs follow the caster's commands. For example, the undead will
|
||
follow, attack, or guard an area from intruders (or any designated creature type). The constructs remain
|
||
animated until destroyed or until their necromantic enchantment is dismissed via Dispel Magic. The caster's
|
||
level determines the total hit dice of the undead raised (Skeletons HD: 1 or Zombies HD: 2). A Level 6
|
||
Cleric, for example, can animate six skeletons or three zombies. Alternatively s/he could animate four
|
||
skeletons and one zombie. The undead possess no intelligence, abilities, or memories from life. See the
|
||
respective entries for skeletons and zombies in the monster section. Note that the dead are not easily
|
||
roused and must be commanded to do so convincingly and authoritatively. If not, they will ignore the summons
|
||
and the spell will fail (subject to the discretion of the Maze Controller). A good-aligned cleric may incur
|
||
disapproval from his or her deity by casting this spell.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Animate Dead}} {{Level=5}} {{Range=60 Feet}} {{Duration=Permanent}} {{Description=This spell animates dead remains, like bones or corpses, into either skeletons or zombies. The constructs follow the caster's commands. For example, the undead will follow, attack, or guard an area from intruders (or any designated creature type). The constructs remain animated until destroyed or until their necromantic enchantment is dismissed via Dispel Magic. The caster's level determines the total hit dice of the undead raised (Skeletons HD: 1 or Zombies HD: 2). A Level 6 Cleric, for example, can animate six skeletons or three zombies. Alternatively s/he could animate four skeletons and one zombie. The undead possess no intelligence, abilities, or memories from life. See the respective entries for skeletons and zombies in the monster section. Note that the dead are not easily roused and must be commanded to do so convincingly and authoritatively. If not, they will ignore the summons and the spell will fail (subject to the discretion of the Maze Controller). A good-aligned cleric may incur disapproval from his or her deity by casting this spell.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell4_animate_statue"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Animate Statue</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">1 Inanimate Statue (Touch)</span>
|
||
<span class="ds-prepred-spell-duration">1d10 Rounds/+1 per Level</span>
|
||
<span class="ds-prepred-spell-description">Through this spell, a cleric or magic-user can animate a statue for
|
||
a time period equal to 1d10 rounds plus one round per caster level. The statue will only respond to the
|
||
verbal commands of its creator.<br><br>The material of the statue determines the construct's hit dice. The
|
||
Maze Controller should use the Animated Statue entry (Crystal, Stone, and Iron) in the monster section as a
|
||
guide.<br><br>Note that if the caster dies while the statue is animated, the statue will go berserk and
|
||
attack a random target.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Animate Statue}} {{Level=4}} {{Range=1 Inanimate Statue (Touch)}} {{Duration=1d10 Rounds/+1 per Level}} {{Description=Through this spell, a cleric or magic-user can animate a statue for a time period equal to 1d10 rounds plus one round per caster level. The statue will only respond to the verbal commands of its creator.<br><br>The material of the statue determines the construct's hit dice. The Maze Controller should use the Animated Statue entry (Crystal, Stone, and Iron) in the monster section as a guide.<br><br>Note that if the caster dies while the statue is animated, the statue will go berserk and attack a random target.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell6_antimagic_shell"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Anti-Magic Shell</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">Caster</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn/Level</span>
|
||
<span class="ds-prepred-spell-description">Through this dweomer, the caster conjures an anti- magic globe.
|
||
Spells cannot pass through the barrier (in or out). The caster may cast spells on him/herself. The caster
|
||
may terminate this spell as desired. The radius is, like Anti-Animal Shell , 10x10 feet plus 10 feet per 2
|
||
levels of the caster.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Anti-Magic Shell}} {{Level=6}} {{Range=Caster}} {{Duration=1 Turn/Level}} {{Description=Through this dweomer, the caster conjures an anti- magic globe. Spells cannot pass through the barrier (in or out). The caster may cast spells on him/herself. The caster may terminate this spell as desired. The radius is, like Anti-Animal Shell , 10x10 feet plus 10 feet per 2 levels of the caster.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell8_antipathy"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Antipathy✦</span>
|
||
<span class="ds-prepred-spell-level">8</span>
|
||
<span class="ds-prepred-spell-range">See below</span>
|
||
<span class="ds-prepred-spell-duration">12 Turns/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell stimulates a location or object to quiver with magical
|
||
energy. The micro-vibrations serve to attract ( Sympathy ) or repulse ( Antipathy ) a specific type of
|
||
intelligent being (determined by the magic-user). The being type must be named explicitly. The maximum area
|
||
affected is 10x10 feet per level. If cast on an object instead of an area, a save penalty of -2 is applied
|
||
to negate.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Antipathy✦}} {{Level=8}} {{Range=See below}} {{Duration=12 Turns/Level}} {{Description=This spell stimulates a location or object to quiver with magical energy. The micro-vibrations serve to attract ( Sympathy ) or repulse ( Antipathy ) a specific type of intelligent being (determined by the magic-user). The being type must be named explicitly. The maximum area affected is 10x10 feet per level. If cast on an object instead of an area, a save penalty of -2 is applied to negate.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell8_sympathy"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Sympathy†</span>
|
||
<span class="ds-prepred-spell-level">8</span>
|
||
<span class="ds-prepred-spell-range">See below</span>
|
||
<span class="ds-prepred-spell-duration">12 Turns/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell causes a location or object to radiate an attraction
|
||
effect for a specific type of intelligent being, drawing them toward it. Area: 10x10 feet per caster level.
|
||
If cast on an object, targets save at -2.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Sympathy†}} {{Level=8}} {{Range=See below}} {{Duration=12 Turns/Level}} {{Description=This spell causes a location or object to radiate an attraction effect for a specific type of intelligent being, drawing them toward it. Area: 10x10 feet per caster level. If cast on an object, targets save at -2.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox"
|
||
name="attr_magic_user_spell2_anttiliams_necromantic_drain" style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Anttiliam's Necromantic Drain</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">By means of this spell, a caster can reduce a target by one
|
||
level/HD for 1d6+1 rounds. The caster can drain a second level upon reaching Level 4, a third level at Level
|
||
6, and so on. No target can be drained below one level/hit die. The drain includes the loss of spells,
|
||
combat abilities, and special abilities. The target is allowed a save versus Spell for no effect.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Anttiliam's Necromantic Drain}} {{Level=2}} {{Range=Touch}} {{Duration=See below}} {{Description=By means of this spell, a caster can reduce a target by one level/HD for 1d6+1 rounds. The caster can drain a second level upon reaching Level 4, a third level at Level 6, and so on. No target can be drained below one level/hit die. The drain includes the loss of spells, combat abilities, and special abilities. The target is allowed a save versus Spell for no effect.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell9_astral_spell"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Astral Spell</span>
|
||
<span class="ds-prepred-spell-level">9</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">This spell allows the caster to free his or her soul from its
|
||
corporeality and project astrally on another plane of existence. Five other willing souls may travel with
|
||
the caster as long as all subjects are connected by hand. Companions must follow, and are dependent upon,
|
||
the caster while in astral form. If separated or slain, the caster's companions will be stranded on the
|
||
Astral Plane.<br><br>The bodies of all astral travellers remain in suspended form on the Prime Material
|
||
Plane. The caster (and companion travellers) can only take items that exist on the Astral Plane. The Astral
|
||
Plane connects to other planes and the caster may also travel to these locations. The caster creates a new
|
||
physical manifestation on the desired plane.<br><br>The caster anchors himself to his physical body on the
|
||
Prime Material Plane through an enchanted silver cord. At any point, if the cord is severed, either on the
|
||
Astral or the Material Plane, the caster dies. The silvery cord is attached invisibly to the caster for the
|
||
duration of the spell. If the astral form's second manifestation is killed, the cord pulls the caster's soul
|
||
back to his suspended body on the Material Plane. The actions of the projected caster only influence beings
|
||
existent on the astral plane.<br><br>Travel through the Astral Plane can continue indefinitely. PC bodies
|
||
are unaffected by the passage of time and do not require sustenance. The Astral Spell continues until ended
|
||
by the caster.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Astral Spell}} {{Level=9}} {{Range=Touch}} {{Duration=See below}} {{Description=This spell allows the caster to free his or her soul from its corporeality and project astrally on another plane of existence. Five other willing souls may travel with the caster as long as all subjects are connected by hand. Companions must follow, and are dependent upon, the caster while in astral form. If separated or slain, the caster's companions will be stranded on the Astral Plane.<br><br>The bodies of all astral travellers remain in suspended form on the Prime Material Plane. The caster (and companion travellers) can only take items that exist on the Astral Plane. The Astral Plane connects to other planes and the caster may also travel to these locations. The caster creates a new physical manifestation on the desired plane.<br><br>The caster anchors himself to his physical body on the Prime Material Plane through an enchanted silver cord. At any point, if the cord is severed, either on the Astral or the Material Plane, the caster dies. The silvery cord is attached invisibly to the caster for the duration of the spell. If the astral form's second manifestation is killed, the cord pulls the caster's soul back to his suspended body on the Material Plane. The actions of the projected caster only influence beings existent on the astral plane.<br><br>Travel through the Astral Plane can continue indefinitely. PC bodies are unaffected by the passage of time and do not require sustenance. The Astral Spell continues until ended by the caster.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell2_audible_glamer"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Audible Glamer</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">60 Feet/10 Feet per Level</span>
|
||
<span class="ds-prepred-spell-duration">2 Rounds/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell creates illusionary sound. The wizard can project and
|
||
center the sound anywhere within range. The caster could, for example, create footsteps (approaching or
|
||
retreating), or voices (loud or soft), etc. The caster can produce sound equivalent to four medium-sized
|
||
humanoids. The wizard may also increase the sound by four humanoids for each level beyond the minimum
|
||
required to cast the spell. Note the caster may only use the spell to imitate any sound he or she has heard
|
||
in the past (human, animal, monster, etc.). If the caster desires a variation on the volume as outlined
|
||
above, the Maze Controller determines the volume generated. For instance, the sound of four humans might
|
||
approximate eight children or one troll. All those who actively disbelieve, are allowed a saving (Spell) to
|
||
recognize the illusionary sound.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Audible Glamer}} {{Level=2}} {{Range=60 Feet/10 Feet per Level}} {{Duration=2 Rounds/Level}} {{Description=This spell creates illusionary sound. The wizard can project and center the sound anywhere within range. The caster could, for example, create footsteps (approaching or retreating), or voices (loud or soft), etc. The caster can produce sound equivalent to four medium-sized humanoids. The wizard may also increase the sound by four humanoids for each level beyond the minimum required to cast the spell. Note the caster may only use the spell to imitate any sound he or she has heard in the past (human, animal, monster, etc.). If the caster desires a variation on the volume as outlined above, the Maze Controller determines the volume generated. For instance, the sound of four humans might approximate eight children or one troll. All those who actively disbelieve, are allowed a saving (Spell) to recognize the illusionary sound.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell1_aztazibars_acrid_finger"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Aztazibar's Acrid Finger</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">Special</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">By means of this spell a gout of green acid projects from the index
|
||
finger of the caster. The jet of acid causes 1d4+1 points of damage per round. Aztazibar's Acrid Finger
|
||
automatically strikes a target if the range is within 20 feet. However, if the target is beyond 20 feet s/he
|
||
must make a successful ranged attack roll. If the caster is beyond first level, s/he may choose to target
|
||
different opponents in different rounds, but the above regarding range still applies. The caster must have
|
||
an unobstructed line of sight to the target. Anything or anyone that obstructs the acid stream takes
|
||
immediate damage. The caster must maintain concentration throughout the duration of the spell and perform no
|
||
other actions.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Aztazibar's Acrid Finger}} {{Level=1}} {{Range=Special}} {{Duration=1 Round/Level}} {{Description=By means of this spell a gout of green acid projects from the index finger of the caster. The jet of acid causes 1d4+1 points of damage per round. Aztazibar's Acrid Finger automatically strikes a target if the range is within 20 feet. However, if the target is beyond 20 feet s/he must make a successful ranged attack roll. If the caster is beyond first level, s/he may choose to target different opponents in different rounds, but the above regarding range still applies. The caster must have an unobstructed line of sight to the target. Anything or anyone that obstructs the acid stream takes immediate damage. The caster must maintain concentration throughout the duration of the spell and perform no other actions.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox"
|
||
name="attr_magic_user_spell3_baltrons_beguiling_birdseed" style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Baltron's Beguiling Birdseed</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">One Bag of Seed</span>
|
||
<span class="ds-prepred-spell-duration">Special</span>
|
||
<span class="ds-prepred-spell-description">Baltron's Beguiling Birdseed is similar to the spell Charm Monster
|
||
(and thus Charm Person ), except that a mage casts the charm on one bag of seed that must be consumed by
|
||
giant ravens, hippogriffs, or griffons, etc., to take effect. One creature is charmed if HD: 7 or greater. A
|
||
group of HD: 3 monsters or fewer may be influenced (2d6 total HD affected).</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Baltron's Beguiling Birdseed}} {{Level=3}} {{Range=One Bag of Seed}} {{Duration=Special}} {{Description=Baltron's Beguiling Birdseed is similar to the spell Charm Monster (and thus Charm Person ), except that a mage casts the charm on one bag of seed that must be consumed by giant ravens, hippogriffs, or griffons, etc., to take effect. One creature is charmed if HD: 7 or greater. A group of HD: 3 monsters or fewer may be influenced (2d6 total HD affected).}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell1_baltrons_black_sheen"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Baltron's Black Sheen</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">10 Feet/Level</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn</span>
|
||
<span class="ds-prepred-spell-description">This spell creates a thin sheet of black ice across a 10x10 foot
|
||
area. Any creature that steps onto the black sheen must save (Stone) or slip, slide, and fall prone. A Level
|
||
5 Magic-User may cast the icy coating in different ways including weapon handles, rope, or ladders. In these
|
||
examples, creatures are allowed a save (Spell) to negate.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Baltron's Black Sheen}} {{Level=1}} {{Range=10 Feet/Level}} {{Duration=1 Turn}} {{Description=This spell creates a thin sheet of black ice across a 10x10 foot area. Any creature that steps onto the black sheen must save (Stone) or slip, slide, and fall prone. A Level 5 Magic-User may cast the icy coating in different ways including weapon handles, rope, or ladders. In these examples, creatures are allowed a save (Spell) to negate.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox"
|
||
name="attr_magic_user_spell2_baltrons_effusive_bloodboil" style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Baltron's Effusive Bloodboil</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">One Target within 30 Feet</span>
|
||
<span class="ds-prepred-spell-duration">3 Rounds</span>
|
||
<span class="ds-prepred-spell-description">By means of this spell, the magic-user increases the blood
|
||
temperature of a single humanoid creature. The spell has an effect that lasts for three rounds. In the first
|
||
round, the victim burns with fever and sweats uncontrollably taking 1d4 points of damage. In the second
|
||
round, blood starts dripping from the eyes, ears, and nose, and s/he takes 1d8 points of damage. In the
|
||
third round, as the Bloodboil dissipates, the victim takes an additional 1d4 points of damage. The target is
|
||
allowed a saving throw (Spells) but this only serves to half the damage.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Baltron's Effusive Bloodboil}} {{Level=2}} {{Range=One Target within 30 Feet}} {{Duration=3 Rounds}} {{Description=By means of this spell, the magic-user increases the blood temperature of a single humanoid creature. The spell has an effect that lasts for three rounds. In the first round, the victim burns with fever and sweats uncontrollably taking 1d4 points of damage. In the second round, blood starts dripping from the eyes, ears, and nose, and s/he takes 1d8 points of damage. In the third round, as the Bloodboil dissipates, the victim takes an additional 1d4 points of damage. The target is allowed a saving throw (Spells) but this only serves to half the damage.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell3_blink"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Blink</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">Self</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">By means of this spell the caster can teleport, or “blink,” between
|
||
the Material Plane and the Ethereal Plane. The caster disappears from one location and reappears in another.
|
||
In any round the caster wins initiative, s/he can melee attack as normal. If successfully hit on the
|
||
opponent's turn, the mage blinks away for no damage. In any round the caster loses initiative, s/he can
|
||
blink away if successfully hit (again, for no damage) and melee attack normally on his/her turn. Regardless
|
||
of the number of successful melee or ranged attacks, the mage blinks away for no damage. The mage's other
|
||
attack forms, such as ranged attacks, magic items, or spells, fail 75% of the time due to disorientation.
|
||
The wizard can only be damaged by area of effect, melee, or ranged attacks that target both the point of
|
||
blink departure and arrival simultaneously. When the caster blinks, s/he reappears randomly five feet from
|
||
his or her original location. Roll 1d8 relative to the direction faced: Roll 1d8: 1) Forward, 2) Backward,
|
||
3) Right, 4) Left, 5) Forward Left, 6) Forward Right, 7) Backward Left,<br><br>Backward Right. If the
|
||
position rolled is occupied, the spell shifts the caster in a random direction (max. 10 feet away). If all
|
||
possible destinations are occupied, the caster is stranded in the Ethereal Plane.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Blink}} {{Level=3}} {{Range=Self}} {{Duration=1 Round/Level}} {{Description=By means of this spell the caster can teleport, or “blink,” between the Material Plane and the Ethereal Plane. The caster disappears from one location and reappears in another. In any round the caster wins initiative, s/he can melee attack as normal. If successfully hit on the opponent's turn, the mage blinks away for no damage. In any round the caster loses initiative, s/he can blink away if successfully hit (again, for no damage) and melee attack normally on his/her turn. Regardless of the number of successful melee or ranged attacks, the mage blinks away for no damage. The mage's other attack forms, such as ranged attacks, magic items, or spells, fail 75% of the time due to disorientation. The wizard can only be damaged by area of effect, melee, or ranged attacks that target both the point of blink departure and arrival simultaneously. When the caster blinks, s/he reappears randomly five feet from his or her original location. Roll 1d8 relative to the direction faced: Roll 1d8: 1) Forward, 2) Backward, 3) Right, 4) Left, 5) Forward Left, 6) Forward Right, 7) Backward Left,<br><br>Backward Right. If the position rolled is occupied, the spell shifts the caster in a random direction (max. 10 feet away). If all possible destinations are occupied, the caster is stranded in the Ethereal Plane.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell2_breath_of_the_dragon"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Breath of the Dragon</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">See below</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn</span>
|
||
<span class="ds-prepred-spell-description">Breath of the Dragon is a second level magic-user or illusionist
|
||
spell. While casting this dweomer, the wizard's eyes roll back in his/her head and a visually impenetrable
|
||
bank of fog spills forth from his or her mouth for one turn. The bank of fog settles across a chasm or
|
||
expanse and functions as a horizontal bridge (200 feet in length plus 10 feet per level). The spell
|
||
dissipates in one turn after the casting is complete.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Breath of the Dragon}} {{Level=2}} {{Range=See below}} {{Duration=1 Turn}} {{Description=Breath of the Dragon is a second level magic-user or illusionist spell. While casting this dweomer, the wizard's eyes roll back in his/her head and a visually impenetrable bank of fog spills forth from his or her mouth for one turn. The bank of fog settles across a chasm or expanse and functions as a horizontal bridge (200 feet in length plus 10 feet per level). The spell dissipates in one turn after the casting is complete.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell1_burning_hands"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Burning Hands</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">See below</span>
|
||
<span class="ds-prepred-spell-duration">1 Round</span>
|
||
<span class="ds-prepred-spell-description">By joining thumbs and pointing his fingertips forward, the caster
|
||
of this spell creates a broad cone of flame. The flame shoots forth in a 120-degree arc and is 5 feet in
|
||
length. Any target caught in the cone is burned for 2 points of fire damage per caster level (no save). The
|
||
spell ignites flammables.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Burning Hands}} {{Level=1}} {{Range=See below}} {{Duration=1 Round}} {{Description=By joining thumbs and pointing his fingertips forward, the caster of this spell creates a broad cone of flame. The flame shoots forth in a 120-degree arc and is 5 feet in length. Any target caught in the cone is burned for 2 points of fire damage per caster level (no save). The spell ignites flammables.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox"
|
||
name="attr_magic_user_spell2_chandrakars_charm_of_disciplinary_jargon" style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Chandra-Kar's Charm of Disciplinary Jargon</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">See below</span>
|
||
<span class="ds-prepred-spell-duration">2 Rounds/1 per Level</span>
|
||
<span class="ds-prepred-spell-description">This spell confuses and confounds the ability of an opposing
|
||
magic-user to cast spells. Instead of reciting the required incantation, verbose and unrelated academic
|
||
wizardly jargon issues forth from the wizard's mouth that prohibits spell-casting. The target wizard is
|
||
allowed a save versus Spell for no effect. The target mage must be within sight and no further than 50 feet
|
||
away.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Chandra-Kar's Charm of Disciplinary Jargon}} {{Level=2}} {{Range=See below}} {{Duration=2 Rounds/1 per Level}} {{Description=This spell confuses and confounds the ability of an opposing magic-user to cast spells. Instead of reciting the required incantation, verbose and unrelated academic wizardly jargon issues forth from the wizard's mouth that prohibits spell-casting. The target wizard is allowed a save versus Spell for no effect. The target mage must be within sight and no further than 50 feet away.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell4_charm_monster"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Charm Monster</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">25 Feet/5 Feet per Level</span>
|
||
<span class="ds-prepred-spell-duration">Special</span>
|
||
<span class="ds-prepred-spell-description">This spell is indistinguishable from Charm Person. Charm Monster
|
||
may target humanoids or monsters of four hit dice. If greater than four, only one monster is affected. If
|
||
cast on a HD: 3 monsters (or under) 3d6 are charmed.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Charm Monster}} {{Level=4}} {{Range=25 Feet/5 Feet per Level}} {{Duration=Special}} {{Description=This spell is indistinguishable from Charm Person. Charm Monster may target humanoids or monsters of four hit dice. If greater than four, only one monster is affected. If cast on a HD: 3 monsters (or under) 3d6 are charmed.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell1_charm_person"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Charm Person</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">25 Feet/5 Feet per Level</span>
|
||
<span class="ds-prepred-spell-duration">Special</span>
|
||
<span class="ds-prepred-spell-description">By means of this spell, the caster encourages a humanoid creature
|
||
to regard him or her as an ally. The caster must know the subject's language to convey orders, or be
|
||
effective at pantomime. Undead creatures, and those of 4+ hit dice, are unaffected. The caster cannot
|
||
control the subject of the spell, but rather the caster's words are perceived in the most favorable manner.
|
||
The subject will take orders but will refuse dangerous actions or actions with alignment deviations. The
|
||
caster cannot ask the affected creature to commit suicide or obey harmful orders. However, the caster may
|
||
convince the target that something risky is worth attempting. Any act that threatens the ensorcelled being
|
||
ends the spell. The subject of the spell will express extreme jealousy over the caster's attention. Subject
|
||
to intelligence, those affected gain additional saves to break the charm: Intelligence 3-8 (once a month),
|
||
9-12 (once each week), and 13-18 (once per day). Dispel Magic dismisses Charm Person.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Charm Person}} {{Level=1}} {{Range=25 Feet/5 Feet per Level}} {{Duration=Special}} {{Description=By means of this spell, the caster encourages a humanoid creature to regard him or her as an ally. The caster must know the subject's language to convey orders, or be effective at pantomime. Undead creatures, and those of 4+ hit dice, are unaffected. The caster cannot control the subject of the spell, but rather the caster's words are perceived in the most favorable manner. The subject will take orders but will refuse dangerous actions or actions with alignment deviations. The caster cannot ask the affected creature to commit suicide or obey harmful orders. However, the caster may convince the target that something risky is worth attempting. Any act that threatens the ensorcelled being ends the spell. The subject of the spell will express extreme jealousy over the caster's attention. Subject to intelligence, those affected gain additional saves to break the charm: Intelligence 3-8 (once a month), 9-12 (once each week), and 13-18 (once per day). Dispel Magic dismisses Charm Person.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell7_charm_plants"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Charm Plants</span>
|
||
<span class="ds-prepred-spell-level">7</span>
|
||
<span class="ds-prepred-spell-range">25 Feet/5 Feet per Level</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">Through this spell, the caster may command plants. The plants act
|
||
within their means and intelligent plants are allowed a save versus Spell at -4 to resist the dweomer. Once
|
||
enchanted, the caster may command plants indefinitely in the area of effect.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Charm Plants}} {{Level=7}} {{Range=25 Feet/5 Feet per Level}} {{Duration=Permanent}} {{Description=Through this spell, the caster may command plants. The plants act within their means and intelligent plants are allowed a save versus Spell at -4 to resist the dweomer. Once enchanted, the caster may command plants indefinitely in the area of effect.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox"
|
||
name="attr_magic_user_spell8_cindaars_spell_resistance" style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Cindaar's Spell Resistance</span>
|
||
<span class="ds-prepred-spell-level">8</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn/Level</span>
|
||
<span class="ds-prepred-spell-description">Through this dweomer, the caster grants limited spell resistance.
|
||
The spell provides at +8 bonus on all saves against mind-influencing effects. These include, but are not
|
||
limited to, Charm , Command , Fear , Suggestion , Hold , Scare (or spells that mimic these effects). The
|
||
spell provides a +5 bonus against powerful, high- level mind-affecting spells like Geas. The caster may
|
||
confer spell resistance on one being per four levels of experience, but must divide the duration.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Cindaar's Spell Resistance}} {{Level=8}} {{Range=Touch}} {{Duration=1 Turn/Level}} {{Description=Through this dweomer, the caster grants limited spell resistance. The spell provides at +8 bonus on all saves against mind-influencing effects. These include, but are not limited to, Charm , Command , Fear , Suggestion , Hold , Scare (or spells that mimic these effects). The spell provides a +5 bonus against powerful, high- level mind-affecting spells like Geas. The caster may confer spell resistance on one being per four levels of experience, but must divide the duration.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell3_clairaudience"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Clairaudience</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">N/A</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">Clairaudience allows the caster to concentrate on a specific locale
|
||
and hear everything within six feet of the location specified. The caster must have visited the location in
|
||
his or her past. Distance is not a factor in the spell's effectiveness. Specific spells, magic items, and/or
|
||
lead shielding, blocks the spell. The spell is limited to the caster's plane of existence.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Clairaudience}} {{Level=3}} {{Range=N/A}} {{Duration=1 Round/Level}} {{Description=Clairaudience allows the caster to concentrate on a specific locale and hear everything within six feet of the location specified. The caster must have visited the location in his or her past. Distance is not a factor in the spell's effectiveness. Specific spells, magic items, and/or lead shielding, blocks the spell. The spell is limited to the caster's plane of existence.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell3_clairvoyance"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Clairvoyance</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">N/A</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">Clairvoyance allows the caster to concentrate on a specific locale
|
||
and see anything within six feet of the location specified. The caster must have visited the location in his
|
||
or her past. Distance is not a factor in the spell's effectiveness. Darkness in the specified location may
|
||
reduce the visibility of the spell, subject to the discretion of the Maze Controller. The incantation can be
|
||
blocked by specific spells, magic items, and/or lead shielding. The spell is limited to the caster's plane
|
||
of existence.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Clairvoyance}} {{Level=3}} {{Range=N/A}} {{Duration=1 Round/Level}} {{Description=Clairvoyance allows the caster to concentrate on a specific locale and see anything within six feet of the location specified. The caster must have visited the location in his or her past. Distance is not a factor in the spell's effectiveness. Darkness in the specified location may reduce the visibility of the spell, subject to the discretion of the Maze Controller. The incantation can be blocked by specific spells, magic items, and/or lead shielding. The spell is limited to the caster's plane of existence.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell8_clone"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Clone</span>
|
||
<span class="ds-prepred-spell-level">8</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">This spell enables the creation of a clone using a piece of its
|
||
flesh. The body must be preserved from decay, but preferably fresh. Once cast, the clone must be gestated in
|
||
a wizard's workshop, for a period of 1d4+2 months. Once the clone gestates to maturity, a psychic link forms
|
||
between the two beings for one week. If the original is still alive during this time period, both entities
|
||
will actively attempt to kill each other. If neither succeeds, there is a 95% likelihood that one of them,
|
||
either the clone (75% chance) or the original (25% chance), turns insane. There is a chance (5%) that both
|
||
turn insane. After one week, if neither manages to eliminate the other, the mental link dissipates, and the
|
||
compulsion to slay each other ceases. The spell only replicates the original being's mind and body, not
|
||
their equipment.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Clone}} {{Level=8}} {{Range=Touch}} {{Duration=Permanent}} {{Description=This spell enables the creation of a clone using a piece of its flesh. The body must be preserved from decay, but preferably fresh. Once cast, the clone must be gestated in a wizard's workshop, for a period of 1d4+2 months. Once the clone gestates to maturity, a psychic link forms between the two beings for one week. If the original is still alive during this time period, both entities will actively attempt to kill each other. If neither succeeds, there is a 95% likelihood that one of them, either the clone (75% chance) or the original (25% chance), turns insane. There is a chance (5%) that both turn insane. After one week, if neither manages to eliminate the other, the mental link dissipates, and the compulsion to slay each other ceases. The spell only replicates the original being's mind and body, not their equipment.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell5_cloudkill"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Cloudkill</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">6 Turns</span>
|
||
<span class="ds-prepred-spell-description">This spell, also called Deathmist , creates a bank of
|
||
greenish-yellow toxic fog (four feet wide, two feet high, and two feet deep). The cloud is so lethal it
|
||
kills all those fewer than 4+1 hit dice on contact. Those between 4+1 and 5+1 must save versus Death at - or
|
||
die and all those in excess of 6 hit dice must save normally or die. The cloud moves away from the wizard at
|
||
a rate of one foot per round. The cloud is susceptible to light wind but will never push it backwards toward
|
||
the caster. Moderate-to-high wind disperses the cloud in four rounds and high wind prevents the casting of
|
||
Cloudkill entirely. The fog is heavier than air, and sinks into depressions and low-lying areas. The spell
|
||
is particularly well-suited for sinkhole openings and the nests of burrowing animals and insects. The spell
|
||
does has no effect on those immune to poison.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Cloudkill}} {{Level=5}} {{Range=0}} {{Duration=6 Turns}} {{Description=This spell, also called Deathmist , creates a bank of greenish-yellow toxic fog (four feet wide, two feet high, and two feet deep). The cloud is so lethal it kills all those fewer than 4+1 hit dice on contact. Those between 4+1 and 5+1 must save versus Death at - or die and all those in excess of 6 hit dice must save normally or die. The cloud moves away from the wizard at a rate of one foot per round. The cloud is susceptible to light wind but will never push it backwards toward the caster. Moderate-to-high wind disperses the cloud in four rounds and high wind prevents the casting of Cloudkill entirely. The fog is heavier than air, and sinks into depressions and low-lying areas. The spell is particularly well-suited for sinkhole openings and the nests of burrowing animals and insects. The spell does has no effect on those immune to poison.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell1_comprehend_languages"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Comprehend Languages✦</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">5 Rounds/Level</span>
|
||
<span class="ds-prepred-spell-description">By this spell the caster can comprehend an unknown spoken language
|
||
or read an unknown script. In both cases, the caster must touch the being or the manuscript.<br><br>The
|
||
spell is confined to the ability to read and provides no insight or context. The spell only provides a
|
||
temporary ability, not a permanent ability to understand or read the language in question.<br><br>A mage can
|
||
use the reverse of the spell, Obfuscate Languages , to dispel the effects of Comprehend Languages , or to
|
||
make language, written or spoken, incomprehensible.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Comprehend Languages✦}} {{Level=1}} {{Range=Touch}} {{Duration=5 Rounds/Level}} {{Description=By this spell the caster can comprehend an unknown spoken language or read an unknown script. In both cases, the caster must touch the being or the manuscript.<br><br>The spell is confined to the ability to read and provides no insight or context. The spell only provides a temporary ability, not a permanent ability to understand or read the language in question.<br><br>A mage can use the reverse of the spell, Obfuscate Languages , to dispel the effects of Comprehend Languages , or to make language, written or spoken, incomprehensible.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell1_obfuscate_languages"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Obfuscate Languages†</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">5 Rounds/Level</span>
|
||
<span class="ds-prepred-spell-description">Negates Comprehend Languages or renders a known spoken or written
|
||
language incomprehensible. The caster must touch the target or the text.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Obfuscate Languages†}} {{Level=1}} {{Range=Touch}} {{Duration=5 Rounds/Level}} {{Description=Negates Comprehend Languages or renders a known spoken or written language incomprehensible. The caster must touch the target or the text.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell5_cone_of_cold"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Cone of Cold</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">Instantaneous</span>
|
||
<span class="ds-prepred-spell-description">This spell manifests a cone of bitter, icy frost. The cone issues
|
||
forth from the caster's hand and broadens outward (5 feet wide at the origin, 40 feet long, and 30 feet wide
|
||
at the terminal end).<br><br>The cone deals 1d4+1 points of cold damage per level. Thus, a Level 10 wizard
|
||
would deal 10d4+10 points of damage. A successful saving throw versus Spell halves the damage. Cold-based
|
||
creatures take no damage from this spell.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Cone of Cold}} {{Level=5}} {{Range=0}} {{Duration=Instantaneous}} {{Description=This spell manifests a cone of bitter, icy frost. The cone issues forth from the caster's hand and broadens outward (5 feet wide at the origin, 40 feet long, and 30 feet wide at the terminal end).<br><br>The cone deals 1d4+1 points of cold damage per level. Thus, a Level 10 wizard would deal 10d4+10 points of damage. A successful saving throw versus Spell halves the damage. Cold-based creatures take no damage from this spell.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell4_confusion"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Confusion</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">10 Feet</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell confuses 2d4 targets within a 10x10 foot area. On a
|
||
failed save (Spell at -2), targets are unable to function independently. Roll below, at the opening of every
|
||
combat round, to determine the target's response:<br><br>1d20 Confusion Result 15-20 Attacks nearest being.
|
||
9-14 Mumbles incoherently (2 Rounds). 5-8 Scratches head befuddled. 1-4 Wanders in random direction (1
|
||
Turn).</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Confusion}} {{Level=4}} {{Range=10 Feet}} {{Duration=1 Round/Level}} {{Description=This spell confuses 2d4 targets within a 10x10 foot area. On a failed save (Spell at -2), targets are unable to function independently. Roll below, at the opening of every combat round, to determine the target's response:<br><br>1d20 Confusion Result 15-20 Attacks nearest being. 9-14 Mumbles incoherently (2 Rounds). 5-8 Scratches head befuddled. 1-4 Wanders in random direction (1 Turn).}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell5_conjure_elemental"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Conjure Elemental</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">10 Feet</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn/Level</span>
|
||
<span class="ds-prepred-spell-description">Through this spell, the caster summons one HD: 16 elemental of
|
||
choice (air, earth, fire or water). For the spell duration, the caster is limited to half speed. The caster
|
||
may undertake no other actions and must concentrate to control the elemental for the spell's duration. The
|
||
caster can dismiss the elemental at-will. Dispel Magic immediately forces the elemental back to its plane.
|
||
If the caster's concentration breaks at any point during the spell duration, the elemental will turn and
|
||
attack the caster. Further, the caster cannot send the elemental back its home plane of existence. The type
|
||
of elemental summoned must be declared at the time of spell memorization.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Conjure Elemental}} {{Level=5}} {{Range=10 Feet}} {{Duration=1 Turn/Level}} {{Description=Through this spell, the caster summons one HD: 16 elemental of choice (air, earth, fire or water). For the spell duration, the caster is limited to half speed. The caster may undertake no other actions and must concentrate to control the elemental for the spell's duration. The caster can dismiss the elemental at-will. Dispel Magic immediately forces the elemental back to its plane. If the caster's concentration breaks at any point during the spell duration, the elemental will turn and attack the caster. Further, the caster cannot send the elemental back its home plane of existence. The type of elemental summoned must be declared at the time of spell memorization.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell5_contact_other_plane"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Contact Other Plane</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">Special</span>
|
||
<span class="ds-prepred-spell-description">Through this spell, the caster contacts another plane of existence
|
||
in order to consult a divine being. The entity replies in a language understood by the caster, but they are
|
||
loathe to engage and only provide very brief, or one word, responses (such as, yes, maybe, no, always, or
|
||
never). To ask questions, the caster must concentrate exclusively on the spell. One question may be asked
|
||
(and a reply offered) per round.<br><br>The caster may ask one question for every two caster levels.
|
||
Increased concentration and risk accompanies each question (beyond the first two). Consult the table below
|
||
to determine if the entity knows the answer. Roll Unbeknown to determine if the entity knows and then the
|
||
second column to see if it responds truthfully. Note the spell may cause the caster to turn
|
||
insane.<br><br>Questions Unbeknown Truth Insane 3 80% 45% 10% 4 70% 50% 15% 5 65% 60% 20% 6 60% 65% 25% 7
|
||
50% 70% 30% 8 35% 75% 35% 9 30% 80% 40% 10 20% 85% 45% 11 15% 90% 50% 12 10% 95% 55%</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Contact Other Plane}} {{Level=5}} {{Range=0}} {{Duration=Special}} {{Description=Through this spell, the caster contacts another plane of existence in order to consult a divine being. The entity replies in a language understood by the caster, but they are loathe to engage and only provide very brief, or one word, responses (such as, yes, maybe, no, always, or never). To ask questions, the caster must concentrate exclusively on the spell. One question may be asked (and a reply offered) per round.<br><br>The caster may ask one question for every two caster levels. Increased concentration and risk accompanies each question (beyond the first two). Consult the table below to determine if the entity knows the answer. Roll Unbeknown to determine if the entity knows and then the second column to see if it responds truthfully. Note the spell may cause the caster to turn insane.<br><br>Questions Unbeknown Truth Insane 3 80% 45% 10% 4 70% 50% 15% 5 65% 60% 20% 6 60% 65% 25% 7 50% 70% 30% 8 35% 75% 35% 9 30% 80% 40% 10 20% 85% 45% 11 15% 90% 50% 12 10% 95% 55%}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell2_continual_light"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Continual Light✦</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">10 Feet</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">This spell creates light equivalent to sunlight in a 60 foot
|
||
radius, and any creature that suffers a penalty in sunlight is affected. The caster may throw the spell on
|
||
objects or a creature's eyes, causing blindness (-4 to hit, saving throw versus Spell negates). Unless
|
||
dispelled, Continual Light is permanent. Continual Darkness produces darkness consistent with the above
|
||
spell. It can be countered with Continual Light or Dispel Magic. Like Continual Light , the caster may
|
||
target the eyes and cause blindness (save applies). Normal eyesight, including darkvision, cannot penetrate
|
||
Continual Darkness , nor can lanterns, torches, or Light.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Continual Light✦}} {{Level=2}} {{Range=10 Feet}} {{Duration=See below}} {{Description=This spell creates light equivalent to sunlight in a 60 foot radius, and any creature that suffers a penalty in sunlight is affected. The caster may throw the spell on objects or a creature's eyes, causing blindness (-4 to hit, saving throw versus Spell negates). Unless dispelled, Continual Light is permanent. Continual Darkness produces darkness consistent with the above spell. It can be countered with Continual Light or Dispel Magic. Like Continual Light , the caster may target the eyes and cause blindness (save applies). Normal eyesight, including darkvision, cannot penetrate Continual Darkness , nor can lanterns, torches, or Light.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell2_continual_darkness"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Continual Darkness†</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">10 Feet</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">Creates magical darkness in a 60-foot radius that blocks all normal
|
||
and darkvision sight. Can blind a creature (save negates) if cast at the eyes. Only Continual Light or
|
||
Dispel Magic counters it.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Continual Darkness†}} {{Level=2}} {{Range=10 Feet}} {{Duration=See below}} {{Description=Creates magical darkness in a 60-foot radius that blocks all normal and darkvision sight. Can blind a creature (save negates) if cast at the eyes. Only Continual Light or Dispel Magic counters it.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell6_control_weather"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Control Weather</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">4d12 hours</span>
|
||
<span class="ds-prepred-spell-description">This spell changes weather in a fixed area. The spell requires one
|
||
turn to cast and 1d4 additional turns to manifest (3d4+4 square miles). The caster can only call forth
|
||
season and climate-appropriate weather: Season Weather Type Spring Electrical Storm, Wind Storm, Tornado
|
||
Summer Rain Storm, Hail Storm, or Heatwave Autumn Rain Storm, Hail Storm, or Hurricane Winter Snow Storm,
|
||
Ice Storm, Polar Vortex Through this spell, caster may adjust weather tendencies only. This includes
|
||
direction and intensity, but not specific control. The caster, for example, cannot direct the path of a
|
||
hurricane or ice storm. The spell precludes conflicting weather patterns.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Control Weather}} {{Level=6}} {{Range=0}} {{Duration=4d12 hours}} {{Description=This spell changes weather in a fixed area. The spell requires one turn to cast and 1d4 additional turns to manifest (3d4+4 square miles). The caster can only call forth season and climate-appropriate weather: Season Weather Type Spring Electrical Storm, Wind Storm, Tornado Summer Rain Storm, Hail Storm, or Heatwave Autumn Rain Storm, Hail Storm, or Hurricane Winter Snow Storm, Ice Storm, Polar Vortex Through this spell, caster may adjust weather tendencies only. This includes direction and intensity, but not specific control. The caster, for example, cannot direct the path of a hurricane or ice storm. The spell precludes conflicting weather patterns.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell1_dancing_lights"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Dancing Lights</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">10 Feet</span>
|
||
<span class="ds-prepred-spell-duration">2 Rounds/Level</span>
|
||
<span class="ds-prepred-spell-description">The caster conjures four dancing orbs of light, or a single,
|
||
spectral human-like form. The dancing lights glow akin to torchlight and disappear if they move more than 10
|
||
feet from each other. The caster determines their flight pattern: up, down, forward, backward, diagonal,
|
||
straight, or around corners. The glowing orbs disappear if they move beyond the range of the spell. Dancing
|
||
Lights are often mistaken for Will-o-Wisps.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Dancing Lights}} {{Level=1}} {{Range=10 Feet}} {{Duration=2 Rounds/Level}} {{Description=The caster conjures four dancing orbs of light, or a single, spectral human-like form. The dancing lights glow akin to torchlight and disappear if they move more than 10 feet from each other. The caster determines their flight pattern: up, down, forward, backward, diagonal, straight, or around corners. The glowing orbs disappear if they move beyond the range of the spell. Dancing Lights are often mistaken for Will-o-Wisps.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell2_darkness_15_feet"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Darkness (15 Feet)</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">30 Feet</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn/1 Round per Level</span>
|
||
<span class="ds-prepred-spell-description">The caster conjures a globe of darkness with a 15 foot radius,
|
||
centered within range of the spell. The darkness in the radius is absolute, and all mundane forms of vision
|
||
are negated, including darkvision. Both Light or Continual Light counter the spell, such that the standard
|
||
light within the radius functions normally.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Darkness (15 Feet)}} {{Level=2}} {{Range=30 Feet}} {{Duration=1 Turn/1 Round per Level}} {{Description=The caster conjures a globe of darkness with a 15 foot radius, centered within range of the spell. The darkness in the radius is absolute, and all mundane forms of vision are negated, including darkvision. Both Light or Continual Light counter the spell, such that the standard light within the radius functions normally.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell3_darkvision"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Darkvision</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">12 Turns/6 Turns per Level</span>
|
||
<span class="ds-prepred-spell-description">The caster or touched subject can see 60 feet in the dark for the
|
||
duration of the spell.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Darkvision}} {{Level=3}} {{Range=Touch}} {{Duration=12 Turns/6 Turns per Level}} {{Description=The caster or touched subject can see 60 feet in the dark for the duration of the spell.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell6_death_spell"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Death Spell</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">10 Feet/5 Feet per Level</span>
|
||
<span class="ds-prepred-spell-duration">Instantaneous</span>
|
||
<span class="ds-prepred-spell-description">This spell slays all those of eight or fewer hit dice (to a maximum
|
||
of 4d8 hit dice). If, for example, the caster rolls 28 hit dice, and there are seven HD: 4 targets within
|
||
range, all die on a failed saving throw (Death).</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Death Spell}} {{Level=6}} {{Range=10 Feet/5 Feet per Level}} {{Duration=Instantaneous}} {{Description=This spell slays all those of eight or fewer hit dice (to a maximum of 4d8 hit dice). If, for example, the caster rolls 28 hit dice, and there are seven HD: 4 targets within range, all die on a failed saving throw (Death).}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell7_delayed_blast_fireball"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Delayed Blast Fireball</span>
|
||
<span class="ds-prepred-spell-level">7</span>
|
||
<span class="ds-prepred-spell-range">10 Feet/10 Feet per Level</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">This spell is the same as Fireball except +1 is added to each die
|
||
of damage. The caster can choose to detonate the spell up to five rounds after casting.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Delayed Blast Fireball}} {{Level=7}} {{Range=10 Feet/10 Feet per Level}} {{Duration=See below}} {{Description=This spell is the same as Fireball except +1 is added to each die of damage. The caster can choose to detonate the spell up to five rounds after casting.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox"
|
||
name="attr_magic_user_spell3_demambalas_sepulchral_soup" style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Demambala's Sepulchral Soup</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">1 Target</span>
|
||
<span class="ds-prepred-spell-duration">3 Turns</span>
|
||
<span class="ds-prepred-spell-description">By means of this spell, the magic-user creates a disgusting broth
|
||
(1 dose) made from the bones of animated skeletons and wight flesh. By consuming the soup the imbiber
|
||
becomes immune to a single level drain attack from all undead up to, and including, a vampire. Drinking the
|
||
soup is a difficult task, even for the most ardent adventurer.<br><br>After drinking the soup the imbiber
|
||
must make a Constitution Check or vomit profusely for 1d4 rounds plus one round for each level of the
|
||
caster. Vomiting indicates spell failure.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Demambala's Sepulchral Soup}} {{Level=3}} {{Range=1 Target}} {{Duration=3 Turns}} {{Description=By means of this spell, the magic-user creates a disgusting broth (1 dose) made from the bones of animated skeletons and wight flesh. By consuming the soup the imbiber becomes immune to a single level drain attack from all undead up to, and including, a vampire. Drinking the soup is a difficult task, even for the most ardent adventurer.<br><br>After drinking the soup the imbiber must make a Constitution Check or vomit profusely for 1d4 rounds plus one round for each level of the caster. Vomiting indicates spell failure.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell2_detect_evil"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Detect Evil✦</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">10 Feet/10 Feet per Level</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn</span>
|
||
<span class="ds-prepred-spell-description">Through this spell, the caster can sense evil. The source could be
|
||
either a being or an evil object. Evil creatures or objects within 10 feet glow red to the caster. The spell
|
||
does not allow the caster to scry, but rather grants the perception of evil. The reverse of this spell,
|
||
Detect Good, functions similarly but with a white outline.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Detect Evil✦}} {{Level=2}} {{Range=10 Feet/10 Feet per Level}} {{Duration=1 Turn}} {{Description=Through this spell, the caster can sense evil. The source could be either a being or an evil object. Evil creatures or objects within 10 feet glow red to the caster. The spell does not allow the caster to scry, but rather grants the perception of evil. The reverse of this spell, Detect Good, functions similarly but with a white outline.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell2_detect_good"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Detect Good†</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">10 Feet/10 Feet per Level</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn</span>
|
||
<span class="ds-prepred-spell-description">Reveals good-aligned creatures or objects within 10 feet, glowing
|
||
white to the caster.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Detect Good†}} {{Level=2}} {{Range=10 Feet/10 Feet per Level}} {{Duration=1 Turn}} {{Description=Reveals good-aligned creatures or objects within 10 feet, glowing white to the caster.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell2_detect_invisibility"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Detect Invisibility</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">10 Feet/10 Feet per Level</span>
|
||
<span class="ds-prepred-spell-duration">5 Rounds/Level</span>
|
||
<span class="ds-prepred-spell-description">By means of this spell, the caster may view all invisible items and
|
||
beings. In addition, the caster can also see ethereal or astral items and beings.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Detect Invisibility}} {{Level=2}} {{Range=10 Feet/10 Feet per Level}} {{Duration=5 Rounds/Level}} {{Description=By means of this spell, the caster may view all invisible items and beings. In addition, the caster can also see ethereal or astral items and beings.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell1_detect_magic"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Detect Magic</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">10 Feet/10 Feet per Level</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn</span>
|
||
<span class="ds-prepred-spell-description">This spell allows the caster to identify a magical object or being
|
||
in the area of effect for the duration of the spell. This includes objects or beings that are permanently or
|
||
temporarily under any form of enchantment.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Detect Magic}} {{Level=1}} {{Range=10 Feet/10 Feet per Level}} {{Duration=1 Turn}} {{Description=This spell allows the caster to identify a magical object or being in the area of effect for the duration of the spell. This includes objects or beings that are permanently or temporarily under any form of enchantment.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell4_dimension_door"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Dimension Door</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">See below</span>
|
||
<span class="ds-prepred-spell-duration">1 Round</span>
|
||
<span class="ds-prepred-spell-description">This spell allows the caster to open a door-like magical portal and
|
||
travel instantly from his or her current location to any known location of choice within 30 feet per level
|
||
of the caster. Dimension Door functions without error. However, if the destination is occupied as the
|
||
magic-user emerges, s/ he is stranded on the Astral Plane.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Dimension Door}} {{Level=4}} {{Range=See below}} {{Duration=1 Round}} {{Description=This spell allows the caster to open a door-like magical portal and travel instantly from his or her current location to any known location of choice within 30 feet per level of the caster. Dimension Door functions without error. However, if the destination is occupied as the magic-user emerges, s/ he is stranded on the Astral Plane.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell6_disintegrate"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Disintegrate</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">10 Feet</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">A thin, black beam springs from the caster's pointed finger. No
|
||
attack roll is necessary. The beam disintegrates any single mundane (non-magical) being regardless of size
|
||
instantly (save versus Death negates).<br><br>If used to disintegrate an inanimate, non-living object, the
|
||
beam reduces one 10x10x10 foot cube to dust.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Disintegrate}} {{Level=6}} {{Range=10 Feet}} {{Duration=Permanent}} {{Description=A thin, black beam springs from the caster's pointed finger. No attack roll is necessary. The beam disintegrates any single mundane (non-magical) being regardless of size instantly (save versus Death negates).<br><br>If used to disintegrate an inanimate, non-living object, the beam reduces one 10x10x10 foot cube to dust.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell3_dispel_magic"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Dispel Magic</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">5 Feet/5 Feet per Level</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">This spell negates magic effects. The caster instantly dismisses
|
||
all spells and spell-effects, regardless of class, of the same level or lower.<br><br>A possibility of spell
|
||
failure exists. For each level above the caster, a 7% chance exists (cumulatively) that Dispel Magic fails.
|
||
For example, if a Level 7 Magic-User attempts to dispel the effect of a Level 10 Magic-User, the failure
|
||
rate is 21%.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Dispel Magic}} {{Level=3}} {{Range=5 Feet/5 Feet per Level}} {{Duration=Permanent}} {{Description=This spell negates magic effects. The caster instantly dismisses all spells and spell-effects, regardless of class, of the same level or lower.<br><br>A possibility of spell failure exists. For each level above the caster, a 7% chance exists (cumulatively) that Dispel Magic fails. For example, if a Level 7 Magic-User attempts to dispel the effect of a Level 10 Magic-User, the failure rate is 21%.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell2_djriixims_purple_haze"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Djriixim's Purple Haze</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">30 Feet</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">This spell is similar to the spell Stinking Cloud in several
|
||
respects. Djriixim's Purple Haze creates a 20 foot cubed bank of thick purple vapor centered anywhere within
|
||
range. All those caught in the vapor feel disoriented and are unable to act (beyond staggering outside the
|
||
cloud and are +2 to hit). The condition persists as long as the subjects remain in the haze and for 1d4+1
|
||
rounds after exiting. All those who succeed on a save (Death) when leaving the vapor are unaffected for the
|
||
remaining rounds but feel ravenous.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Djriixim's Purple Haze}} {{Level=2}} {{Range=30 Feet}} {{Duration=Permanent}} {{Description=This spell is similar to the spell Stinking Cloud in several respects. Djriixim's Purple Haze creates a 20 foot cubed bank of thick purple vapor centered anywhere within range. All those caught in the vapor feel disoriented and are unable to act (beyond staggering outside the cloud and are +2 to hit). The condition persists as long as the subjects remain in the haze and for 1d4+1 rounds after exiting. All those who succeed on a save (Death) when leaving the vapor are unaffected for the remaining rounds but feel ravenous.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell7_duodimension"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Duo-Dimension</span>
|
||
<span class="ds-prepred-spell-level">7</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">3 Rounds/1 per Level</span>
|
||
<span class="ds-prepred-spell-description">Through this spell, the caster becomes two-dimensional. The caster
|
||
temporarily shifts one aspect of his or her being (depth) to another plane and is thereby two- dimensional
|
||
in width and height only. The caster may act normally, but appears invisible if standing sideways.
|
||
Duo-dimension allows the caster to move sideways and slide through thin cracks or tight spaces. The caster
|
||
is impervious to attack when turned sideways, but takes triple damage otherwise. The spell True Sight
|
||
instantly apprehends the presence of the caster. The caster remains susceptible to area of effect attacks
|
||
(and the damage modifier).</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Duo-Dimension}} {{Level=7}} {{Range=0}} {{Duration=3 Rounds/1 per Level}} {{Description=Through this spell, the caster becomes two-dimensional. The caster temporarily shifts one aspect of his or her being (depth) to another plane and is thereby two- dimensional in width and height only. The caster may act normally, but appears invisible if standing sideways. Duo-dimension allows the caster to move sideways and slide through thin cracks or tight spaces. The caster is impervious to attack when turned sideways, but takes triple damage otherwise. The spell True Sight instantly apprehends the presence of the caster. The caster remains susceptible to area of effect attacks (and the damage modifier).}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell4_enchanted_weapon"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Enchanted Weapon</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">5 Rounds/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell requires one turn to cast. On completion, a magic-user
|
||
may enchant one standard-sized melee weapon (sword, or flail, etc.) or two small-sized weapons (sling
|
||
stones, crossbow bolts, arrows, or daggers, etc). These enchanted weapons may damage creatures only struck
|
||
by +1 or better weapons. They do not possess bonuses to hit or damage. Ranged, or missile weapons, lose
|
||
their enchantment when used in combat and melee weapons hold their magic until the spell's duration
|
||
ends.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Enchanted Weapon}} {{Level=4}} {{Range=Touch}} {{Duration=5 Rounds/Level}} {{Description=This spell requires one turn to cast. On completion, a magic-user may enchant one standard-sized melee weapon (sword, or flail, etc.) or two small-sized weapons (sling stones, crossbow bolts, arrows, or daggers, etc). These enchanted weapons may damage creatures only struck by +1 or better weapons. They do not possess bonuses to hit or damage. Ranged, or missile weapons, lose their enchantment when used in combat and melee weapons hold their magic until the spell's duration ends.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell1_enlarge"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Enlarge✦</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">5 Feet/Level</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell allows one subject in range to immediately grow twice
|
||
their size in height and weight. Therefore, a small-sized humanoid (dwarf, halfling, or gnome) would grow to
|
||
approximately 7-8 feet tall. A medium- sized humanoid (cyclopsman, elf, human, half-elf, or half-orc) would
|
||
grow to between 11-14 feet in height. In either case, the Strength adjustment is +2 to a maximum of 18.
|
||
Magic item properties are unaltered by this spell.<br><br>If cast on an object, the growth is 10% (with an
|
||
additional 10% per level). Objects are limited to twice their original size. Both beings and objects,
|
||
through Enlarge , also double their mass.<br><br>The reverse of the spell, Shrink , reduces beings or
|
||
objects by the proportions outlined above (with a - adjustment to a minimum of 3). These spells counter each
|
||
other. Both Enlarge and Shrink allow a save (Spell) to negate (if unwilling).</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Enlarge✦}} {{Level=1}} {{Range=5 Feet/Level}} {{Duration=1 Turn/Level}} {{Description=This spell allows one subject in range to immediately grow twice their size in height and weight. Therefore, a small-sized humanoid (dwarf, halfling, or gnome) would grow to approximately 7-8 feet tall. A medium- sized humanoid (cyclopsman, elf, human, half-elf, or half-orc) would grow to between 11-14 feet in height. In either case, the Strength adjustment is +2 to a maximum of 18. Magic item properties are unaltered by this spell.<br><br>If cast on an object, the growth is 10% (with an additional 10% per level). Objects are limited to twice their original size. Both beings and objects, through Enlarge , also double their mass.<br><br>The reverse of the spell, Shrink , reduces beings or objects by the proportions outlined above (with a - adjustment to a minimum of 3). These spells counter each other. Both Enlarge and Shrink allow a save (Spell) to negate (if unwilling).}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell1_shrink"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Shrink†</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">5 Feet/Level</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn/Level</span>
|
||
<span class="ds-prepred-spell-description">Reduces a creature or object to half its size and mass, with
|
||
corresponding penalties. Save versus Spell negates if unwilling.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Shrink†}} {{Level=1}} {{Range=5 Feet/Level}} {{Duration=1 Turn/Level}} {{Description=Reduces a creature or object to half its size and mass, with corresponding penalties. Save versus Spell negates if unwilling.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell1_erase"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Erase</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">30 Feet</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">Erase removes script (magical or mundane) from scrolls, books, or
|
||
parchment. The spell cannot erase Explosive Runes or a Glyph of Warding. A magic-user has a 50% chance to
|
||
erase magical script (+3% for each caster level) or 50% for mundane script (+6% per caster level).</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Erase}} {{Level=1}} {{Range=30 Feet}} {{Duration=Permanent}} {{Description=Erase removes script (magical or mundane) from scrolls, books, or parchment. The spell cannot erase Explosive Runes or a Glyph of Warding. A magic-user has a 50% chance to erase magical script (+3% for each caster level) or 50% for mundane script (+6% per caster level).}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell2_esp"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">ESP</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">20 Feet/10 Feet per Level</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">After one turn of focusing in a single direction, the caster can
|
||
perceive thoughts within 20 feet (plus 10 feet per level). The caster understands their meaning regardless
|
||
of language. If multiple beings are within range, the spell requires additional time (one round) to
|
||
distinguish one set of thoughts from other unique voices. Lead, or stone two feet thick, obstructs the
|
||
spell.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=ESP}} {{Level=2}} {{Range=20 Feet/10 Feet per Level}} {{Duration=1 Round/Level}} {{Description=After one turn of focusing in a single direction, the caster can perceive thoughts within 20 feet (plus 10 feet per level). The caster understands their meaning regardless of language. If multiple beings are within range, the spell requires additional time (one round) to distinguish one set of thoughts from other unique voices. Lead, or stone two feet thick, obstructs the spell.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell3_explosive_runes"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Explosive Runes</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent until Triggered</span>
|
||
<span class="ds-prepred-spell-description">This spell allows the caster to mark arcane runes on an object
|
||
(book, map, scroll, etc.). When read, the runes detonate for 6d4+6 damage in a 10 foot radius. The reader of
|
||
Explosive Runes takes full damage (no save). All those in the 10 foot area receive a save versus Spell for
|
||
half. The inscribed object is obliterated, unless immune to fire. At the time of casting, the magic-user
|
||
specifically designates who can read the runes without triggering detonation. The caster can also dismiss
|
||
Explosive Runes when desired. A successful Dispel Magic removes Explosive Runes. On close inspection, an
|
||
experienced magic-user (7%/level) or a thief (5%/level) may detect the runes without detonation.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Explosive Runes}} {{Level=3}} {{Range=Touch}} {{Duration=Permanent until Triggered}} {{Description=This spell allows the caster to mark arcane runes on an object (book, map, scroll, etc.). When read, the runes detonate for 6d4+6 damage in a 10 foot radius. The reader of Explosive Runes takes full damage (no save). All those in the 10 foot area receive a save versus Spell for half. The inscribed object is obliterated, unless immune to fire. At the time of casting, the magic-user specifically designates who can read the runes without triggering detonation. The caster can also dismiss Explosive Runes when desired. A successful Dispel Magic removes Explosive Runes. On close inspection, an experienced magic-user (7%/level) or a thief (5%/level) may detect the runes without detonation.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell4_extension_i"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Extension I</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">This incantation extends the duration of a spell previously cast
|
||
and currently in effect. The duration of Level 1, 2, and 3 spells are lengthened by 50%.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Extension I}} {{Level=4}} {{Range=0}} {{Duration=See below}} {{Description=This incantation extends the duration of a spell previously cast and currently in effect. The duration of Level 1, 2, and 3 spells are lengthened by 50%.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell5_extension_ii"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Extension II</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">Extension II is the same as Extension I. The incantation lengthens
|
||
spell duration (Levels 1-4) by 50%.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Extension II}} {{Level=5}} {{Range=0}} {{Duration=See below}} {{Description=Extension II is the same as Extension I. The incantation lengthens spell duration (Levels 1-4) by 50%.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell6_extension_iii"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Extension III</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">Extension III is the same as Extension I. The dweomer lengthens
|
||
spell duration (Levels 1-3) by 100%, or a Level 4 or 5 spell by 50%.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Extension III}} {{Level=6}} {{Range=0}} {{Duration=See below}} {{Description=Extension III is the same as Extension I. The dweomer lengthens spell duration (Levels 1-3) by 100%, or a Level 4 or 5 spell by 50%.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell4_fear"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Fear</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">Round/Caster Level</span>
|
||
<span class="ds-prepred-spell-description">A long and narrow invisible cone (60 feet long, 5 feet wide origin,
|
||
and 30 feet wide at the end) issues forth from the caster and causes all those in the area of effect to
|
||
panic and flee (save versus Spell to negate). There is a 60% chance with a modifier of -5% per HD (or
|
||
level), that the targets drop everything held in-hand. Those affected flee at their fastest movement rate
|
||
away from the caster.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Fear}} {{Level=4}} {{Range=0}} {{Duration=Round/Caster Level}} {{Description=A long and narrow invisible cone (60 feet long, 5 feet wide origin, and 30 feet wide at the end) issues forth from the caster and causes all those in the area of effect to panic and flee (save versus Spell to negate). There is a 60% chance with a modifier of -5% per HD (or level), that the targets drop everything held in-hand. Those affected flee at their fastest movement rate away from the caster.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell1_feather_fall"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Feather Fall</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">10 Feet/Level</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">By this spell, beings and/or objects in range float slowly
|
||
downward, back and forth like a feather (about 10 feet per round). On landing, subjects take no damage. If
|
||
the spell expires prior to landing, standard falling damage applies (1d6 per 10 feet). The spell affects a
|
||
maximum weight of 200 pounds (+200 pounds per level). Therefore, a third level wizard can affect 600 pounds
|
||
of beings and/or objects in range. This weight excludes items beyond maximum encumbrance. The wizard may
|
||
cast the spell with a single word, allowing the caster to save him/herself instantaneously (or another
|
||
being) from an unexpected fall. The caster must have initiative (if applicable). The spell cannot be cast on
|
||
flying creatures or those on firm ground. Feather Fall does not include a saving throw.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Feather Fall}} {{Level=1}} {{Range=10 Feet/Level}} {{Duration=1 Round/Level}} {{Description=By this spell, beings and/or objects in range float slowly downward, back and forth like a feather (about 10 feet per round). On landing, subjects take no damage. If the spell expires prior to landing, standard falling damage applies (1d6 per 10 feet). The spell affects a maximum weight of 200 pounds (+200 pounds per level). Therefore, a third level wizard can affect 600 pounds of beings and/or objects in range. This weight excludes items beyond maximum encumbrance. The wizard may cast the spell with a single word, allowing the caster to save him/herself instantaneously (or another being) from an unexpected fall. The caster must have initiative (if applicable). The spell cannot be cast on flying creatures or those on firm ground. Feather Fall does not include a saving throw.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell5_feeblemind"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Feeblemind</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">40 Feet</span>
|
||
<span class="ds-prepred-spell-duration">Indefinite</span>
|
||
<span class="ds-prepred-spell-description">This spell makes a single being or creature mentally invalided, if
|
||
a save versus Spell is failed (-4). The affected being or creature babbles incoherently and is rendered
|
||
unable to communicate, attack, or wield magic. Only a Dispel Magic or Heal negates Feeblemind.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Feeblemind}} {{Level=5}} {{Range=40 Feet}} {{Duration=Indefinite}} {{Description=This spell makes a single being or creature mentally invalided, if a save versus Spell is failed (-4). The affected being or creature babbles incoherently and is rendered unable to communicate, attack, or wield magic. Only a Dispel Magic or Heal negates Feeblemind.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell3_feign_death"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Feign Death</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">6 Rounds/1 Round per Level</span>
|
||
<span class="ds-prepred-spell-description">This spell initiates a paralytic state in the caster or another
|
||
willing subject. This state imitates death to observers, even upon close examination. To Feign Death in an
|
||
unwilling target, the caster must make a touch attack/contact and the being must be equal, or have fewer,
|
||
hit dice. The spell provides no saving throw.<br><br>Under the spell, the target remains fully conscious but
|
||
utterly immobile. All paralysis, poison, or energy drain attacks directed at the catatonic subject fail.
|
||
Although, poison, with a longer duration than the spell, takes effect at the spell's conclusion.<br><br>At
|
||
any time, the caster can dismiss the spell. The subject requires 1d3 rounds to emerge from the magical
|
||
catatonic state.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Feign Death}} {{Level=3}} {{Range=Touch}} {{Duration=6 Rounds/1 Round per Level}} {{Description=This spell initiates a paralytic state in the caster or another willing subject. This state imitates death to observers, even upon close examination. To Feign Death in an unwilling target, the caster must make a touch attack/contact and the being must be equal, or have fewer, hit dice. The spell provides no saving throw.<br><br>Under the spell, the target remains fully conscious but utterly immobile. All paralysis, poison, or energy drain attacks directed at the catatonic subject fail. Although, poison, with a longer duration than the spell, takes effect at the spell's conclusion.<br><br>At any time, the caster can dismiss the spell. The subject requires 1d3 rounds to emerge from the magical catatonic state.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox"
|
||
name="attr_magic_user_spell1_fennrils_exquisite_strangulation" style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Fennril's Exquisite Strangulation</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">20 Feet/5 Feet per 2 Levels</span>
|
||
<span class="ds-prepred-spell-duration">2 Rounds/1 per level</span>
|
||
<span class="ds-prepred-spell-description">This spell allows the caster to reach out with magical force and
|
||
strangle a medium-sized or smaller humanoid opponent. Each round, the victim takes 1d4 hit points of damage
|
||
plus 1 additional point per level.<br><br>The caster must concentrate solely on the spell or the effect is
|
||
broken. During strangulation, the victim can take no action and will focus solely on gasping for breath.
|
||
Creatures over four hit dice are unaffected by the spell.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Fennril's Exquisite Strangulation}} {{Level=1}} {{Range=20 Feet/5 Feet per 2 Levels}} {{Duration=2 Rounds/1 per level}} {{Description=This spell allows the caster to reach out with magical force and strangle a medium-sized or smaller humanoid opponent. Each round, the victim takes 1d4 hit points of damage plus 1 additional point per level.<br><br>The caster must concentrate solely on the spell or the effect is broken. During strangulation, the victim can take no action and will focus solely on gasping for breath. Creatures over four hit dice are unaffected by the spell.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox"
|
||
name="attr_magic_user_spell1_filangees_sycophantic_praise" style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Filangee's Sycophantic Praise</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">25 Feet/5 Feet per Level</span>
|
||
<span class="ds-prepred-spell-duration">Special</span>
|
||
<span class="ds-prepred-spell-description">Through this spell, a magic-user bombards a single monstrous
|
||
humanoid with effusive and obsequious flattery. The effect of the spell is akin to Charm Person , insofar as
|
||
the target will view the caster as a trusted friend if a save versus Spell is failed (-2).<br><br>To the
|
||
affected, the caster is viewed in the most beneficial light. The subject will follow the instructions of the
|
||
mage but will not act against its alignment. An affected being will never harm him/herself but might be
|
||
persuaded that something dangerous could help their new friend. Any threatening act by the caster, or the
|
||
caster's companions, breaks the spell.<br><br>The caster must speak the being's language, or else be clever
|
||
at pantomiming. The spell differs from Charm Person in terms of its duration. In order for the spell to
|
||
remain in effect the caster must offer continuous (and sickening) flattery every other turn the target is
|
||
awake or the spell will fail. The spell affects beings up to and including five hit dice.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Filangee's Sycophantic Praise}} {{Level=1}} {{Range=25 Feet/5 Feet per Level}} {{Duration=Special}} {{Description=Through this spell, a magic-user bombards a single monstrous humanoid with effusive and obsequious flattery. The effect of the spell is akin to Charm Person , insofar as the target will view the caster as a trusted friend if a save versus Spell is failed (-2).<br><br>To the affected, the caster is viewed in the most beneficial light. The subject will follow the instructions of the mage but will not act against its alignment. An affected being will never harm him/herself but might be persuaded that something dangerous could help their new friend. Any threatening act by the caster, or the caster's companions, breaks the spell.<br><br>The caster must speak the being's language, or else be clever at pantomiming. The spell differs from Charm Person in terms of its duration. In order for the spell to remain in effect the caster must offer continuous (and sickening) flattery every other turn the target is awake or the spell will fail. The spell affects beings up to and including five hit dice.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell1_find_familiar"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Find Familiar</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">1 Mile/Level</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">Through this spell, the magic-user summons a familiar. The spell
|
||
takes 1d20+4 hours and consumes rare materials (Value: 100gp). The Maze Controller determines the likelihood
|
||
of a response and the creature type within range. This spell may only be cast once per year. A wizard can
|
||
access the familiar's senses and the two can communicate in the animal's tongue. A familiar is extremely
|
||
jealous and loyal, unto death. Familiars have AC: 7 and 1d4+1 hit points. They are more intelligent than
|
||
standard animals of the same type. When the two are within 120 feet, the familiar provides the caster with
|
||
additional hit points. Therefore, a mage with 4 hit points and a familiar with 2 hit points would have a
|
||
total of 6 hit points. A wizard guards his/her familiar closely and wisely. If a familiar is killed, the
|
||
caster permanently subtracts twice the familiar's hit points (to a minimum of one) from his/her own and
|
||
caster must wait a full year prior to summoning a new familiar. The following table provides a set of
|
||
examples to guide the Maze Controller: Familiar Sense Augmentation Bat Auditory Cat Auditory and Night
|
||
Vision Hawk Distance Vision Lizard Olfactory Owl Auditory and Night Vision Raven Near and Distance Vision
|
||
Toad Wide Angle Vision Weasel Auditory and Olfactory For each use of the spell, the caster may (7% chance)
|
||
summon (or construct) a unique familiar subject to his/ her alignment. Unique familiars receive a save
|
||
(Spell) to resist the summons. The save is modified by the caster's Intelligence (-1 per point of modifier).
|
||
If the familiar saves, the caster must wait a full year to cast again. Alignment Familiar* Lawful Good or
|
||
Lawful Neutral Brownie Lawful Evil or Neutral Evil Quasit Neutral or Neutral Good Pixie Chaotic Evil or
|
||
Neutral Evil Imp Chaotic Good or Chaotic Neutral Pseudo-Dragon Same Alignment as Caster Homunculus *See
|
||
monster listings for abilities. A quasit or imp familiar will attempt to influence its master to Lawful Evil
|
||
or Chaotic Evil, respectively.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Find Familiar}} {{Level=1}} {{Range=1 Mile/Level}} {{Duration=See below}} {{Description=Through this spell, the magic-user summons a familiar. The spell takes 1d20+4 hours and consumes rare materials (Value: 100gp). The Maze Controller determines the likelihood of a response and the creature type within range. This spell may only be cast once per year. A wizard can access the familiar's senses and the two can communicate in the animal's tongue. A familiar is extremely jealous and loyal, unto death. Familiars have AC: 7 and 1d4+1 hit points. They are more intelligent than standard animals of the same type. When the two are within 120 feet, the familiar provides the caster with additional hit points. Therefore, a mage with 4 hit points and a familiar with 2 hit points would have a total of 6 hit points. A wizard guards his/her familiar closely and wisely. If a familiar is killed, the caster permanently subtracts twice the familiar's hit points (to a minimum of one) from his/her own and caster must wait a full year prior to summoning a new familiar. The following table provides a set of examples to guide the Maze Controller: Familiar Sense Augmentation Bat Auditory Cat Auditory and Night Vision Hawk Distance Vision Lizard Olfactory Owl Auditory and Night Vision Raven Near and Distance Vision Toad Wide Angle Vision Weasel Auditory and Olfactory For each use of the spell, the caster may (7% chance) summon (or construct) a unique familiar subject to his/ her alignment. Unique familiars receive a save (Spell) to resist the summons. The save is modified by the caster's Intelligence (-1 per point of modifier). If the familiar saves, the caster must wait a full year to cast again. Alignment Familiar* Lawful Good or Lawful Neutral Brownie Lawful Evil or Neutral Evil Quasit Neutral or Neutral Good Pixie Chaotic Evil or Neutral Evil Imp Chaotic Good or Chaotic Neutral Pseudo-Dragon Same Alignment as Caster Homunculus *See monster listings for abilities. A quasit or imp familiar will attempt to influence its master to Lawful Evil or Chaotic Evil, respectively.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell4_fire_shield"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Fire Shield</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">2 Rounds/1 Round per Level</span>
|
||
<span class="ds-prepred-spell-description">This spell appears to immolate the caster in flames. Any being that
|
||
strikes the mage, by physical contact or with a handheld weapon, scores damage, but simultaneously takes
|
||
double damage in return. While wreathed in flame, the caster sheds the equivalent of torchlight in a 30 foot
|
||
radius. The spell has two iterations: Fire Shield: This variant provides the caster with +2 on saves versus
|
||
cold-based attacks. If the caster successfully saves from a spell, the results in zero damage instead of
|
||
half damage. Further, the mage only takes half damage if the spell does not provide a save. If the caster
|
||
fails a fire-based attack save, s/he takes double damage. Fire Shield flames are red and burn hot. Chill
|
||
Shield: This variant provides the caster with +2 on saves versus fire-based attacks. If the caster
|
||
successfully saves from a spell, the result is no damage instead of half. Further, the wizard takes just
|
||
half damage if the spell does not provide a save. If the caster fails a cold- based attack save, s/he takes
|
||
double damage. Chill Shield flames are blue and burn cold.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Fire Shield}} {{Level=4}} {{Range=0}} {{Duration=2 Rounds/1 Round per Level}} {{Description=This spell appears to immolate the caster in flames. Any being that strikes the mage, by physical contact or with a handheld weapon, scores damage, but simultaneously takes double damage in return. While wreathed in flame, the caster sheds the equivalent of torchlight in a 30 foot radius. The spell has two iterations: Fire Shield: This variant provides the caster with +2 on saves versus cold-based attacks. If the caster successfully saves from a spell, the results in zero damage instead of half damage. Further, the mage only takes half damage if the spell does not provide a save. If the caster fails a fire-based attack save, s/he takes double damage. Fire Shield flames are red and burn hot. Chill Shield: This variant provides the caster with +2 on saves versus fire-based attacks. If the caster successfully saves from a spell, the result is no damage instead of half. Further, the wizard takes just half damage if the spell does not provide a save. If the caster fails a cold- based attack save, s/he takes double damage. Chill Shield flames are blue and burn cold.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell4_fire_trap"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Fire Trap</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent until Triggered</span>
|
||
<span class="ds-prepred-spell-description">This spell traps an item (book, bottle, chest, coffer, coffin,
|
||
door, drawer, etc.). When a being takes (or opens) the object, the spell detonates in a 5 foot radius. The
|
||
flames of the detonation score 1d4 fire damage plus 1 point per level of the caster. A save versus Spell
|
||
halves the damage. The object is protected from the fiery discharge. A Fire Trapped item cannot receive a
|
||
second warding spell and Knock always fails.<br><br>The spell is difficult to find and remove. Any Find/
|
||
Remove Traps roll is halved and failure detonates.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Fire Trap}} {{Level=4}} {{Range=Touch}} {{Duration=Permanent until Triggered}} {{Description=This spell traps an item (book, bottle, chest, coffer, coffin, door, drawer, etc.). When a being takes (or opens) the object, the spell detonates in a 5 foot radius. The flames of the detonation score 1d4 fire damage plus 1 point per level of the caster. A save versus Spell halves the damage. The object is protected from the fiery discharge. A Fire Trapped item cannot receive a second warding spell and Knock always fails.<br><br>The spell is difficult to find and remove. Any Find/ Remove Traps roll is halved and failure detonates.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell3_fireball"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Fireball</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">10 Feet/5 Feet per Level</span>
|
||
<span class="ds-prepred-spell-duration">Instant</span>
|
||
<span class="ds-prepred-spell-description">A Fireball is a searing ball of flame that expands as it flies away
|
||
from the wizard's hand. The explosion detonates for 1d6 points of damage per level of the caster to all
|
||
those in a 30x30x30 foot radius. All those within area receive a save versus Spell to half the
|
||
damage.<br><br>The caster must explicitly designate the point of detonation (distance and height). Note that
|
||
a Fireball immediately explodes if it contacts anything prior to reaching its detonation point. Fireball
|
||
ignites combustibles in the area of effect. The spell melts gold, copper, lead, electrum, silver, bronze,
|
||
platinum, etc.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Fireball}} {{Level=3}} {{Range=10 Feet/5 Feet per Level}} {{Duration=Instant}} {{Description=A Fireball is a searing ball of flame that expands as it flies away from the wizard's hand. The explosion detonates for 1d6 points of damage per level of the caster to all those in a 30x30x30 foot radius. All those within area receive a save versus Spell to half the damage.<br><br>The caster must explicitly designate the point of detonation (distance and height). Note that a Fireball immediately explodes if it contacts anything prior to reaching its detonation point. Fireball ignites combustibles in the area of effect. The spell melts gold, copper, lead, electrum, silver, bronze, platinum, etc.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell3_flame_arrow"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Flame Arrow</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">1 Round</span>
|
||
<span class="ds-prepred-spell-description">This spell enchants a crossbow bolt or arrow into a flaming
|
||
projectile. The caster may enchant one projectile per level. They are considered magical and score an
|
||
additional point of fire damage. A Flame Arrow ignites flammables, but it will not necessarily ignite living
|
||
creatures. The magical projectiles must be used within one round or are consumed by fire.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Flame Arrow}} {{Level=3}} {{Range=Touch}} {{Duration=1 Round}} {{Description=This spell enchants a crossbow bolt or arrow into a flaming projectile. The caster may enchant one projectile per level. They are considered magical and score an additional point of fire damage. A Flame Arrow ignites flammables, but it will not necessarily ignite living creatures. The magical projectiles must be used within one round or are consumed by fire.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell4_flame_charm"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Flame Charm</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">10 Feet</span>
|
||
<span class="ds-prepred-spell-duration">2 Rounds/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell imbues a flame with the ability to charm. The flame
|
||
flickers and dances, entrancing all those in a 10 foot radius. All those who fail a save (Spell) stand
|
||
mesmerized and motionless. If their view of the flame is blocked or disrupted, the dweomer is broken. The
|
||
spell must be cast on an existing fire. If the spell Suggestion is cast while Fire Charmed , the ensorcelled
|
||
subject(s) save versus Spell at a -3 penalty. A standard- sized campfire causes 1d4 points of damage.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Flame Charm}} {{Level=4}} {{Range=10 Feet}} {{Duration=2 Rounds/Level}} {{Description=This spell imbues a flame with the ability to charm. The flame flickers and dances, entrancing all those in a 10 foot radius. All those who fail a save (Spell) stand mesmerized and motionless. If their view of the flame is blocked or disrupted, the dweomer is broken. The spell must be cast on an existing fire. If the spell Suggestion is cast while Fire Charmed , the ensorcelled subject(s) save versus Spell at a -3 penalty. A standard- sized campfire causes 1d4 points of damage.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell2_flesh_of_fire"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Flesh of Fire</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">Self</span>
|
||
<span class="ds-prepred-spell-duration">3 Rounds/1 Round per Level</span>
|
||
<span class="ds-prepred-spell-description">This spell is a lesser variant of the magic-user spell Fire Shield.
|
||
By means of this spell the caster wreathes him or herself in flames.<br><br>The flames provide light to 15
|
||
feet and any creature that touches, or attacks the caster in melee, takes 1d4 points of damage. Ranged
|
||
attacks are unaffected. In addition, the spell provides a +2 on saving throws versus fire-based attacks, +1
|
||
on saving throws against cold-based attacks, and -4 saves versus water-based attacks. The caster's personal
|
||
items are not subject to fire damage.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Flesh of Fire}} {{Level=2}} {{Range=Self}} {{Duration=3 Rounds/1 Round per Level}} {{Description=This spell is a lesser variant of the magic-user spell Fire Shield. By means of this spell the caster wreathes him or herself in flames.<br><br>The flames provide light to 15 feet and any creature that touches, or attacks the caster in melee, takes 1d4 points of damage. Ranged attacks are unaffected. In addition, the spell provides a +2 on saving throws versus fire-based attacks, +1 on saving throws against cold-based attacks, and -4 saves versus water-based attacks. The caster's personal items are not subject to fire damage.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell3_fly"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Fly</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">This spell allows the caster to fly for one turn per level (plus
|
||
1d4 turns) to a maximum speed of 120 feet per round. The caster can alter speed and hover, as
|
||
desired.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Fly}} {{Level=3}} {{Range=0}} {{Duration=See below}} {{Description=This spell allows the caster to fly for one turn per level (plus 1d4 turns) to a maximum speed of 120 feet per round. The caster can alter speed and hover, as desired.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell2_fools_gold"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Fool's Gold</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">10 Feet</span>
|
||
<span class="ds-prepred-spell-duration">6 Turns/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell allows the caster to transmute 10 five pound bars of
|
||
copper or brass into gold. All those who encounter Fool's Gold receive an Intelligence Check to detect the
|
||
subterfuge. A penalty of 1 is imposed per level of the caster on the roll. Therefore, if a moneylender
|
||
possesses Intelligence: 12 and the wizard is Level 4, a roll of 16 or higher would be required to notice the
|
||
falsehood. Note that proximity (2 feet) to pure iron may (20%) dispel Fool's Gold.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Fool's Gold}} {{Level=2}} {{Range=10 Feet}} {{Duration=6 Turns/Level}} {{Description=This spell allows the caster to transmute 10 five pound bars of copper or brass into gold. All those who encounter Fool's Gold receive an Intelligence Check to detect the subterfuge. A penalty of 1 is imposed per level of the caster on the roll. Therefore, if a moneylender possesses Intelligence: 12 and the wizard is Level 4, a roll of 16 or higher would be required to notice the falsehood. Note that proximity (2 feet) to pure iron may (20%) dispel Fool's Gold.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell2_forget"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Forget</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">30 Feet</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">This spell wipes the target's memory of the previous round (+1
|
||
round for ever 3 caster levels). This enchantment affects memory only. The spell does not alter the past or
|
||
cancel preexisting conditions or spell effects. The spell can affect up to four targets in range. Targets
|
||
receive a save (Spell), which is modified subject to the number of targets: 3-4 targets (no modifier), 2
|
||
targets (-1), and 1 target (-2). Only a Heal or Restoration will return the target's memories.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Forget}} {{Level=2}} {{Range=30 Feet}} {{Duration=Permanent}} {{Description=This spell wipes the target's memory of the previous round (+1 round for ever 3 caster levels). This enchantment affects memory only. The spell does not alter the past or cancel preexisting conditions or spell effects. The spell can affect up to four targets in range. Targets receive a save (Spell), which is modified subject to the number of targets: 3-4 targets (no modifier), 2 targets (-1), and 1 target (-2). Only a Heal or Restoration will return the target's memories.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell4_fumble"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Fumble</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">10 Feet</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/1 per Level</span>
|
||
<span class="ds-prepred-spell-description">Fumble makes the target of this spell blunderous and clumsy (save
|
||
versus Spell negates). The target drops items, and attempts to seize, snatch, grab, catch, or use objects of
|
||
any type, are doomed to failure. Running results in falling prone. If the target succeeds on a saving throw,
|
||
s/he manages to focus through the magical clumsiness, but functions under a Slow for the spell's
|
||
duration.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Fumble}} {{Level=4}} {{Range=10 Feet}} {{Duration=1 Round/1 per Level}} {{Description=Fumble makes the target of this spell blunderous and clumsy (save versus Spell negates). The target drops items, and attempts to seize, snatch, grab, catch, or use objects of any type, are doomed to failure. Running results in falling prone. If the target succeeds on a saving throw, s/he manages to focus through the magical clumsiness, but functions under a Slow for the spell's duration.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell3_galaxinas_gorgonic_glyph"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Galaxina's Gorgonic Glyph</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">A door</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">This spell is a magical trap. The caster inscribes a near invisible
|
||
rune onto a door (searching the door may 1-2 on d6 result in mundane detection). If any attempt is made to
|
||
open the door (or pick the lock), the spell discharges. A small phantasmal bullhead emerges from the rune
|
||
and exhales a poison gas cloud similar to the breath of a Gorgon. All those within 5 feet of the door must
|
||
save versus Stone or be petrified (a successful save negates the effect). Dispel Magic dismisses the
|
||
trap.<br><br>Galaxina's Scintillating Spark Shower Level 2 (Magic-User) Duration: See below Range: 25 Feet/5
|
||
Feet per Level<br><br>When this spell is cast, sizzling, crackling sparks leap from the magic-user's
|
||
fingertips in an area of effect 25 feet across and 10 feet deep. All those within the area suffer 2d4 points
|
||
of damage if wearing non-metallic armor, or 4d4 points of damage if clad in metallic armor, or possess a
|
||
metal weapon in-hand. Targets are allowed a save (Spell) for half damage.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Galaxina's Gorgonic Glyph}} {{Level=3}} {{Range=A door}} {{Duration=Permanent}} {{Description=This spell is a magical trap. The caster inscribes a near invisible rune onto a door (searching the door may 1-2 on d6 result in mundane detection). If any attempt is made to open the door (or pick the lock), the spell discharges. A small phantasmal bullhead emerges from the rune and exhales a poison gas cloud similar to the breath of a Gorgon. All those within 5 feet of the door must save versus Stone or be petrified (a successful save negates the effect). Dispel Magic dismisses the trap.<br><br>Galaxina's Scintillating Spark Shower Level 2 (Magic-User) Duration: See below Range: 25 Feet/5 Feet per Level<br><br>When this spell is cast, sizzling, crackling sparks leap from the magic-user's fingertips in an area of effect 25 feet across and 10 feet deep. All those within the area suffer 2d4 points of damage if wearing non-metallic armor, or 4d4 points of damage if clad in metallic armor, or possess a metal weapon in-hand. Targets are allowed a save (Spell) for half damage.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox"
|
||
name="attr_magic_user_spell2_gartzees_incredulous_apostate" style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Gartzee's Incredulous Apostate</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">1 Target</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">Through this spell a magic-user can incite a cleric, druid, monk,
|
||
or shaman into a fit of religious self-doubt and heresy. Unless a save versus Spell is successful, the
|
||
target will emit a torrent of heretical sacrilege, blasphemy, and profanities. The target will be conscious
|
||
of the blasphemies but unable to stop for the duration of the spell.<br><br>If cast on a cleric, druid,
|
||
monk, or shaman, within a group of religious spell-casters, they all must make a save versus Spell or be
|
||
bewildered by the Incredulous Apostate for a single round. For each level beyond third, the target receives
|
||
a +1 on the saving throw.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Gartzee's Incredulous Apostate}} {{Level=2}} {{Range=1 Target}} {{Duration=1 Round/Level}} {{Description=Through this spell a magic-user can incite a cleric, druid, monk, or shaman into a fit of religious self-doubt and heresy. Unless a save versus Spell is successful, the target will emit a torrent of heretical sacrilege, blasphemy, and profanities. The target will be conscious of the blasphemies but unable to stop for the duration of the spell.<br><br>If cast on a cleric, druid, monk, or shaman, within a group of religious spell-casters, they all must make a save versus Spell or be bewildered by the Incredulous Apostate for a single round. For each level beyond third, the target receives a +1 on the saving throw.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell4_gaseous_form"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Gaseous Form</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">2 Rounds/Level</span>
|
||
<span class="ds-prepred-spell-description">By means of this spell the caster (or a willing target) becomes an
|
||
unsubstantial cloud of near-translucent vapor. All equipment and items are transformed along with the target
|
||
of the spell. The cloud can move at a rate of five feet per round. The spell recipient cannot be harmed
|
||
except by magical fire or lightning which score normal damage. In this form, a being can move through any
|
||
size space that is not airtight (a keyhole or crack in a wall, for example). The target may not attack or
|
||
cast spells, nor can it enter water or any other liquid. The target is subject to the effect of wind. The
|
||
vapor cannot manipulate objects or activate items, even those carried in gaseous form. The recipient retains
|
||
his/her armor class and hit points.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Gaseous Form}} {{Level=4}} {{Range=Touch}} {{Duration=2 Rounds/Level}} {{Description=By means of this spell the caster (or a willing target) becomes an unsubstantial cloud of near-translucent vapor. All equipment and items are transformed along with the target of the spell. The cloud can move at a rate of five feet per round. The spell recipient cannot be harmed except by magical fire or lightning which score normal damage. In this form, a being can move through any size space that is not airtight (a keyhole or crack in a wall, for example). The target may not attack or cast spells, nor can it enter water or any other liquid. The target is subject to the effect of wind. The vapor cannot manipulate objects or activate items, even those carried in gaseous form. The recipient retains his/her armor class and hit points.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell9_gate"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Gate</span>
|
||
<span class="ds-prepred-spell-level">9</span>
|
||
<span class="ds-prepred-spell-range">30 Feet</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">A Gate creates an inter-dimensional portal between the wizard's
|
||
plane and another designated plane of existence. The Gate allows bilateral movement between the two planes.
|
||
Once the portal is established, the caster can beckon a specific entity or being through the gate. The
|
||
cleric or magic-user must know the exact name of the entity summoned and authoritatively demand its
|
||
presence. The being can be any fiendish, demonic, or otherworldly entity, or even a minor deity (or its
|
||
representative). The Maze Controller determines if the entity is curious, angry, bored, or indifferent,
|
||
subject to the situation (and the result of the spell must be judiciously considered). Lawful evil or
|
||
chaotic evil beings (if held in servitude on their home plane) relish the freedom of the Prime Material
|
||
Plane and will seek to break free of the summoner. Entities are summoned into a constraining magical circle
|
||
until information is exchanged or a bargain struck for servitude (666 days).</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Gate}} {{Level=9}} {{Range=30 Feet}} {{Duration=See below}} {{Description=A Gate creates an inter-dimensional portal between the wizard's plane and another designated plane of existence. The Gate allows bilateral movement between the two planes. Once the portal is established, the caster can beckon a specific entity or being through the gate. The cleric or magic-user must know the exact name of the entity summoned and authoritatively demand its presence. The being can be any fiendish, demonic, or otherworldly entity, or even a minor deity (or its representative). The Maze Controller determines if the entity is curious, angry, bored, or indifferent, subject to the situation (and the result of the spell must be judiciously considered). Lawful evil or chaotic evil beings (if held in servitude on their home plane) relish the freedom of the Prime Material Plane and will seek to break free of the summoner. Entities are summoned into a constraining magical circle until information is exchanged or a bargain struck for servitude (666 days).}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell6_geas"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Geas</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">30 Feet</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">This spell is similar to the Level 5 Cleric spell Quest. The target
|
||
is allowed a save versus Spell. If the save fails, the caster may compel a being to undertake a
|
||
task.<br><br>The task can be arduous, or even dangerous. However, the caster cannot instruct the being to
|
||
harm him or herself. If the subject refuses the Geas , s/he will be cursed (the Maze Controller determines
|
||
the nature).<br><br>To remove the curse, the subject must undertake the Geas. The spell ends when the task
|
||
is complete, the caster ends the spell, or in response to a Wish.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Geas}} {{Level=6}} {{Range=30 Feet}} {{Duration=See below}} {{Description=This spell is similar to the Level 5 Cleric spell Quest. The target is allowed a save versus Spell. If the save fails, the caster may compel a being to undertake a task.<br><br>The task can be arduous, or even dangerous. However, the caster cannot instruct the being to harm him or herself. If the subject refuses the Geas , s/he will be cursed (the Maze Controller determines the nature).<br><br>To remove the curse, the subject must undertake the Geas. The spell ends when the task is complete, the caster ends the spell, or in response to a Wish.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell8_glassysteel"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Glassysteel</span>
|
||
<span class="ds-prepred-spell-level">8</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">Through this spell the caster imbues glass with the strength of
|
||
steel (10 pounds per level of the caster). The spell must be cast on a finite object (a complete window but
|
||
not part of a window).</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Glassysteel}} {{Level=8}} {{Range=Touch}} {{Duration=Permanent}} {{Description=Through this spell the caster imbues glass with the strength of steel (10 pounds per level of the caster). The spell must be cast on a finite object (a complete window but not part of a window).}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell6_globe_of_invulnerability"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Globe of Invulnerability</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell is the same as Minor Globe of Invulnerability in all
|
||
respects. It provides total protection from spells Level 1 through 4.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Globe of Invulnerability}} {{Level=6}} {{Range=0}} {{Duration=1 Round/Level}} {{Description=This spell is the same as Minor Globe of Invulnerability in all respects. It provides total protection from spells Level 1 through 4.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox"
|
||
name="attr_magic_user_spell4_globe_of_invulnerability_minor" style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Globe of Invulnerability (Minor)</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">A shimmering magical sphere (10x10 feet) surrounds the wizard and
|
||
negates Level 1 to 3 spells. This includes spells targeted at the caster or areas of effect that include the
|
||
caster. The caster may throw spells from the globe normally. The globe provides no protection from Level 4
|
||
spells or higher, or spells currently in effect prior to casting Minor Globe of Invulnerability. Dispel
|
||
Magic dismisses the spell.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Globe of Invulnerability (Minor)}} {{Level=4}} {{Range=0}} {{Duration=1 Round/Level}} {{Description=A shimmering magical sphere (10x10 feet) surrounds the wizard and negates Level 1 to 3 spells. This includes spells targeted at the caster or areas of effect that include the caster. The caster may throw spells from the globe normally. The globe provides no protection from Level 4 spells or higher, or spells currently in effect prior to casting Minor Globe of Invulnerability. Dispel Magic dismisses the spell.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox"
|
||
name="attr_magic_user_spell3_gregvards_green_tentacles" style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Gregvard's Green Tentacles</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">See below</span>
|
||
<span class="ds-prepred-spell-duration">3 Rounds/1 Round per Level</span>
|
||
<span class="ds-prepred-spell-description">This spell conjures a single, green tentacle to rise within 10 feet
|
||
of the caster. The tentacle will emerge from the ground (earth, stone, sand, etc.) or water. The tentacle is
|
||
five feet long, AC: 4, and has the caster's current hit points. One tentacle will be conjured for every
|
||
level of experience of the caster. Multiple tentacles must be five feet apart. Any being caught in the area
|
||
of effect is subject to attack. Tentacles are mindless and lash out at the closest moving target (friend or
|
||
foe). A tentacle can smack a single opponent for 1d4 points of damage or attempt to entangle a single target
|
||
for the duration of the spell (save versus Stone each round to negate). Note that held opponents are +4 to
|
||
hit. Damage while entangled is shared between the target and the tentacle. When the spell concludes, the
|
||
tentacles shrink back into the ground.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Gregvard's Green Tentacles}} {{Level=3}} {{Range=See below}} {{Duration=3 Rounds/1 Round per Level}} {{Description=This spell conjures a single, green tentacle to rise within 10 feet of the caster. The tentacle will emerge from the ground (earth, stone, sand, etc.) or water. The tentacle is five feet long, AC: 4, and has the caster's current hit points. One tentacle will be conjured for every level of experience of the caster. Multiple tentacles must be five feet apart. Any being caught in the area of effect is subject to attack. Tentacles are mindless and lash out at the closest moving target (friend or foe). A tentacle can smack a single opponent for 1d4 points of damage or attempt to entangle a single target for the duration of the spell (save versus Stone each round to negate). Note that held opponents are +4 to hit. Damage while entangled is shared between the target and the tentacle. When the spell concludes, the tentacles shrink back into the ground.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell2_grelfs_acidic_arrow"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Grelf's Acidic Arrow</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">30 Feet/5 Feet per Level</span>
|
||
<span class="ds-prepred-spell-duration">Varies</span>
|
||
<span class="ds-prepred-spell-description">This dweomer conjures a magical missile, or arrow, that flies to
|
||
its target as if from a longbow.<br><br>The arrow strikes at +1 to hit, and on impact, explodes in a splash
|
||
of acid that causes 2d4 points of damage. For each level beyond the third, the acid lingers for an
|
||
additional round and causes 1d4 damage (one round at Level 4, two rounds at level 5, and so on).</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Grelf's Acidic Arrow}} {{Level=2}} {{Range=30 Feet/5 Feet per Level}} {{Duration=Varies}} {{Description=This dweomer conjures a magical missile, or arrow, that flies to its target as if from a longbow.<br><br>The arrow strikes at +1 to hit, and on impact, explodes in a splash of acid that causes 2d4 points of damage. For each level beyond the third, the acid lingers for an additional round and causes 1d4 damage (one round at Level 4, two rounds at level 5, and so on).}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell6_guards_and_wards"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Guards and Wards</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">N/A</span>
|
||
<span class="ds-prepred-spell-duration">6 Turns/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell is used to defend a wizard tower, keep, or castle. The
|
||
ward protects a 20x20 foot space with an additional 10x10 per level of the caster.<br><br>The spell enacts
|
||
the following enchantments within the designated area:<br><br>Confusion : At every intersection, all beings
|
||
are subject to a Confusion spell effect and are as likely to make a correct turn as a wrong one
|
||
(50%).<br><br>False Doors : One door (per level) is covered by an illusionary wall.<br><br>Fog : Mist fills
|
||
all hallways and obscures all vision, including darkvision, beyond 10 feet.<br><br>Web : Webs fill all
|
||
stairwells. The webs are identical to the spell of the same name. However, if the webs are removed or burned
|
||
away they regrow in one turn if the spell's duration allows.<br><br>Wizard Lock : All doors are Wizard
|
||
Locked.<br><br>Beyond the above, the mage can select one of the following spell effects: Dancing Lights in
|
||
four hallways, Magic Mouth in two places, Stinking Cloud in two locations (the clouds reappear within 1 turn
|
||
subject to duration), Gust of Wind in one room or hallway, or Suggestion in one location (the caster selects
|
||
a 10x10 foot space and all those who pass within are subject to the effect).<br><br>The area of effect
|
||
radiates a powerful dweomer of magic. The application of Dispel Magic on a specific aspect of Guards and
|
||
Wards , removes only the singular effect.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Guards and Wards}} {{Level=6}} {{Range=N/A}} {{Duration=6 Turns/Level}} {{Description=This spell is used to defend a wizard tower, keep, or castle. The ward protects a 20x20 foot space with an additional 10x10 per level of the caster.<br><br>The spell enacts the following enchantments within the designated area:<br><br>Confusion : At every intersection, all beings are subject to a Confusion spell effect and are as likely to make a correct turn as a wrong one (50%).<br><br>False Doors : One door (per level) is covered by an illusionary wall.<br><br>Fog : Mist fills all hallways and obscures all vision, including darkvision, beyond 10 feet.<br><br>Web : Webs fill all stairwells. The webs are identical to the spell of the same name. However, if the webs are removed or burned away they regrow in one turn if the spell's duration allows.<br><br>Wizard Lock : All doors are Wizard Locked.<br><br>Beyond the above, the mage can select one of the following spell effects: Dancing Lights in four hallways, Magic Mouth in two places, Stinking Cloud in two locations (the clouds reappear within 1 turn subject to duration), Gust of Wind in one room or hallway, or Suggestion in one location (the caster selects a 10x10 foot space and all those who pass within are subject to the effect).<br><br>The area of effect radiates a powerful dweomer of magic. The application of Dispel Magic on a specific aspect of Guards and Wards , removes only the singular effect.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell3_gust_of_wind"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Gust of Wind</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">1 Round</span>
|
||
<span class="ds-prepred-spell-description">This spell conjures a powerful blast of wind. All those in a path
|
||
10 feet long and 10 feet wide (+10 feet in length per level) from the caster are affected. Small avian
|
||
monsters are pushed backwards 1d6x10 feet. All medium-sized creatures cannot advance forward, and large
|
||
avian monsters are reduced to half speed. Gust of Wind extinguishes all unprotected flames such as torches.
|
||
The spell may (5% per caster level) extinguish protected flames, such as lanterns.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Gust of Wind}} {{Level=3}} {{Range=0}} {{Duration=1 Round}} {{Description=This spell conjures a powerful blast of wind. All those in a path 10 feet long and 10 feet wide (+10 feet in length per level) from the caster are affected. Small avian monsters are pushed backwards 1d6x10 feet. All medium-sized creatures cannot advance forward, and large avian monsters are reduced to half speed. Gust of Wind extinguishes all unprotected flames such as torches. The spell may (5% per caster level) extinguish protected flames, such as lanterns.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell4_hallucinatory_forest"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Hallucinatory Forest</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">30 Feet</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">Through this spell the caster creates an illusion over a specific
|
||
area. The terrain appears, smells, and sounds exactly as determined by the caster. Dispel Magic also
|
||
dismisses the illusion. The caster may change a 10x10 foot area (per level). If cast by a druid, enchanted
|
||
woodland creatures such as dryads, brownies, nymphs, pixies, satyrs, etc., will recognize the truth of the
|
||
illusion. The spell ends if an intelligent being contacts the terrain.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Hallucinatory Forest}} {{Level=4}} {{Range=30 Feet}} {{Duration=See below}} {{Description=Through this spell the caster creates an illusion over a specific area. The terrain appears, smells, and sounds exactly as determined by the caster. Dispel Magic also dismisses the illusion. The caster may change a 10x10 foot area (per level). If cast by a druid, enchanted woodland creatures such as dryads, brownies, nymphs, pixies, satyrs, etc., will recognize the truth of the illusion. The spell ends if an intelligent being contacts the terrain.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell3_haste"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Haste✦</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">10 Feet</span>
|
||
<span class="ds-prepred-spell-duration">3 Turns</span>
|
||
<span class="ds-prepred-spell-description">This spell accelerates recipients to twice their normal speed
|
||
across all movement forms (running, flying, climbing, swimming, burrowing, etc.). The caster affects a
|
||
number of beings equal to experience level. A Hasted subject, therefore, makes twice the number of attacks
|
||
per round. The spell does not double the Cleave Ability for fighters, rangers, and paladins, only the number
|
||
of attacks per round. Spell-casting is unaffected and the caster may not stack additional Haste spells on
|
||
the same subject(s). The reverse of the spell, Slow , reduces all attacks and movement by half. Like Haste ,
|
||
Slow does not affect spell-casting. The two spells counteract each other and reduce movement to normal
|
||
rates.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Haste✦}} {{Level=3}} {{Range=10 Feet}} {{Duration=3 Turns}} {{Description=This spell accelerates recipients to twice their normal speed across all movement forms (running, flying, climbing, swimming, burrowing, etc.). The caster affects a number of beings equal to experience level. A Hasted subject, therefore, makes twice the number of attacks per round. The spell does not double the Cleave Ability for fighters, rangers, and paladins, only the number of attacks per round. Spell-casting is unaffected and the caster may not stack additional Haste spells on the same subject(s). The reverse of the spell, Slow , reduces all attacks and movement by half. Like Haste , Slow does not affect spell-casting. The two spells counteract each other and reduce movement to normal rates.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell3_slow"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Slow†</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">10 Feet</span>
|
||
<span class="ds-prepred-spell-duration">3 Turns</span>
|
||
<span class="ds-prepred-spell-description">Halves the target's movement and number of attacks per round. Does
|
||
not affect spellcasting. Cancels Haste.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Slow†}} {{Level=3}} {{Range=10 Feet}} {{Duration=3 Turns}} {{Description=Halves the target's movement and number of attacks per round. Does not affect spellcasting. Cancels Haste.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell1_hitzemuns_blue_feet"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Hitzemun's Blue Feet</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn/1 Round per Level</span>
|
||
<span class="ds-prepred-spell-description">As a boy, the Ice Mage Hitzemun's mentor insisted that he should
|
||
experience the cold as often as possible. Hitzemun wrote Hitzemun's Blue Feet to provide himself some
|
||
immunity from freezing temperatures (+2 bonus on all cold-related saves for the duration of the spell). As a
|
||
side effect, Hitzemun found that he could use the spell to gain traction on icy surfaces - but only when
|
||
barefoot.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Hitzemun's Blue Feet}} {{Level=1}} {{Range=Touch}} {{Duration=1 Turn/1 Round per Level}} {{Description=As a boy, the Ice Mage Hitzemun's mentor insisted that he should experience the cold as often as possible. Hitzemun wrote Hitzemun's Blue Feet to provide himself some immunity from freezing temperatures (+2 bonus on all cold-related saves for the duration of the spell). As a side effect, Hitzemun found that he could use the spell to gain traction on icy surfaces - but only when barefoot.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell5_hold_monster"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Hold Monster</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">20 Feet</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">Through this dweomer, a magic-user may paralyze one to four
|
||
monsters for the duration of the spell. A saving throw modifier (Spell) is applied subject to the number of
|
||
targets: 3-4 (no modifier), 2 (-1), and 1 (-2). Undead are unaffected by the spell as well as those with
|
||
immunity to mind-influencing spells.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Hold Monster}} {{Level=5}} {{Range=20 Feet}} {{Duration=1 Round/Level}} {{Description=Through this dweomer, a magic-user may paralyze one to four monsters for the duration of the spell. A saving throw modifier (Spell) is applied subject to the number of targets: 3-4 (no modifier), 2 (-1), and 1 (-2). Undead are unaffected by the spell as well as those with immunity to mind-influencing spells.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell3_hold_person"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Hold Person</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">20 Feet</span>
|
||
<span class="ds-prepred-spell-duration">4 Rounds/1 Round per Level</span>
|
||
<span class="ds-prepred-spell-description">By means of this spell the caster immobilizes one to three humanoid
|
||
targets. A saving throw modifier (Spell) is applied subject to the number of targets: 3 (no modifier), 2
|
||
(-1), and 1 (-2). Undead are unaffected by the spell as well as those with immunity to mind- influencing
|
||
spells.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Hold Person}} {{Level=3}} {{Range=20 Feet}} {{Duration=4 Rounds/1 Round per Level}} {{Description=By means of this spell the caster immobilizes one to three humanoid targets. A saving throw modifier (Spell) is applied subject to the number of targets: 3 (no modifier), 2 (-1), and 1 (-2). Undead are unaffected by the spell as well as those with immunity to mind- influencing spells.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell1_hold_portal"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Hold Portal</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">10 Feet</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">By means of this spell, a wizard holds a portal closed. The portal
|
||
may be a window, door, gate, portcullis, or shutter, and can be made of metal, wood, or stone. The spell
|
||
holds the door securely shut, as if closed and locked. A Knock spell or Dispel Magic dismisses Hold Portal.
|
||
To invoke the spell, the magic-user must recite “Hold the Door!” three times.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Hold Portal}} {{Level=1}} {{Range=10 Feet}} {{Duration=1 Round/Level}} {{Description=By means of this spell, a wizard holds a portal closed. The portal may be a window, door, gate, portcullis, or shutter, and can be made of metal, wood, or stone. The spell holds the door securely shut, as if closed and locked. A Knock spell or Dispel Magic dismisses Hold Portal. To invoke the spell, the magic-user must recite “Hold the Door!” three times.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell4_ice_storm"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Ice Storm</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">See below</span>
|
||
<span class="ds-prepred-spell-duration">1 Round</span>
|
||
<span class="ds-prepred-spell-description">Through this spell the caster's calls forth great hailstones for
|
||
one round. The Ice Storm deals 3d10 points damage to every creature in a 40x40 foot area. As an alternative,
|
||
the spell may call a Sleet Storm in a 80x80 foot radius. Movement within the area of effect is halved with a
|
||
1-3 on d6 chance of falling prone.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Ice Storm}} {{Level=4}} {{Range=See below}} {{Duration=1 Round}} {{Description=Through this spell the caster's calls forth great hailstones for one round. The Ice Storm deals 3d10 points damage to every creature in a 40x40 foot area. As an alternative, the spell may call a Sleet Storm in a 80x80 foot radius. Movement within the area of effect is halved with a 1-3 on d6 chance of falling prone.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell1_identify"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Identify</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level per Stage</span>
|
||
<span class="ds-prepred-spell-description">This spell divines the enchantment of a single magic item through
|
||
two methods: Preliminary Observation and Practical Examination. Preliminary Observation: The initial stage
|
||
of assessment requires external examination of the item. There is a 10% chance (+5% per level and +5% per
|
||
Intelligence Modifier) that the magic-user may divine a curse prior to equipping an item. Practical
|
||
Examination: The second stage of assessment requires the magic-user equip the item in question. Therefore, a
|
||
potion must be sipped, boots must be worn, or a weapon held in-hand, etc. The caster possesses a 15% chance
|
||
(+5% per level) each round of discerning one power of an item. This includes curses not detected in
|
||
Preliminary Observation. The wizard receives an additional 5% for each point of Intelligence bonus. The
|
||
spell can divine specific powers and abilities, but this excludes weapon or armor bonuses. These must be
|
||
determined exclusively in combat. Instead, the mage divines a qualitative understanding that an enchantment
|
||
is “minor,” “moderate,” or “strong.” Similarly, if an item like a wand possesses a specific number of
|
||
charges, the spell provides a qualitative discernment expressed as “few” (under 10), “several” (over 10) or
|
||
“many” (over 20). The MC rolls the dice for this spell in secret.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Identify}} {{Level=1}} {{Range=Touch}} {{Duration=1 Round/Level per Stage}} {{Description=This spell divines the enchantment of a single magic item through two methods: Preliminary Observation and Practical Examination. Preliminary Observation: The initial stage of assessment requires external examination of the item. There is a 10% chance (+5% per level and +5% per Intelligence Modifier) that the magic-user may divine a curse prior to equipping an item. Practical Examination: The second stage of assessment requires the magic-user equip the item in question. Therefore, a potion must be sipped, boots must be worn, or a weapon held in-hand, etc. The caster possesses a 15% chance (+5% per level) each round of discerning one power of an item. This includes curses not detected in Preliminary Observation. The wizard receives an additional 5% for each point of Intelligence bonus. The spell can divine specific powers and abilities, but this excludes weapon or armor bonuses. These must be determined exclusively in combat. Instead, the mage divines a qualitative understanding that an enchantment is “minor,” “moderate,” or “strong.” Similarly, if an item like a wand possesses a specific number of charges, the spell provides a qualitative discernment expressed as “few” (under 10), “several” (over 10) or “many” (over 20). The MC rolls the dice for this spell in secret.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell9_imprisonment"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Imprisonment✦</span>
|
||
<span class="ds-prepred-spell-level">9</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">Imprisonment locks a target in a state of suspended animation (see
|
||
Temporal Stasis ) in an impenetrable sphere deep below the earth. The target remains incarcerated until a
|
||
Freedom spell (the reverse) is cast on the imprisoned. A search via magic, Crystal Ball , Locate Object , or
|
||
any other form of divination will not locate the imprisoned subject.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Imprisonment✦}} {{Level=9}} {{Range=Touch}} {{Duration=Permanent}} {{Description=Imprisonment locks a target in a state of suspended animation (see Temporal Stasis ) in an impenetrable sphere deep below the earth. The target remains incarcerated until a Freedom spell (the reverse) is cast on the imprisoned. A search via magic, Crystal Ball , Locate Object , or any other form of divination will not locate the imprisoned subject.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell9_freedom"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Freedom†</span>
|
||
<span class="ds-prepred-spell-level">9</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">Frees a creature trapped by Imprisonment, ending their suspended
|
||
animation and restoring them.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Freedom†}} {{Level=9}} {{Range=Touch}} {{Duration=Permanent}} {{Description=Frees a creature trapped by Imprisonment, ending their suspended animation and restoring them.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell8_incendiary_cloud"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Incendiary Cloud</span>
|
||
<span class="ds-prepred-spell-level">8</span>
|
||
<span class="ds-prepred-spell-range">30 Feet</span>
|
||
<span class="ds-prepred-spell-duration">4 Rounds/Plus 1d6 Rounds</span>
|
||
<span class="ds-prepred-spell-description">An Incendiary Cloud creates a mist of black, burning smoke with
|
||
searing embers (20x20x20 feet). The smoke obscures all vision. The embers of the cloud deal damage in the
|
||
third round equivalent to half the mage's level. The cloud's heat peaks in the fourth round and causes
|
||
damage equal to the mage's level. In the fifth round, the damage lessens to half the mage's level, and the
|
||
mist deals no damage in subsequent rounds. All those in the cloud receive a save (Spell) in the third round.
|
||
If successful, damage is halved for the length of exposure. A new save is allowed in the fourth and fifth
|
||
round (if necessary).</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Incendiary Cloud}} {{Level=8}} {{Range=30 Feet}} {{Duration=4 Rounds/Plus 1d6 Rounds}} {{Description=An Incendiary Cloud creates a mist of black, burning smoke with searing embers (20x20x20 feet). The smoke obscures all vision. The embers of the cloud deal damage in the third round equivalent to half the mage's level. The cloud's heat peaks in the fourth round and causes damage equal to the mage's level. In the fifth round, the damage lessens to half the mage's level, and the mist deals no damage in subsequent rounds. All those in the cloud receive a save (Spell) in the third round. If successful, damage is halved for the length of exposure. A new save is allowed in the fourth and fifth round (if necessary).}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell2_invisibility"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Invisibility</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">Through this spell the caster or a designated recipient turns
|
||
invisible. The invisibility is complete even from darkvision. The recipient cannot be seen by friend or foe.
|
||
The recipient's equipment also vanishes. However, anything dropped appears and anything picked up after the
|
||
spell is cast does not turn invisible. The recipient produces detectable evidence (for example, footfalls,
|
||
stepping in puddles, or splashing in water). The recipient also creates visible footprints, if applicable.
|
||
The spell is indefinite until the subject chooses to attack. An attack includes any action that causes
|
||
damage to an opponent. Indirect actions, or actions directed at inanimate objects, do not break
|
||
Invisibility. Thus, a subject could summon monsters and order them to attack, or destroy a bridge while
|
||
enemies travel across it, trigger remote traps, while remaining invisible. However, if the subject makes a
|
||
direct attack, s/he immediately becomes visible. Spells that target or buff allies, but do not target
|
||
enemies, are not considered attacks, even if they include enemies in the area of effect.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Invisibility}} {{Level=2}} {{Range=Touch}} {{Duration=See below}} {{Description=Through this spell the caster or a designated recipient turns invisible. The invisibility is complete even from darkvision. The recipient cannot be seen by friend or foe. The recipient's equipment also vanishes. However, anything dropped appears and anything picked up after the spell is cast does not turn invisible. The recipient produces detectable evidence (for example, footfalls, stepping in puddles, or splashing in water). The recipient also creates visible footprints, if applicable. The spell is indefinite until the subject chooses to attack. An attack includes any action that causes damage to an opponent. Indirect actions, or actions directed at inanimate objects, do not break Invisibility. Thus, a subject could summon monsters and order them to attack, or destroy a bridge while enemies travel across it, trigger remote traps, while remaining invisible. However, if the subject makes a direct attack, s/he immediately becomes visible. Spells that target or buff allies, but do not target enemies, are not considered attacks, even if they include enemies in the area of effect.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell3_invisibility_10_feet"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Invisibility (10 Feet)</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">This spell operates as per Invisibility , but cloaks all those
|
||
within 10 feet of the caster (or recipient). All subjects that move outside the 10 foot radius immediately
|
||
become visible.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Invisibility (10 Feet)}} {{Level=3}} {{Range=Touch}} {{Duration=See below}} {{Description=This spell operates as per Invisibility , but cloaks all those within 10 feet of the caster (or recipient). All subjects that move outside the 10 foot radius immediately become visible.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell7_invisibility_mass"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Invisibility (Mass)</span>
|
||
<span class="ds-prepred-spell-level">7</span>
|
||
<span class="ds-prepred-spell-range">10 Feet/Level</span>
|
||
<span class="ds-prepred-spell-duration">Special</span>
|
||
<span class="ds-prepred-spell-description">This spell affects all subjects in a 30 foot radius. Otherwise, the
|
||
incantation functions as per Advanced Invisibility.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Invisibility (Mass)}} {{Level=7}} {{Range=10 Feet/Level}} {{Duration=Special}} {{Description=This spell affects all subjects in a 30 foot radius. Otherwise, the incantation functions as per Advanced Invisibility.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell1_jump"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Jump</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn</span>
|
||
<span class="ds-prepred-spell-description">Through this spell, the caster may leap up (10 feet), backward (10
|
||
feet), or forward (30 feet). The leap apex backward or forward is two feet. Upon casting the spell, the
|
||
wizard can perform the single leap at any time during the spell's duration. The caster may perform an
|
||
additional jump per three levels (two at Level 4, three at Level 7, etc.). The spell's duration remains one
|
||
turn regardless of the total jumps performed.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Jump}} {{Level=1}} {{Range=Touch}} {{Duration=1 Turn}} {{Description=Through this spell, the caster may leap up (10 feet), backward (10 feet), or forward (30 feet). The leap apex backward or forward is two feet. Upon casting the spell, the wizard can perform the single leap at any time during the spell's duration. The caster may perform an additional jump per three levels (two at Level 4, three at Level 7, etc.). The spell's duration remains one turn regardless of the total jumps performed.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell2_knock"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Knock</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">5 Feet</span>
|
||
<span class="ds-prepred-spell-duration">1 Round</span>
|
||
<span class="ds-prepred-spell-description">This spell opens any locked, stuck, barred, or held doors or
|
||
structure. In addition to doors, the spell opens known secret doors, locked chests and coffers, etc.
|
||
Unlocked objects do not re-lock or become stuck after the spell is cast. Knock will not raise a portcullis
|
||
or gate. It has no effect on knotted ropes.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Knock}} {{Level=2}} {{Range=5 Feet}} {{Duration=1 Round}} {{Description=This spell opens any locked, stuck, barred, or held doors or structure. In addition to doors, the spell opens known secret doors, locked chests and coffers, etc. Unlocked objects do not re-lock or become stuck after the spell is cast. Knock will not raise a portcullis or gate. It has no effect on knotted ropes.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell8_koweewahs_clenched_fist"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Koweewah's Clenched Fist</span>
|
||
<span class="ds-prepred-spell-level">8</span>
|
||
<span class="ds-prepred-spell-range">5 Feet/Level</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">Through this spell the caster conjures a massive, humanoid, ghostly
|
||
hand to attack once per round. The attack always hits. Koweewah's Clenched Fist has AC: 9 and the caster's
|
||
current hit points. The caster must concentrate exclusively on the spell. The damage from the hand is
|
||
variable. Roll the chart below for damage each round: 1d20 Damage and Effect 20 Punch-Out!: 4d6 & Stunned
|
||
for 1d3 Rds 17-19 Hard Punch: 3d6 13-16 Punch: 2d6 1-12 Glancing Blow: 1d6</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Koweewah's Clenched Fist}} {{Level=8}} {{Range=5 Feet/Level}} {{Duration=1 Round/Level}} {{Description=Through this spell the caster conjures a massive, humanoid, ghostly hand to attack once per round. The attack always hits. Koweewah's Clenched Fist has AC: 9 and the caster's current hit points. The caster must concentrate exclusively on the spell. The damage from the hand is variable. Roll the chart below for damage each round: 1d20 Damage and Effect 20 Punch-Out!: 4d6 & Stunned for 1d3 Rds 17-19 Hard Punch: 3d6 13-16 Punch: 2d6 1-12 Glancing Blow: 1d6}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell9_koweewahs_crushing_hand"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Koweewah's Crushing Hand</span>
|
||
<span class="ds-prepred-spell-level">9</span>
|
||
<span class="ds-prepred-spell-range">5 Feet/Level</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">Through this spell, the mage conjures a large, ghostly hand that
|
||
grasps and squeezes one target of choice per round. The attack always hits and the duration of the squeeze
|
||
determines the damage. In Round 1: 1d10 hit points of damage, Round 2-3: 2d10, and Round 4: 4d10. Koweewah's
|
||
Crushing Hand has AC: 9 and the caster's current hit points.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Koweewah's Crushing Hand}} {{Level=9}} {{Range=5 Feet/Level}} {{Duration=1 Round/Level}} {{Description=Through this spell, the mage conjures a large, ghostly hand that grasps and squeezes one target of choice per round. The attack always hits and the duration of the squeeze determines the damage. In Round 1: 1d10 hit points of damage, Round 2-3: 2d10, and Round 4: 4d10. Koweewah's Crushing Hand has AC: 9 and the caster's current hit points.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell6_koweewahs_forceful_hand"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Koweewah's Forceful Hand</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">10 Feet/Level</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell functions similar to Koweewah's Interposing Hand ,
|
||
except that the Forceful Hand pushes an opponent away. The hand can shove beings less than 500 pounds. Those
|
||
between 500-2,000 pounds are reduced to ten feet per round, and those greater than 2,000 pounds (but under
|
||
8,000 pounds) are reduced to movement of five feet per round. Koweewah's Forceful Hand has AC: 9 and the
|
||
caster's current hit points.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Koweewah's Forceful Hand}} {{Level=6}} {{Range=10 Feet/Level}} {{Duration=1 Round/Level}} {{Description=This spell functions similar to Koweewah's Interposing Hand , except that the Forceful Hand pushes an opponent away. The hand can shove beings less than 500 pounds. Those between 500-2,000 pounds are reduced to ten feet per round, and those greater than 2,000 pounds (but under 8,000 pounds) are reduced to movement of five feet per round. Koweewah's Forceful Hand has AC: 9 and the caster's current hit points.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell7_koweewahs_grasping_hand"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Koweewah's Grasping Hand</span>
|
||
<span class="ds-prepred-spell-level">7</span>
|
||
<span class="ds-prepred-spell-range">10 Feet/Level</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell creates a huge, ghostly hand that serves as an obstacle,
|
||
or barrier, between the opponent and the caster. Alternatively, the hand can grasp and hold a target in
|
||
place (less than 1,000 pounds). The hand can push/grab a monster of 4,000 pounds or less, or less than
|
||
16,000 pounds, but this only reduces speed to 10 feet and 5 feet per round, respectively. The spell has the
|
||
mage's current hit points and AC: 9.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Koweewah's Grasping Hand}} {{Level=7}} {{Range=10 Feet/Level}} {{Duration=1 Round/Level}} {{Description=This spell creates a huge, ghostly hand that serves as an obstacle, or barrier, between the opponent and the caster. Alternatively, the hand can grasp and hold a target in place (less than 1,000 pounds). The hand can push/grab a monster of 4,000 pounds or less, or less than 16,000 pounds, but this only reduces speed to 10 feet and 5 feet per round, respectively. The spell has the mage's current hit points and AC: 9.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox"
|
||
name="attr_magic_user_spell5_koweewahs_interposing_hand" style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Koweewah's Interposing Hand</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">10 Feet/Level</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">Koweewah's Interposing Hand creates a huge ghostly magic hand. The
|
||
hand materializes between the wizard and a single opponent and mirrors the two combatants perfectly. Despite
|
||
effort to circumnavigate the hand, it always positions itself exactly in between. Any being that attempts to
|
||
push through the hand, weighing less than 2,000 pounds, halves its movement for the spell's duration. The
|
||
hand has AC: 9 and the caster's HP.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Koweewah's Interposing Hand}} {{Level=5}} {{Range=10 Feet/Level}} {{Duration=1 Round/Level}} {{Description=Koweewah's Interposing Hand creates a huge ghostly magic hand. The hand materializes between the wizard and a single opponent and mirrors the two combatants perfectly. Despite effort to circumnavigate the hand, it always positions itself exactly in between. Any being that attempts to push through the hand, weighing less than 2,000 pounds, halves its movement for the spell's duration. The hand has AC: 9 and the caster's HP.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell2_koweewahs_shushing_hand"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Koweewah's Shushing Hand</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">40 Feet/2 per Level</span>
|
||
<span class="ds-prepred-spell-duration">2 Rounds/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell creates a human-sized hand that flies at the chosen
|
||
target and clamps tightly over its mouth (a save versus Spell negates). A shushed target cannot speak,
|
||
cannot cast spells, and cannot use magic items that require a command word. The hand cannot be removed or
|
||
pulled away or be harmed by a physical attack. A shushed target is allowed an additional save in the rounds
|
||
after the first (at +1 on each) to break the dweomer. A successful Dispel Magic dismisses the hand without
|
||
injury to the affected target.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Koweewah's Shushing Hand}} {{Level=2}} {{Range=40 Feet/2 per Level}} {{Duration=2 Rounds/Level}} {{Description=This spell creates a human-sized hand that flies at the chosen target and clamps tightly over its mouth (a save versus Spell negates). A shushed target cannot speak, cannot cast spells, and cannot use magic items that require a command word. The hand cannot be removed or pulled away or be harmed by a physical attack. A shushed target is allowed an additional save in the rounds after the first (at +1 on each) to break the dweomer. A successful Dispel Magic dismisses the hand without injury to the affected target.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell6_legend_lore"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Legend Lore</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">The spell Legend Lore allows the caster to divine information about
|
||
a legendary place, thing, or person. The casting time of this spell varies subject to known information. For
|
||
example, the casting time of the spell is 1d4 turns if the wizard is standing in the location or if the
|
||
thing or person is present. On the other hand, if the magic-user only has information about a person or
|
||
thing, the casting time is 1d4+3 days. If the wizard only possesses rumors, the casting time is extended to
|
||
seven days. The magic-user falls into a deep trance while casting the spell. Upon completion, the caster
|
||
divines the desired information in question. The information gleaned is often guised in a metaphor, puzzle,
|
||
or riddle. If the place, thing, or person, is not legendary in importance, the spell provides no
|
||
information. The caster loses 2d8 (plus 10 pounds) from the casting and requires 1d4 days of
|
||
recovery.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Legend Lore}} {{Level=6}} {{Range=0}} {{Duration=See below}} {{Description=The spell Legend Lore allows the caster to divine information about a legendary place, thing, or person. The casting time of this spell varies subject to known information. For example, the casting time of the spell is 1d4 turns if the wizard is standing in the location or if the thing or person is present. On the other hand, if the magic-user only has information about a person or thing, the casting time is 1d4+3 days. If the wizard only possesses rumors, the casting time is extended to seven days. The magic-user falls into a deep trance while casting the spell. Upon completion, the caster divines the desired information in question. The information gleaned is often guised in a metaphor, puzzle, or riddle. If the place, thing, or person, is not legendary in importance, the spell provides no information. The caster loses 2d8 (plus 10 pounds) from the casting and requires 1d4 days of recovery.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell2_levitate"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Levitate</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">Through this spell, the caster (or the recipient) can levitate
|
||
upwards or downwards (20 feet per round) as desired for one turn per caster level. The spell does not allow
|
||
the caster to move horizontally, but may, for example, ascend a cliff face, and pull him/herself laterally
|
||
(at half movement rate). The recipient of the spell can levitate their body weight plus 100 pounds per
|
||
caster level.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Levitate}} {{Level=2}} {{Range=0}} {{Duration=See below}} {{Description=Through this spell, the caster (or the recipient) can levitate upwards or downwards (20 feet per round) as desired for one turn per caster level. The spell does not allow the caster to move horizontally, but may, for example, ascend a cliff face, and pull him/herself laterally (at half movement rate). The recipient of the spell can levitate their body weight plus 100 pounds per caster level.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell1_light"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Light✦</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">12 Feet</span>
|
||
<span class="ds-prepred-spell-duration">6 Turns/1 per Level</span>
|
||
<span class="ds-prepred-spell-description">This spell imbues an object with the brightness of a torch and
|
||
sheds light in a 20 foot radius. The spell is normally cast on a movable object (functions as a light source
|
||
impervious to drafts and gusts of wind). This spell may be cast on a being's eyes. In this case the target
|
||
is allowed a save (Spell) to negate. The target is blinded for the spell's duration if a save is failed. The
|
||
reverse of the spell, Darkness , provides the opposite effect. The caster can also use Darkness to target
|
||
the eyes (save applies).The two spells counter each other to return to normal lighting conditions.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Light✦}} {{Level=1}} {{Range=12 Feet}} {{Duration=6 Turns/1 per Level}} {{Description=This spell imbues an object with the brightness of a torch and sheds light in a 20 foot radius. The spell is normally cast on a movable object (functions as a light source impervious to drafts and gusts of wind). This spell may be cast on a being's eyes. In this case the target is allowed a save (Spell) to negate. The target is blinded for the spell's duration if a save is failed. The reverse of the spell, Darkness , provides the opposite effect. The caster can also use Darkness to target the eyes (save applies).The two spells counter each other to return to normal lighting conditions.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell1_darkness"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Darkness†</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">12 Feet</span>
|
||
<span class="ds-prepred-spell-duration">6 Turns/1 per Level</span>
|
||
<span class="ds-prepred-spell-description">Creates magical darkness in a 20-foot radius. Can blind a creature
|
||
if cast at their eyes. Cancels Light.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Darkness†}} {{Level=1}} {{Range=12 Feet}} {{Duration=6 Turns/1 per Level}} {{Description=Creates magical darkness in a 20-foot radius. Can blind a creature if cast at their eyes. Cancels Light.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell3_lightning_bolt"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Lightning Bolt</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">5 Feet/5 Feet per Level</span>
|
||
<span class="ds-prepred-spell-duration">Instantaneous</span>
|
||
<span class="ds-prepred-spell-description">Electrical energy crackles from the hands of the caster, as s/he
|
||
gathers and releases a bolt of lightning. The bolt deals 1d6 points of electrical damage per level (save
|
||
versus Spell for half-damage). The bolt is 60 feet long and 5 feet wide. The caster may damage more than one
|
||
target, if aligned in single file and the spell's range permits.<br><br>The spell ignites combustibles and
|
||
liquefies soft metals (bronze, gold, silver, lead, or copper). The spell destroys mundane barriers and may
|
||
continue through physical obstructions to the spell's full range, subject to the discretion of the Maze
|
||
Controller.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Lightning Bolt}} {{Level=3}} {{Range=5 Feet/5 Feet per Level}} {{Duration=Instantaneous}} {{Description=Electrical energy crackles from the hands of the caster, as s/he gathers and releases a bolt of lightning. The bolt deals 1d6 points of electrical damage per level (save versus Spell for half-damage). The bolt is 60 feet long and 5 feet wide. The caster may damage more than one target, if aligned in single file and the spell's range permits.<br><br>The spell ignites combustibles and liquefies soft metals (bronze, gold, silver, lead, or copper). The spell destroys mundane barriers and may continue through physical obstructions to the spell's full range, subject to the discretion of the Maze Controller.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell7_limited_wish"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Limited Wish</span>
|
||
<span class="ds-prepred-spell-level">7</span>
|
||
<span class="ds-prepred-spell-range">Unlimited</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">Through the spell Limited Wish the caster can recreate almost any
|
||
spell effect. A Limited Wish may, for example, duplicate up to any Level 7 spell, or undo harmful spell
|
||
effects, such as Geas or Quest. The caster could successfully attack or save at the next opportunity, or
|
||
produce any other effect commensurate with the above, as ruled by the Maze Controller. This spell could
|
||
grant knowledge or the answer to an unknown question or riddle. Note that Limited Wish need not match a
|
||
spell effect, but rather the result can be unique, as adjudicated by the Maze Controller.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Limited Wish}} {{Level=7}} {{Range=Unlimited}} {{Duration=See below}} {{Description=Through the spell Limited Wish the caster can recreate almost any spell effect. A Limited Wish may, for example, duplicate up to any Level 7 spell, or undo harmful spell effects, such as Geas or Quest. The caster could successfully attack or save at the next opportunity, or produce any other effect commensurate with the above, as ruled by the Maze Controller. This spell could grant knowledge or the answer to an unknown question or riddle. Note that Limited Wish need not match a spell effect, but rather the result can be unique, as adjudicated by the Maze Controller.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell2_locate_object"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Locate Object✦</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">5 Feet/5 Feet per Level</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">Through this spell, the caster senses the location of a familiar or
|
||
known object. A general search will result in finding the closest object of that type. A search for a
|
||
specific item requires accurate firsthand knowledge. The reverse, Obscure Object , allows the caster to hide
|
||
an item from location by spell or similar magical scrying device (i.e., Crystal Ball ).</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Locate Object✦}} {{Level=2}} {{Range=5 Feet/5 Feet per Level}} {{Duration=1 Round/Level}} {{Description=Through this spell, the caster senses the location of a familiar or known object. A general search will result in finding the closest object of that type. A search for a specific item requires accurate firsthand knowledge. The reverse, Obscure Object , allows the caster to hide an item from location by spell or similar magical scrying device (i.e., Crystal Ball ).}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell2_obscure_object"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Obscure Object†</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">5 Feet/5 Feet per Level</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">Hides an object from magical detection or location spells like
|
||
Locate Object or Crystal Ball.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Obscure Object†}} {{Level=2}} {{Range=5 Feet/5 Feet per Level}} {{Duration=1 Round/Level}} {{Description=Hides an object from magical detection or location spells like Locate Object or Crystal Ball.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell6_lower_water"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Lower Water</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">10 Feet/10 Feet per Level</span>
|
||
<span class="ds-prepred-spell-duration">5 Rounds/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell allows the caster to lower 11,000 square feet of water
|
||
per level for the spell's duration.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Lower Water}} {{Level=6}} {{Range=10 Feet/10 Feet per Level}} {{Duration=5 Rounds/Level}} {{Description=This spell allows the caster to lower 11,000 square feet of water per level for the spell's duration.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell5_magic_jar"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Magic Jar</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">30 Feet</span>
|
||
<span class="ds-prepred-spell-duration">Special</span>
|
||
<span class="ds-prepred-spell-description">Through Magic Jar , the caster transfers his or her soul in a
|
||
gemstone (known as a Magic Jar ), leaving the body in a state of suspended animation. Once transferred, the
|
||
wizard can then possess a body within 120 feet and force the target's soul into the Magic Jar. The caster
|
||
may, at any time, return to the jar (and return the trapped soul) and possess a different body. Magic Jar
|
||
concludes when the caster returns to his/her own body. To cast the spell, the caster must ensure the Magic
|
||
Jar in within range. Possessing a body requires a round and the target receives a saving throw (Spell) to
|
||
negate the spell. Successive saving throws are automatically successful. If the caster fails to possess his
|
||
or her target, the caster's soul remains in the jar. Upon a successful possession, the caster retains his or
|
||
her level, alignment, class, Intelligence, Wisdom, Charisma, but adopts the target's Consitution, Strength,
|
||
Dexterity, hit points, and physical abilities. The caster does not adopt the host's spells or spell-like
|
||
abilities. A Dispel Evil or Exorcism forces the caster out of the host's body. If the possessed host is
|
||
killed, the caster returns to the Magic Jar. If the host is slain outside the spell range, both the host and
|
||
the caster are slain. If the mage's body is killed, his or her soul is trapped in the Magic Jar until a
|
||
living being comes within range of possession. If the jar is smashed or destroyed while possessing a host,
|
||
the caster's soul is trapped in the host's body. In any scenario, a soul with no destination is
|
||
slain.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Magic Jar}} {{Level=5}} {{Range=30 Feet}} {{Duration=Special}} {{Description=Through Magic Jar , the caster transfers his or her soul in a gemstone (known as a Magic Jar ), leaving the body in a state of suspended animation. Once transferred, the wizard can then possess a body within 120 feet and force the target's soul into the Magic Jar. The caster may, at any time, return to the jar (and return the trapped soul) and possess a different body. Magic Jar concludes when the caster returns to his/her own body. To cast the spell, the caster must ensure the Magic Jar in within range. Possessing a body requires a round and the target receives a saving throw (Spell) to negate the spell. Successive saving throws are automatically successful. If the caster fails to possess his or her target, the caster's soul remains in the jar. Upon a successful possession, the caster retains his or her level, alignment, class, Intelligence, Wisdom, Charisma, but adopts the target's Consitution, Strength, Dexterity, hit points, and physical abilities. The caster does not adopt the host's spells or spell-like abilities. A Dispel Evil or Exorcism forces the caster out of the host's body. If the possessed host is killed, the caster returns to the Magic Jar. If the host is slain outside the spell range, both the host and the caster are slain. If the mage's body is killed, his or her soul is trapped in the Magic Jar until a living being comes within range of possession. If the jar is smashed or destroyed while possessing a host, the caster's soul is trapped in the host's body. In any scenario, a soul with no destination is slain.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell1_magic_missile"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Magic Missile</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">30 Feet/5 Feet per Level</span>
|
||
<span class="ds-prepred-spell-duration">Special</span>
|
||
<span class="ds-prepred-spell-description">An arrow of bright magical energy explodes from the caster's hand
|
||
and scores 1d4+1 points of damage. Regardless of combat or concealment, Magic Missile always strikes its
|
||
target even if the target is in combat or possesses concealment. Specific body parts cannot be targeted. For
|
||
every two caster levels, the magic-user gains an additional missile (two at Level 3, three at Level 5,
|
||
etc.). The spell Shield absorbs this spell for no damage.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Magic Missile}} {{Level=1}} {{Range=30 Feet/5 Feet per Level}} {{Duration=Special}} {{Description=An arrow of bright magical energy explodes from the caster's hand and scores 1d4+1 points of damage. Regardless of combat or concealment, Magic Missile always strikes its target even if the target is in combat or possesses concealment. Specific body parts cannot be targeted. For every two caster levels, the magic-user gains an additional missile (two at Level 3, three at Level 5, etc.). The spell Shield absorbs this spell for no damage.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell2_magic_mouth"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Magic Mouth</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">See below</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">This spell imbues an object with an invisible, enchanted mouth that
|
||
appears and speaks when triggered. A Magic Mouth can speak any message, in a language known by the caster to
|
||
a maximum of 25 words. The caster can designate the number of times the message repeats (to a maximum of 10
|
||
rounds). Magic Mouth cannot throw spells.<br><br>Regardless of where the wizard places Magic Mouth , the
|
||
lips exactly mimic the words uttered. If cast on a statue, for example, the statue's mouth would appear to
|
||
speak. The caster can place Magic Mouth on inanimate objects only.<br><br>The mouth triggers when specific
|
||
conditions are met at the time of casting. Triggers can be general, or specific, but must be tactile,
|
||
visual, or audible. Audible triggers could include general noise or a specific keyword. Visible or audible
|
||
actions can also be encoded. A Magic Mouth cannot discern between level, alignment, class, or hit dice,
|
||
unless keyed to garments. The trigger range is five feet per caster level. Therefore, a Level 6 wizard can
|
||
command a Magic Mouth to respond to a trigger as far as 30 feet away. A Magic Mouth can only respond subject
|
||
to its triggers. For example, a visual trigger requires line of sight. The spell's duration is permanent,
|
||
until its conditions are met and the spell discharges.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Magic Mouth}} {{Level=2}} {{Range=See below}} {{Duration=See below}} {{Description=This spell imbues an object with an invisible, enchanted mouth that appears and speaks when triggered. A Magic Mouth can speak any message, in a language known by the caster to a maximum of 25 words. The caster can designate the number of times the message repeats (to a maximum of 10 rounds). Magic Mouth cannot throw spells.<br><br>Regardless of where the wizard places Magic Mouth , the lips exactly mimic the words uttered. If cast on a statue, for example, the statue's mouth would appear to speak. The caster can place Magic Mouth on inanimate objects only.<br><br>The mouth triggers when specific conditions are met at the time of casting. Triggers can be general, or specific, but must be tactile, visual, or audible. Audible triggers could include general noise or a specific keyword. Visible or audible actions can also be encoded. A Magic Mouth cannot discern between level, alignment, class, or hit dice, unless keyed to garments. The trigger range is five feet per caster level. Therefore, a Level 6 wizard can command a Magic Mouth to respond to a trigger as far as 30 feet away. A Magic Mouth can only respond subject to its triggers. For example, a visual trigger requires line of sight. The spell's duration is permanent, until its conditions are met and the spell discharges.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell8_mass_charm"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Mass Charm</span>
|
||
<span class="ds-prepred-spell-level">8</span>
|
||
<span class="ds-prepred-spell-range">5 Feet/Level</span>
|
||
<span class="ds-prepred-spell-duration">Special</span>
|
||
<span class="ds-prepred-spell-description">This spell functions akin to Charm Monster. The mage may charm a
|
||
number of hit dice equal to double his/ her level. All those affected must be within a 30x30 foot square
|
||
area. All saving throws versus Spell are at -2.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Mass Charm}} {{Level=8}} {{Range=5 Feet/Level}} {{Duration=Special}} {{Description=This spell functions akin to Charm Monster. The mage may charm a number of hit dice equal to double his/ her level. All those affected must be within a 30x30 foot square area. All saving throws versus Spell are at -2.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell4_massmorph"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Massmorph</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">10 Feet</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">This spell creates an illusionary forest in a 20x20 foot radius
|
||
(plus 10x10 feet per level). Up to a dozen medium-sized or equivalent beings (per level) can be concealed by
|
||
Massmorph. Anyone inside the area of effect that exits becomes visible. The caster can end the spell at any
|
||
time.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Massmorph}} {{Level=4}} {{Range=10 Feet}} {{Duration=See below}} {{Description=This spell creates an illusionary forest in a 20x20 foot radius (plus 10x10 feet per level). Up to a dozen medium-sized or equivalent beings (per level) can be concealed by Massmorph. Anyone inside the area of effect that exits becomes visible. The caster can end the spell at any time.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox"
|
||
name="attr_magic_user_spell1_mazakalas_glassy_facsimile" style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Mazakala's Glassy Facsimile</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">30 Feet</span>
|
||
<span class="ds-prepred-spell-duration">Permanent until Touched</span>
|
||
<span class="ds-prepred-spell-description">By means of this spell, a magic-user or illusionist can create a
|
||
sparkly, phantasmagorical simulacrum of a single medium-sized being. If the being beholds its copy, it must
|
||
make a save (Spell) or be entranced (unable to function) beyond staring at the Glassy Facsimile for 1d4+1
|
||
rounds before reaching out and touching the phantasm, thereby ending the spell. The spell has no effect on
|
||
4+ hit dice creatures and the target must have a clear line of sight to the copied being.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Mazakala's Glassy Facsimile}} {{Level=1}} {{Range=30 Feet}} {{Duration=Permanent until Touched}} {{Description=By means of this spell, a magic-user or illusionist can create a sparkly, phantasmagorical simulacrum of a single medium-sized being. If the being beholds its copy, it must make a save (Spell) or be entranced (unable to function) beyond staring at the Glassy Facsimile for 1d4+1 rounds before reaching out and touching the phantasm, thereby ending the spell. The spell has no effect on 4+ hit dice creatures and the target must have a clear line of sight to the copied being.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox"
|
||
name="attr_magic_user_spell1_mazakalas_imperfect_panic" style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Mazakala's Imperfect Panic</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">40 Feet</span>
|
||
<span class="ds-prepred-spell-duration">3 Rounds/1 per Level</span>
|
||
<span class="ds-prepred-spell-description">By means of this spell the caster inspires panic in 1d4 (+1 per
|
||
level) humanoid creatures of no greater than two hit dice (saving throw versus Spell for no effect). The
|
||
result of Mazakala's Imperfect Panic is subject to the table below: 1d6 Spell Effect 1 Run in random
|
||
direction 2 Sob uncontrollably 3 Attack nearest humanoid 4 Vomit loudly 5 Assume fetal position 6 Maze
|
||
Controller's Choice*</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Mazakala's Imperfect Panic}} {{Level=1}} {{Range=40 Feet}} {{Duration=3 Rounds/1 per Level}} {{Description=By means of this spell the caster inspires panic in 1d4 (+1 per level) humanoid creatures of no greater than two hit dice (saving throw versus Spell for no effect). The result of Mazakala's Imperfect Panic is subject to the table below: 1d6 Spell Effect 1 Run in random direction 2 Sob uncontrollably 3 Attack nearest humanoid 4 Vomit loudly 5 Assume fetal position 6 Maze Controller's Choice*}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox"
|
||
name="attr_magic_user_spell1_mazakalas_mucilaginous_effluvium" style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Mazakala's Mucilaginous Effluvium</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">10 Feet/5 Feet per Level (Max 30 feet)</span>
|
||
<span class="ds-prepred-spell-duration">1 Round</span>
|
||
<span class="ds-prepred-spell-description">By means of this spell, the caster spews forth a ball of sticky
|
||
mucilage that s/he can direct toward a single humanoid opponent (or other target, subject to the Maze
|
||
Controller's discretion).<br><br>The caster chooses the effect and the spell lasts for a single round. The
|
||
caster may: 1) target the head and blind, 2) target the body and constrain from attack, or<br><br>target the
|
||
foot and immobilize. Humanoids and/or monsters of four or greater hit dice are allowed a save (Spell) at +2.
|
||
Mazakala was a promising young human magic-user, who, after creating this spell, was bitten in half by a
|
||
Pteranodon while marching to Barrowmaze.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Mazakala's Mucilaginous Effluvium}} {{Level=1}} {{Range=10 Feet/5 Feet per Level (Max 30 feet)}} {{Duration=1 Round}} {{Description=By means of this spell, the caster spews forth a ball of sticky mucilage that s/he can direct toward a single humanoid opponent (or other target, subject to the Maze Controller's discretion).<br><br>The caster chooses the effect and the spell lasts for a single round. The caster may: 1) target the head and blind, 2) target the body and constrain from attack, or<br><br>target the foot and immobilize. Humanoids and/or monsters of four or greater hit dice are allowed a save (Spell) at +2. Mazakala was a promising young human magic-user, who, after creating this spell, was bitten in half by a Pteranodon while marching to Barrowmaze.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell8_maze"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Maze</span>
|
||
<span class="ds-prepred-spell-level">8</span>
|
||
<span class="ds-prepred-spell-range">5 Feet/Level</span>
|
||
<span class="ds-prepred-spell-duration">Special</span>
|
||
<span class="ds-prepred-spell-description">The caster banishes the target to an unending maze in an
|
||
extradimensional space. The target's Intelligence determines how long the subject wanders aimlessly.
|
||
Minotaurs are immune to this spell.<br><br>Intelligence Time Trapped 18 or higher 1d4 Rounds 15-17 2d4
|
||
Rounds 12-14 3d4 Rounds 9-11 4d4 Rounds 6-8 5d4 Rounds 3-5 1d4 Turns 2 or below 2d4 Turns</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Maze}} {{Level=8}} {{Range=5 Feet/Level}} {{Duration=Special}} {{Description=The caster banishes the target to an unending maze in an extradimensional space. The target's Intelligence determines how long the subject wanders aimlessly. Minotaurs are immune to this spell.<br><br>Intelligence Time Trapped 18 or higher 1d4 Rounds 15-17 2d4 Rounds 12-14 3d4 Rounds 9-11 4d4 Rounds 6-8 5d4 Rounds 3-5 1d4 Turns 2 or below 2d4 Turns}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell1_mending"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Mending</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">30 Feet</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">Mending repairs objects. The spell can repair broken metal objects
|
||
(such as a chain, ring, dagger, or broach, provided only one break exists). Wooden or ceramic objects with
|
||
several breaks can also be completely reconstructed as new. The spell mends holes in leather. The spell
|
||
cannot repair enchanted or magical items, nor can it mend living matter.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Mending}} {{Level=1}} {{Range=30 Feet}} {{Duration=Permanent}} {{Description=Mending repairs objects. The spell can repair broken metal objects (such as a chain, ring, dagger, or broach, provided only one break exists). Wooden or ceramic objects with several breaks can also be completely reconstructed as new. The spell mends holes in leather. The spell cannot repair enchanted or magical items, nor can it mend living matter.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell1_message"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Message</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">40 Feet/10 Feet per Level</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/1 Round per 2 Levels</span>
|
||
<span class="ds-prepred-spell-description">Through this spell the caster can quietly speak messages and the
|
||
receiver can return whispered replies. The wizard points his or her finger at the receiver. The spell
|
||
requires line of sight and common language. Only the receiver can hear the message. If the spell's duration
|
||
allows, the receiver can reply to the caster. The spell communicates sound, not context or meaning.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Message}} {{Level=1}} {{Range=40 Feet/10 Feet per Level}} {{Duration=1 Round/1 Round per 2 Levels}} {{Description=Through this spell the caster can quietly speak messages and the receiver can return whispered replies. The wizard points his or her finger at the receiver. The spell requires line of sight and common language. Only the receiver can hear the message. If the spell's duration allows, the receiver can reply to the caster. The spell communicates sound, not context or meaning.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell9_meteor_swarm"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Meteor Swarm</span>
|
||
<span class="ds-prepred-spell-level">9</span>
|
||
<span class="ds-prepred-spell-range">40 Feet/10 Feet per Level</span>
|
||
<span class="ds-prepred-spell-duration">Instantaneous</span>
|
||
<span class="ds-prepred-spell-description">Meteor Swarm is a powerful and awe-inspiring spell. When cast, the
|
||
magic-user selects one of two options: either four large meteors (two foot spheres) or eight small meteors
|
||
(one foot spheres). Both leap from the wizard's palm and leave a flaming trail of sulfur and sparks. Any
|
||
target struck by a large meteor takes 1d4x10 damage (no save). If no target is hit, the meteors fly 20 feet
|
||
apart, and impact 20 feet apart, with an overlapping area of effect (30 feet each). The four radial blasts
|
||
score overlapping damage in a box or diamond pattern. The smaller meteors score 5d4 damage (with a radius of
|
||
15 feet). The smaller meteors have an overlapping blast radius as well (20 feet), shaped like two adjacent
|
||
boxes or two adjacent diamonds. A saving throw (Spell) is permitted against the smaller meteors for half-
|
||
damage.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Meteor Swarm}} {{Level=9}} {{Range=40 Feet/10 Feet per Level}} {{Duration=Instantaneous}} {{Description=Meteor Swarm is a powerful and awe-inspiring spell. When cast, the magic-user selects one of two options: either four large meteors (two foot spheres) or eight small meteors (one foot spheres). Both leap from the wizard's palm and leave a flaming trail of sulfur and sparks. Any target struck by a large meteor takes 1d4x10 damage (no save). If no target is hit, the meteors fly 20 feet apart, and impact 20 feet apart, with an overlapping area of effect (30 feet each). The four radial blasts score overlapping damage in a box or diamond pattern. The smaller meteors score 5d4 damage (with a radius of 15 feet). The smaller meteors have an overlapping blast radius as well (20 feet), shaped like two adjacent boxes or two adjacent diamonds. A saving throw (Spell) is permitted against the smaller meteors for half- damage.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell2_mikdaerrs_practical_tilt"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Mikda-Err's Practical Tilt</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">See Below</span>
|
||
<span class="ds-prepred-spell-duration">1 Round</span>
|
||
<span class="ds-prepred-spell-description">Through this spell the magic-user may target one medium-sized or
|
||
smaller creature in sight (normally an advancing enemy) and plant a suggestion that the floor tilted. The
|
||
target is allowed a save versus Spell for no effect. Failure indicates that the target has fallen and
|
||
requires a round to stand and resume their attack. A prone target is +4 o hit.<br><br>For each level after
|
||
the first, the magic-user may affect an additional target (2 at second level, 3 at third, and so on).
|
||
Alternatively, the magic-user or illusionist may impose a penalty of -1 on the save instead of affecting a
|
||
second target. Thus, a third level caster could affect three creatures, or two at -1, one creature at
|
||
-2.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Mikda-Err's Practical Tilt}} {{Level=2}} {{Range=See Below}} {{Duration=1 Round}} {{Description=Through this spell the magic-user may target one medium-sized or smaller creature in sight (normally an advancing enemy) and plant a suggestion that the floor tilted. The target is allowed a save versus Spell for no effect. Failure indicates that the target has fallen and requires a round to stand and resume their attack. A prone target is +4 o hit.<br><br>For each level after the first, the magic-user may affect an additional target (2 at second level, 3 at third, and so on). Alternatively, the magic-user or illusionist may impose a penalty of -1 on the save instead of affecting a second target. Thus, a third level caster could affect three creatures, or two at -1, one creature at -2.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell8_mind_blank"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Mind Blank</span>
|
||
<span class="ds-prepred-spell-level">8</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">1 Day</span>
|
||
<span class="ds-prepred-spell-description">This spell protects the subject from all mind-influencing spells,
|
||
divination spells, or devices that influence, detect, read thoughts, or emotions. Mind Blank even foils
|
||
Limited Wish and Wish spells regardless of their wording or implementation.<br><br>All attempts to scry the
|
||
individual result in failure. If scrying an area, with a Crystal Ball for example, the spell functions but
|
||
the recipient remains undetected.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Mind Blank}} {{Level=8}} {{Range=Touch}} {{Duration=1 Day}} {{Description=This spell protects the subject from all mind-influencing spells, divination spells, or devices that influence, detect, read thoughts, or emotions. Mind Blank even foils Limited Wish and Wish spells regardless of their wording or implementation.<br><br>All attempts to scry the individual result in failure. If scrying an area, with a Crystal Ball for example, the spell functions but the recipient remains undetected.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell2_mirror_image"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Mirror Image</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">N/A</span>
|
||
<span class="ds-prepred-spell-duration">2 Rounds/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell creates 1d4 illusionary duplicates of the caster (1d4+1
|
||
for illusionists). Each of the illusions match the caster in detail and precisely imitate the mage's actions
|
||
in every respect. The caster selects which number among the duplicates s/he occupies. Opponents must select
|
||
a duplicate number prior to making an attack roll. A successful attack on the caster causes normal damage.
|
||
If an opponent strikes an illusion, it disappears.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Mirror Image}} {{Level=2}} {{Range=N/A}} {{Duration=2 Rounds/Level}} {{Description=This spell creates 1d4 illusionary duplicates of the caster (1d4+1 for illusionists). Each of the illusions match the caster in detail and precisely imitate the mage's actions in every respect. The caster selects which number among the duplicates s/he occupies. Opponents must select a duplicate number prior to making an attack roll. A successful attack on the caster causes normal damage. If an opponent strikes an illusion, it disappears.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox"
|
||
name="attr_magic_user_spell4_mnoricars_mnemonic_enhancer" style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Mnoricar's Mnemonic Enhancer</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">N/A</span>
|
||
<span class="ds-prepred-spell-duration">1 Day</span>
|
||
<span class="ds-prepred-spell-description">By means of this spell, the caster can memorize additional spells
|
||
or recall spells recently cast. The caster can retain a maximum of three spell levels (in any combination)
|
||
beyond those normally available per day by caster level (for example, a second level spell and a first level
|
||
spell, etc.). If the caster wishes to retain, rather then memorize additional spells, s/he casts Mnoricar's
|
||
Mnemonic Enhancer first followed by discharging the spell(s) to be retained in order.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Mnoricar's Mnemonic Enhancer}} {{Level=4}} {{Range=N/A}} {{Duration=1 Day}} {{Description=By means of this spell, the caster can memorize additional spells or recall spells recently cast. The caster can retain a maximum of three spell levels (in any combination) beyond those normally available per day by caster level (for example, a second level spell and a first level spell, etc.). If the caster wishes to retain, rather then memorize additional spells, s/he casts Mnoricar's Mnemonic Enhancer first followed by discharging the spell(s) to be retained in order.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell4_mordrils_excavation"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Mordril's Excavation</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">30 Feet</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">The caster, through Mordril's Excavation, can excavate 5x5x5 feet
|
||
of soil, sand, or mud, per round devoted to casting (40 cubic feet maximum). The dirt is moved immediately
|
||
adjacent to the area excavated. The caster, if desired, can excavate a shaft straight down or dig a trench.
|
||
If the caster digs a shaft, the walls may potentially collapse, subject to the soil type: soil (20% per 5
|
||
foot cube), sand (60%), or mud (80%). Any creature within one foot of the opening must make a Dexterity
|
||
Check or fall in. The spell provides a saving throw (Spell) to any unaware creature running or moving near
|
||
the edge to avoid falling. Boulders and stone are unaffected.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Mordril's Excavation}} {{Level=4}} {{Range=30 Feet}} {{Duration=1 Round/Level}} {{Description=The caster, through Mordril's Excavation, can excavate 5x5x5 feet of soil, sand, or mud, per round devoted to casting (40 cubic feet maximum). The dirt is moved immediately adjacent to the area excavated. The caster, if desired, can excavate a shaft straight down or dig a trench. If the caster digs a shaft, the walls may potentially collapse, subject to the soil type: soil (20% per 5 foot cube), sand (60%), or mud (80%). Any creature within one foot of the opening must make a Dexterity Check or fall in. The spell provides a saving throw (Spell) to any unaware creature running or moving near the edge to avoid falling. Boulders and stone are unaffected.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox"
|
||
name="attr_magic_user_spell6_mordrils_mighty_excavation" style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Mordril's Mighty Excavation</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">10 Feet</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">For each turn spent in casting, the magic-user can move 10 cubic
|
||
feet of soil (to a maximum of 80 cubic feet). The spell excavates soil as per the Level 4 spell. Boulders
|
||
and stone are unaffected.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Mordril's Mighty Excavation}} {{Level=6}} {{Range=10 Feet}} {{Duration=See below}} {{Description=For each turn spent in casting, the magic-user can move 10 cubic feet of soil (to a maximum of 80 cubic feet). The spell excavates soil as per the Level 4 spell. Boulders and stone are unaffected.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell3_ools_broiling_exhalation"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Ool's Broiling Exhalation</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">N/A</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">This spell is an enhanced and modified version of the first level
|
||
magic-user spell Burning Hands. By means of this spell, a gout of searing magical flame issues forth from
|
||
the caster's mouth. The jet of flame (10 feet long per level) strikes a single target for four hit points of
|
||
damage (per level of the caster with no saving throw). For reasons unknown, this spell is particularly
|
||
effective against undead. Undead take an additional +3 hit points of damage to the total damage scored by
|
||
the spell. The caster must have a clear line of sight to the target. The spell will light all flammable
|
||
materials. Ool was a savvy veteran magic-user. Decades ago he was gated to a heretofore undiscovered plane
|
||
of existence while attempting to close the Pit of Chaos in Barrowmaze. His current whereabouts are
|
||
unknown.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Ool's Broiling Exhalation}} {{Level=3}} {{Range=N/A}} {{Duration=See below}} {{Description=This spell is an enhanced and modified version of the first level magic-user spell Burning Hands. By means of this spell, a gout of searing magical flame issues forth from the caster's mouth. The jet of flame (10 feet long per level) strikes a single target for four hit points of damage (per level of the caster with no saving throw). For reasons unknown, this spell is particularly effective against undead. Undead take an additional +3 hit points of damage to the total damage scored by the spell. The caster must have a clear line of sight to the target. The spell will light all flammable materials. Ool was a savvy veteran magic-user. Decades ago he was gated to a heretofore undiscovered plane of existence while attempting to close the Pit of Chaos in Barrowmaze. His current whereabouts are unknown.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell6_ools_freezing_sphere"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Ool's Freezing Sphere</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">See below</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">When casting Ool's Freezing Sphere , the magic-user selects one of
|
||
three options. The caster can conjure a frosted globe and throw it 40 feet (maximum). The globe will explode
|
||
on in a 10 foot radius causing 4d6 points of cold damage. Alternatively, the caster can place the sphere on
|
||
the ground. The sphere will detonate in one round per level of the caster (also with a 10 foot radius). All
|
||
those struck by the sphere, or caught in its radius, may save versus Spell for half damage. The caster, as
|
||
the second option, can place the sphere in water and freeze the liquid. The sphere freezes water seven
|
||
inches deep and affects 100 square feet per level of the caster (for one round per level). Last, instead of
|
||
a sphere, the wizard can emit a freezing ray 10 feet long per caster level for three hit points of damage
|
||
(per level). A saving throw versus Spell negates all damage.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Ool's Freezing Sphere}} {{Level=6}} {{Range=See below}} {{Duration=See below}} {{Description=When casting Ool's Freezing Sphere , the magic-user selects one of three options. The caster can conjure a frosted globe and throw it 40 feet (maximum). The globe will explode on in a 10 foot radius causing 4d6 points of cold damage. Alternatively, the caster can place the sphere on the ground. The sphere will detonate in one round per level of the caster (also with a 10 foot radius). All those struck by the sphere, or caught in its radius, may save versus Spell for half damage. The caster, as the second option, can place the sphere in water and freeze the liquid. The sphere freezes water seven inches deep and affects 100 square feet per level of the caster (for one round per level). Last, instead of a sphere, the wizard can emit a freezing ray 10 feet long per caster level for three hit points of damage (per level). A saving throw versus Spell negates all damage.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox"
|
||
name="attr_magic_user_spell8_ools_irresistible_safety_dance" style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Ool's Irresistible Safety Dance</span>
|
||
<span class="ds-prepred-spell-level">8</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">1d4+1 Rounds</span>
|
||
<span class="ds-prepred-spell-description">This spell inspires an uncontrollable desire to dance in a single
|
||
target. The target dances with foot shuffling, heel tapping, arm twirling, gyrating, etc., and may take no
|
||
other actions for the duration of the spell. The effect imposes an armor class penalty (-4) and also
|
||
excludes a shield bonus (if applicable). This spell offers no saving throw to the target.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Ool's Irresistible Safety Dance}} {{Level=8}} {{Range=Touch}} {{Duration=1d4+1 Rounds}} {{Description=This spell inspires an uncontrollable desire to dance in a single target. The target dances with foot shuffling, heel tapping, arm twirling, gyrating, etc., and may take no other actions for the duration of the spell. The effect imposes an armor class penalty (-4) and also excludes a shield bonus (if applicable). This spell offers no saving throw to the target.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell6_part_water"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Part Water</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">20 Feet/Level</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell parts a body of water (river, lake, etc.) ten feet wide
|
||
to a maximum length of 300 feet. The caster can end the spell at anytime prior to its full duration and
|
||
destroy pursuers following the spell's path.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Part Water}} {{Level=6}} {{Range=20 Feet/Level}} {{Duration=1 Turn/Level}} {{Description=This spell parts a body of water (river, lake, etc.) ten feet wide to a maximum length of 300 feet. The caster can end the spell at anytime prior to its full duration and destroy pursuers following the spell's path.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell5_passwall"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Passwall</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">30 Feet</span>
|
||
<span class="ds-prepred-spell-duration">6 Turns/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell creates a portal, or passage, in wood, stone, or
|
||
plaster. The passage is ten-feet in length and five-feet in width. The spell cannot create a passage through
|
||
other materials (such as steel, etc.).</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Passwall}} {{Level=5}} {{Range=30 Feet}} {{Duration=6 Turns/Level}} {{Description=This spell creates a portal, or passage, in wood, stone, or plaster. The passage is ten-feet in length and five-feet in width. The spell cannot create a passage through other materials (such as steel, etc.).}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell8_permanency"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Permanency</span>
|
||
<span class="ds-prepred-spell-level">8</span>
|
||
<span class="ds-prepred-spell-range">See below</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">This incantation makes spells permanent on the caster. They
|
||
include: Comprehend Languages , Detect Evil , Detect Invisibility , Detect Magic , Darkvision , Protection
|
||
from Evil , Protection from Normal Missiles , Read Magic , Tongues , and Unseen Servant. The wizard must
|
||
cast Permanency immediately after the desired spell. Permanency cannot be cast on other beings. The spell
|
||
permanently lowers the magic-user's Constitution by one point. A magic-user of higher level than the caster
|
||
can dispel the aforementioned Permanency effects. A mage can also use the spell to make the following
|
||
permanent on another being (or object): Enlarge , Fear , Gust of Wind , Invisibility , Magic Mouth ,
|
||
Prismatic Sphere , Stinking Cloud , Wall of Fire , Wall of Force , and Web. The latter applications may be
|
||
removed by Dispel Magic.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Permanency}} {{Level=8}} {{Range=See below}} {{Duration=Permanent}} {{Description=This incantation makes spells permanent on the caster. They include: Comprehend Languages , Detect Evil , Detect Invisibility , Detect Magic , Darkvision , Protection from Evil , Protection from Normal Missiles , Read Magic , Tongues , and Unseen Servant. The wizard must cast Permanency immediately after the desired spell. Permanency cannot be cast on other beings. The spell permanently lowers the magic-user's Constitution by one point. A magic-user of higher level than the caster can dispel the aforementioned Permanency effects. A mage can also use the spell to make the following permanent on another being (or object): Enlarge , Fear , Gust of Wind , Invisibility , Magic Mouth , Prismatic Sphere , Stinking Cloud , Wall of Fire , Wall of Force , and Web. The latter applications may be removed by Dispel Magic.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell3_phantasmal_force"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Phantasmal Force</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">10 Feet/5 Feet per Level</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">Through this dweomer, the caster creates an illusion within a fixed
|
||
20x20x20 foot cube. The caster must concentrate solely on the illusion. If touched, the illusion disappears.
|
||
However, an illusionary creature can attack. All those who behold the illusion are given a saving throw
|
||
(Spell) to disbelieve. If successful, a disbeliever can communicate the truth of the illusion to others (+4
|
||
on disbelieve saves). If a player character fails their save, the illusion continues. An illusionary monster
|
||
will appear to inflict harm on its target. Illusionary monsters have AC: 9, and vanish if struck. If the
|
||
target loses all its hit points, s/he falls to the ground unconscious instead of dying. All other aspects of
|
||
the phantasm are illusionary and impose no damage. The illusion includes no auditory component.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Phantasmal Force}} {{Level=3}} {{Range=10 Feet/5 Feet per Level}} {{Duration=See below}} {{Description=Through this dweomer, the caster creates an illusion within a fixed 20x20x20 foot cube. The caster must concentrate solely on the illusion. If touched, the illusion disappears. However, an illusionary creature can attack. All those who behold the illusion are given a saving throw (Spell) to disbelieve. If successful, a disbeliever can communicate the truth of the illusion to others (+4 on disbelieve saves). If a player character fails their save, the illusion continues. An illusionary monster will appear to inflict harm on its target. Illusionary monsters have AC: 9, and vanish if struck. If the target loses all its hit points, s/he falls to the ground unconscious instead of dying. All other aspects of the phantasm are illusionary and impose no damage. The illusion includes no auditory component.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell7_phase_door"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Phase Door</span>
|
||
<span class="ds-prepred-spell-level">7</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">1 Door/2 Levels</span>
|
||
<span class="ds-prepred-spell-description">Like Passwall , this spell creates a portal, or passage, in wood,
|
||
stone, or plaster. The passage is ten-feet in length and five feet in width. The spell cannot create a
|
||
passage through metal. Unlike, Passwall , the door is invisible and only accessible by the caster. As the
|
||
caster enters the door, s/he immediately reappears at the exiting door.<br><br>The caster may allow one
|
||
medium-sized being or smaller to pass through the portal by holding their hand. Allowing a companion to pass
|
||
through a Phase Door serves as two doors. Sound, light, and spell effects will not pass through the door. A
|
||
Phase Door is subject to Dispel Magic. All those in the passage when dispelled are thrown out the other side
|
||
akin to Passwall.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Phase Door}} {{Level=7}} {{Range=Touch}} {{Duration=1 Door/2 Levels}} {{Description=Like Passwall , this spell creates a portal, or passage, in wood, stone, or plaster. The passage is ten-feet in length and five feet in width. The spell cannot create a passage through metal. Unlike, Passwall , the door is invisible and only accessible by the caster. As the caster enters the door, s/he immediately reappears at the exiting door.<br><br>The caster may allow one medium-sized being or smaller to pass through the portal by holding their hand. Allowing a companion to pass through a Phase Door serves as two doors. Sound, light, and spell effects will not pass through the door. A Phase Door is subject to Dispel Magic. All those in the passage when dispelled are thrown out the other side akin to Passwall.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell4_plant_growth"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Plant Growth</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">20 feet</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">This spell causes vegetation (grass, briar, bush, creeper, thistle,
|
||
tree, vine, etc.) within a 20x20 area of effect (plus 5x5 feet per level) to thicken, entwine, and become
|
||
impenetrable. The density of the vegetation reduces movement to 1/4. The spell requires the presence of
|
||
existing vegetation to manifest and the effect lasts until Dispel Magic is cast. Plant-based creatures are
|
||
unaffected by the spell.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Plant Growth}} {{Level=4}} {{Range=20 feet}} {{Duration=See below}} {{Description=This spell causes vegetation (grass, briar, bush, creeper, thistle, tree, vine, etc.) within a 20x20 area of effect (plus 5x5 feet per level) to thicken, entwine, and become impenetrable. The density of the vegetation reduces movement to 1/4. The spell requires the presence of existing vegetation to manifest and the effect lasts until Dispel Magic is cast. Plant-based creatures are unaffected by the spell.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell8_polymorph_any_object"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Polymorph Any Object</span>
|
||
<span class="ds-prepred-spell-level">8</span>
|
||
<span class="ds-prepred-spell-range">5 Feet/Level</span>
|
||
<span class="ds-prepred-spell-duration">Variable</span>
|
||
<span class="ds-prepred-spell-description">This spell polymorphs a creature or object akin to other polymorph
|
||
spells. The target is allowed a saving throw (Spell) to negate the effect. The exact duration of the spell
|
||
is subject to the extent of the shape change. The table below serves as a set of guidelines to guide the
|
||
Maze Controller: Category Polymorph Kingdom Animal, Vegetable, Mineral Class Mammals, Bipeds, Fungi, Metals,
|
||
etc. Relationship Twig to tree, Sand to beach, etc. Size Larger, Equal, Smaller Shape Comparative to
|
||
original Intelligence Esp. with intelligence increase A change across kingdoms lasts two to three hours.
|
||
Related things, such as a tiger tooth becoming a tiger, are permanent. Polymorphs that affect multiple
|
||
categories will result in a decreased duration. The effect of the spell may be reversed by Dispel Magic. All
|
||
beings or objects affected radiate magic for the purpose of spell detection, divination, and scrying. This
|
||
spell can replicate transmutation effects like Flesh to Stone , Stone to Flesh , etc. When used in this
|
||
fashion, the target is penalized -4 on the save.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Polymorph Any Object}} {{Level=8}} {{Range=5 Feet/Level}} {{Duration=Variable}} {{Description=This spell polymorphs a creature or object akin to other polymorph spells. The target is allowed a saving throw (Spell) to negate the effect. The exact duration of the spell is subject to the extent of the shape change. The table below serves as a set of guidelines to guide the Maze Controller: Category Polymorph Kingdom Animal, Vegetable, Mineral Class Mammals, Bipeds, Fungi, Metals, etc. Relationship Twig to tree, Sand to beach, etc. Size Larger, Equal, Smaller Shape Comparative to original Intelligence Esp. with intelligence increase A change across kingdoms lasts two to three hours. Related things, such as a tiger tooth becoming a tiger, are permanent. Polymorphs that affect multiple categories will result in a decreased duration. The effect of the spell may be reversed by Dispel Magic. All beings or objects affected radiate magic for the purpose of spell detection, divination, and scrying. This spell can replicate transmutation effects like Flesh to Stone , Stone to Flesh , etc. When used in this fashion, the target is penalized -4 on the save.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell4_polymorph_other"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Polymorph Other</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">10 Feet/Level</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">Through this dweomer, the caster can transmute one living being
|
||
into another form. An unwilling target receives a save versus Spell to negate the effect. The polymorphed
|
||
being retains their hit points, and gains all the abilities of the newly acquired form, including
|
||
intelligence. In effect, the being is the new creature in all respects. These include alignment, mentality,
|
||
instincts, and preferences, etc. Polymorph Other cannot imitate a unique being's appearance. The spell fails
|
||
if the new form's total hit dice exceed double the original being.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Polymorph Other}} {{Level=4}} {{Range=10 Feet/Level}} {{Duration=Permanent}} {{Description=Through this dweomer, the caster can transmute one living being into another form. An unwilling target receives a save versus Spell to negate the effect. The polymorphed being retains their hit points, and gains all the abilities of the newly acquired form, including intelligence. In effect, the being is the new creature in all respects. These include alignment, mentality, instincts, and preferences, etc. Polymorph Other cannot imitate a unique being's appearance. The spell fails if the new form's total hit dice exceed double the original being.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell4_polymorph_self"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Polymorph Self</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">2 Turns/Level</span>
|
||
<span class="ds-prepred-spell-description">Through this spell the caster changes his or her form. This spell
|
||
can only copy a generic being type (human, goblin, etc.) and cannot duplicate unique individual beings. The
|
||
new shape must have hit dice equal to, or lower than, the caster. The caster keeps his or her saves,
|
||
intelligence, and hit points. The new form does not give the caster the physical abilities, strength, or
|
||
attack and damage bonuses. Likewise, the new form provides no magical or special abilities. For example, if
|
||
the caster transmutates into a stirge, s/he could fly. However, the caster would not gain petrifying gaze if
|
||
s/he changed into a cockatrice. While polymorphed, the caster cannot cast spells. If the caster dies while
|
||
polymorphed, s/he reverts to natural form. The caster may alter form as many times as desired under the
|
||
duration of the spell. Dispel Magic negates the effect of Polymorph Self.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Polymorph Self}} {{Level=4}} {{Range=0}} {{Duration=2 Turns/Level}} {{Description=Through this spell the caster changes his or her form. This spell can only copy a generic being type (human, goblin, etc.) and cannot duplicate unique individual beings. The new shape must have hit dice equal to, or lower than, the caster. The caster keeps his or her saves, intelligence, and hit points. The new form does not give the caster the physical abilities, strength, or attack and damage bonuses. Likewise, the new form provides no magical or special abilities. For example, if the caster transmutates into a stirge, s/he could fly. However, the caster would not gain petrifying gaze if s/he changed into a cockatrice. While polymorphed, the caster cannot cast spells. If the caster dies while polymorphed, s/he reverts to natural form. The caster may alter form as many times as desired under the duration of the spell. Dispel Magic negates the effect of Polymorph Self.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell8_power_word_blind"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Power Word (Blind)</span>
|
||
<span class="ds-prepred-spell-level">8</span>
|
||
<span class="ds-prepred-spell-range">See below</span>
|
||
<span class="ds-prepred-spell-duration">See Table</span>
|
||
<span class="ds-prepred-spell-description">The caster utters a word of power that blinds one or more beings of
|
||
choice, regardless of their ability to hear the word. Targets totaling 100 hit points may be affected (no
|
||
save). The spell's duration is subject to the total hit points of the creatures affected. All creatures with
|
||
101+ hit points are unaffected. This spell affects a 30x30 radius centered the caster.<br><br>Hit Points
|
||
Duration 61-100 1d4+1 Rounds 60 or Less 1d4+1 Turns</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Power Word (Blind)}} {{Level=8}} {{Range=See below}} {{Duration=See Table}} {{Description=The caster utters a word of power that blinds one or more beings of choice, regardless of their ability to hear the word. Targets totaling 100 hit points may be affected (no save). The spell's duration is subject to the total hit points of the creatures affected. All creatures with 101+ hit points are unaffected. This spell affects a 30x30 radius centered the caster.<br><br>Hit Points Duration 61-100 1d4+1 Rounds 60 or Less 1d4+1 Turns}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell9_power_word_kill"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Power Word (Kill)</span>
|
||
<span class="ds-prepred-spell-level">9</span>
|
||
<span class="ds-prepred-spell-range">5 Feet/Level</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">This spell allows the caster to proclaim a word of power that kills
|
||
one or more beings within a 20 foot radius instantly, whether or not they can hear it. At the time of
|
||
casting, the mage chooses one or multiple targets. The spell kills a single creature (up to 60 hit points)
|
||
or two or more creatures of 10 hit points or less (to a total of 120 total hit points). Creatures in excess
|
||
of 60 hit points are immune to this Power Word. There is no save.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Power Word (Kill)}} {{Level=9}} {{Range=5 Feet/Level}} {{Duration=Permanent}} {{Description=This spell allows the caster to proclaim a word of power that kills one or more beings within a 20 foot radius instantly, whether or not they can hear it. At the time of casting, the mage chooses one or multiple targets. The spell kills a single creature (up to 60 hit points) or two or more creatures of 10 hit points or less (to a total of 120 total hit points). Creatures in excess of 60 hit points are immune to this Power Word. There is no save.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell7_power_word_stun"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Power Word (Stun)</span>
|
||
<span class="ds-prepred-spell-level">7</span>
|
||
<span class="ds-prepred-spell-range">5 Feet/Level</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">The caster pronounces a word of power that causes a single target
|
||
of choice to be stunned for 2d4 rounds instantly, whether or not the target can hear the word. The spell
|
||
duration is equivalent to the target's current hit points (see below). All creatures in excess of 100 hit
|
||
points are immune to the Power Word. The spell provides no saving throw. Hit Points Duration 61-100 1d4
|
||
Rounds 31-61 2d4 Rounds 30 or Fewer 4d4 Rounds</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Power Word (Stun)}} {{Level=7}} {{Range=5 Feet/Level}} {{Duration=See below}} {{Description=The caster pronounces a word of power that causes a single target of choice to be stunned for 2d4 rounds instantly, whether or not the target can hear the word. The spell duration is equivalent to the target's current hit points (see below). All creatures in excess of 100 hit points are immune to the Power Word. The spell provides no saving throw. Hit Points Duration 61-100 1d4 Rounds 31-61 2d4 Rounds 30 or Fewer 4d4 Rounds}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell9_prismatic_sphere"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Prismatic Sphere</span>
|
||
<span class="ds-prepred-spell-level">9</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn/Level</span>
|
||
<span class="ds-prepred-spell-description">The caster calls forth an immobile, protective globe of
|
||
spectacular, shimmering, multicolored light in a 20 foot radius. The globe provides defensive protection
|
||
against the attack forms listed. All those that behold the sphere with less than HD: 8 are Blinded for 2d4
|
||
turns. Only the wizard may move into, or out of, the Prismatic Sphere as desired. The sphere blocks all
|
||
penetration attempts (including spells). The spells listed negate each color. All those that attack the
|
||
caster, or pass through the globe, suffer the following effects in order:<br><br>Color Order Defensive
|
||
Effect Negated By Red 1st Blocks non-magical missile attacks. Inflicts 10 points of fire damage. Cone of
|
||
Cold Orange 2nd Blocks magical missile attacks. Inflicts 20 points of damage. Fly or Gust of Wind Yellow 3rd
|
||
Blocks poisons, gases, and petrify. Inflicts 40 points of damage. Disintegrate Green 4th Blocks breath
|
||
weapons. Poison (Death Save negates). Passwall Blue 5th Blocks mental attack forms and divination. Petrify
|
||
(Stone Save negates). Magic Missile Indigo 6th Blocks all spells. Insanity (Wand Save negates). Continual
|
||
Light Violet 7th Force field Gates to random plane of existence. (Spell Save negates). Dispel Magic</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Prismatic Sphere}} {{Level=9}} {{Range=0}} {{Duration=1 Turn/Level}} {{Description=The caster calls forth an immobile, protective globe of spectacular, shimmering, multicolored light in a 20 foot radius. The globe provides defensive protection against the attack forms listed. All those that behold the sphere with less than HD: 8 are Blinded for 2d4 turns. Only the wizard may move into, or out of, the Prismatic Sphere as desired. The sphere blocks all penetration attempts (including spells). The spells listed negate each color. All those that attack the caster, or pass through the globe, suffer the following effects in order:<br><br>Color Order Defensive Effect Negated By Red 1st Blocks non-magical missile attacks. Inflicts 10 points of fire damage. Cone of Cold Orange 2nd Blocks magical missile attacks. Inflicts 20 points of damage. Fly or Gust of Wind Yellow 3rd Blocks poisons, gases, and petrify. Inflicts 40 points of damage. Disintegrate Green 4th Blocks breath weapons. Poison (Death Save negates). Passwall Blue 5th Blocks mental attack forms and divination. Petrify (Stone Save negates). Magic Missile Indigo 6th Blocks all spells. Insanity (Wand Save negates). Continual Light Violet 7th Force field Gates to random plane of existence. (Spell Save negates). Dispel Magic}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell6_projected_image"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Projected Image</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">100 Feet/10 Feet per Level</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">The caster creates an illusory version of him or herself. The
|
||
projected image is intangible but appears, smells, and sounds exactly like the caster. The projected image
|
||
matches the caster's actions exactly, including speech and spells. The illusion dispels immediately if
|
||
touched or struck by a melee weapon. Note that missile weapons and spells pass through the illusion with no
|
||
effect.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Projected Image}} {{Level=6}} {{Range=100 Feet/10 Feet per Level}} {{Duration=1 Round/Level}} {{Description=The caster creates an illusory version of him or herself. The projected image is intangible but appears, smells, and sounds exactly like the caster. The projected image matches the caster's actions exactly, including speech and spells. The illusion dispels immediately if touched or struck by a melee weapon. Note that missile weapons and spells pass through the illusion with no effect.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell1_protection_from_evil"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Protection from Evil</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">3 Rounds/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell protects the caster from attacks by evil beings and
|
||
monsters. Specifically, the spell calls forth a magical barrier that wards against forms of mental control
|
||
as well as contact with summoned creatures. The protection moves with the recipient.<br><br>The spell
|
||
provides two protective bonuses: the recipient receives a +1 to saving throws and armor class. Next, the
|
||
spell prevents evil beings and summoned creatures from touching the recipient and causes them to recoil in
|
||
fear.<br><br>The spell does not preclude missile attacks. The protection from contact by summoned beings
|
||
terminates if the subject of the spell makes a physical attack.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Protection from Evil}} {{Level=1}} {{Range=Touch}} {{Duration=3 Rounds/Level}} {{Description=This spell protects the caster from attacks by evil beings and monsters. Specifically, the spell calls forth a magical barrier that wards against forms of mental control as well as contact with summoned creatures. The protection moves with the recipient.<br><br>The spell provides two protective bonuses: the recipient receives a +1 to saving throws and armor class. Next, the spell prevents evil beings and summoned creatures from touching the recipient and causes them to recoil in fear.<br><br>The spell does not preclude missile attacks. The protection from contact by summoned beings terminates if the subject of the spell makes a physical attack.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox"
|
||
name="attr_magic_user_spell3_protection_from_evil_10_feet" style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Protection from Evil (10 Feet)</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">N/A</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell is identical to Protection from Evil , except that the
|
||
protection extends 10x10 feet around the caster and wards all those within the area of effect.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Protection from Evil (10 Feet)}} {{Level=3}} {{Range=N/A}} {{Duration=1 Turn/Level}} {{Description=This spell is identical to Protection from Evil , except that the protection extends 10x10 feet around the caster and wards all those within the area of effect.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox"
|
||
name="attr_magic_user_spell3_protection_from_normal_missiles" style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Protection from Normal Missiles</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell protects against all small, non-magical projectiles,
|
||
missiles, and hurled weapons. The spell protects, and moves with, the caster only. The protection excludes
|
||
hurled boulders, magical arrows, bolts, sling stones, etc.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Protection from Normal Missiles}} {{Level=3}} {{Range=Touch}} {{Duration=1 Turn/Level}} {{Description=This spell protects against all small, non-magical projectiles, missiles, and hurled weapons. The spell protects, and moves with, the caster only. The protection excludes hurled boulders, magical arrows, bolts, sling stones, etc.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell2_pyrotechnics"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Pyrotechnics✦</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">160 Feet</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">Subject to the caster's wishes, Pyrotechnics can either transform a
|
||
fire into a brilliant display of fireworks or a cloud of thick black smoke. Cryotechnics is the reverse of
|
||
the spell. Fireworks: This iteration results in a momentary burst of aerial pyrotechnics. The effect blinds
|
||
all those within 120 feet. The display is fully ten times the magnitude of the source flame. Only those with
|
||
a clear line of sight are affected. The reverse of the spell, Cryotechnics , causes a burst of blinding cold
|
||
energy that extinguishes a fire and sends explosive, colorful, ice shards into the air with the same area
|
||
and effect.<br><br>Smoke Cloud: This version causes thick black smoke to pour from a fire. The smoke
|
||
obscures all vision in a 20 foot radius and lingers for one round per caster level. The reverse of the
|
||
spell, Cryotechnics , extinguishes the fire and causes a thick, freezing, icy mist with the same area and
|
||
effect.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Pyrotechnics✦}} {{Level=2}} {{Range=160 Feet}} {{Duration=See below}} {{Description=Subject to the caster's wishes, Pyrotechnics can either transform a fire into a brilliant display of fireworks or a cloud of thick black smoke. Cryotechnics is the reverse of the spell. Fireworks: This iteration results in a momentary burst of aerial pyrotechnics. The effect blinds all those within 120 feet. The display is fully ten times the magnitude of the source flame. Only those with a clear line of sight are affected. The reverse of the spell, Cryotechnics , causes a burst of blinding cold energy that extinguishes a fire and sends explosive, colorful, ice shards into the air with the same area and effect.<br><br>Smoke Cloud: This version causes thick black smoke to pour from a fire. The smoke obscures all vision in a 20 foot radius and lingers for one round per caster level. The reverse of the spell, Cryotechnics , extinguishes the fire and causes a thick, freezing, icy mist with the same area and effect.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell2_cryotechnics"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Cryotechnics†</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">160 Feet</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">Either extinguishes a fire with freezing mist or creates a blinding
|
||
cold burst, launching icy shards. Mimics Pyrotechnics.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Cryotechnics†}} {{Level=2}} {{Range=160 Feet}} {{Duration=See below}} {{Description=Either extinguishes a fire with freezing mist or creates a blinding cold burst, launching icy shards. Mimics Pyrotechnics.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell2_ray_of_enfeeblement"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Ray of Enfeeblement</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">25 Feet/5 Feet per 2 Levels</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell releases a beam from the caster's hand. The target
|
||
weakens and suffers a reduction of Strength by 1d4 (plus one every other level to a total maximum of six
|
||
points of Strength, cannot be reduced below 3). The penalty affects the target's to-hit and damage modifiers
|
||
(if applicable). A successful save (Spell) negates.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Ray of Enfeeblement}} {{Level=2}} {{Range=25 Feet/5 Feet per 2 Levels}} {{Duration=1 Round/Level}} {{Description=This spell releases a beam from the caster's hand. The target weakens and suffers a reduction of Strength by 1d4 (plus one every other level to a total maximum of six points of Strength, cannot be reduced below 3). The penalty affects the target's to-hit and damage modifiers (if applicable). A successful save (Spell) negates.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell1_read_magic_arcane"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Read Magic (Arcane)</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">N/A</span>
|
||
<span class="ds-prepred-spell-duration">2 Rounds/Level</span>
|
||
<span class="ds-prepred-spell-description">By means of Read Magic (Arcane), a wizard (illusionist or
|
||
magic-user) can decipher unintelligible arcane writing (on scrolls, books, weapons, etc.). The spell does
|
||
not activate magic on an item, but it can if cursed. Once cast, the mage can read that specific item at-will
|
||
without the need for Read Magic (Arcane).</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Read Magic (Arcane)}} {{Level=1}} {{Range=N/A}} {{Duration=2 Rounds/Level}} {{Description=By means of Read Magic (Arcane), a wizard (illusionist or magic-user) can decipher unintelligible arcane writing (on scrolls, books, weapons, etc.). The spell does not activate magic on an item, but it can if cursed. Once cast, the mage can read that specific item at-will without the need for Read Magic (Arcane).}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell6_reincarnate"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Reincarnate</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">Through this spell the caster raises a player character from the
|
||
dead in a different body. This transformation heals all afflictions and ailments.<br><br>The spell functions
|
||
regardless of the condition of the deceased. The spell requires a portion of existent bodily remains.
|
||
Reincarnate creates a new, healthy, young adult body. The options on the table below provide playable
|
||
races.<br><br>Roll 1d6 to select the left (1-3) or right column (4-6). Then roll 1d6 to determine experience
|
||
level (cannot exceed the original PC). A reincarnated PC must play the new player character race or
|
||
retire:<br><br>1d12 Incarnation 1 Orc 1 Werewolf 2 Half-Orc 2 Pixie 3 Centaur 3 Bugbear 4 Neanderthal 4
|
||
Half-Elf 5 Kobold 5 Human 6 Lizardman 6 Elf 7 Goblin 7 Dwarf 8 Hobgoblin 8 Dryad 9 Orc 9 Half-Orc 10 Ogre 10
|
||
Cyclopsman 11 Bullywug 11 Ogre Mage 12 Player's Choice 12 Player's Choice</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Reincarnate}} {{Level=6}} {{Range=0}} {{Duration=Permanent}} {{Description=Through this spell the caster raises a player character from the dead in a different body. This transformation heals all afflictions and ailments.<br><br>The spell functions regardless of the condition of the deceased. The spell requires a portion of existent bodily remains. Reincarnate creates a new, healthy, young adult body. The options on the table below provide playable races.<br><br>Roll 1d6 to select the left (1-3) or right column (4-6). Then roll 1d6 to determine experience level (cannot exceed the original PC). A reincarnated PC must play the new player character race or retire:<br><br>1d12 Incarnation 1 Orc 1 Werewolf 2 Half-Orc 2 Pixie 3 Centaur 3 Bugbear 4 Neanderthal 4 Half-Elf 5 Kobold 5 Human 6 Lizardman 6 Elf 7 Goblin 7 Dwarf 8 Hobgoblin 8 Dryad 9 Orc 9 Half-Orc 10 Ogre 10 Cyclopsman 11 Bullywug 11 Ogre Mage 12 Player's Choice 12 Player's Choice}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell6_repulsion"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Repulsion</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">10 Feet/Level</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/2 Levels</span>
|
||
<span class="ds-prepred-spell-description">A near invisible, immobile force-field is conjured 10 feet before
|
||
the caster. The field prevents all beings from approach. All those that contact the field are repulsed and
|
||
cannot advance toward the caster.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Repulsion}} {{Level=6}} {{Range=10 Feet/Level}} {{Duration=1 Round/2 Levels}} {{Description=A near invisible, immobile force-field is conjured 10 feet before the caster. The field prevents all beings from approach. All those that contact the field are repulsed and cannot advance toward the caster.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell7_reverse_gravity"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Reverse Gravity</span>
|
||
<span class="ds-prepred-spell-level">7</span>
|
||
<span class="ds-prepred-spell-range">5 Feet/Level</span>
|
||
<span class="ds-prepred-spell-duration">1 Round</span>
|
||
<span class="ds-prepred-spell-description">This spell reverses the flow of gravity in a 30x30x30 foot square
|
||
area. All unattached things (objects or beings) within the area fall upward. All those that strike a
|
||
physical barrier take damage as if they fell the same distance (1d6 for every 10 feet). Any unattached
|
||
object or being that reaches 30 feet without contacting anything or taking damage remains suspended and
|
||
slowly oscillates until the end of the duration. At the conclusion of the spell, all affected beings and
|
||
objects fall downward and take damage as outlined above.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Reverse Gravity}} {{Level=7}} {{Range=5 Feet/Level}} {{Duration=1 Round}} {{Description=This spell reverses the flow of gravity in a 30x30x30 foot square area. All unattached things (objects or beings) within the area fall upward. All those that strike a physical barrier take damage as if they fell the same distance (1d6 for every 10 feet). Any unattached object or being that reaches 30 feet without contacting anything or taking damage remains suspended and slowly oscillates until the end of the duration. At the conclusion of the spell, all affected beings and objects fall downward and take damage as outlined above.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell2_rope_trick"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Rope Trick</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">2 Turns/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell enchants a 5-30 foot long rope. The rope slowly snakes
|
||
upwards until its entire length stands suspended in the air just off the ground. The top of the rope
|
||
provides entry into an extradimensional hideout. PCs can climb the rope and access the secret hideaway. The
|
||
hideout is large enough to hold five medium-sized beings or their equivalent. Once in the hideout, the rope
|
||
can be pulled up with no trace or it can hang perpendicular to the floor. At the end of the spell's
|
||
duration, all those inside the hideout drop to the ground. Only one person can climb the rope at a
|
||
time.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Rope Trick}} {{Level=2}} {{Range=Touch}} {{Duration=2 Turns/Level}} {{Description=This spell enchants a 5-30 foot long rope. The rope slowly snakes upwards until its entire length stands suspended in the air just off the ground. The top of the rope provides entry into an extradimensional hideout. PCs can climb the rope and access the secret hideaway. The hideout is large enough to hold five medium-sized beings or their equivalent. Once in the hideout, the rope can be pulled up with no trace or it can hang perpendicular to the floor. At the end of the spell's duration, all those inside the hideout drop to the ground. Only one person can climb the rope at a time.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell2_scare"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Scare</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">1 Creature</span>
|
||
<span class="ds-prepred-spell-duration">3d4 Rounds</span>
|
||
<span class="ds-prepred-spell-description">By means of this spell, the caster inspires terror in a single
|
||
target of fewer than six hit dice (save versus Spell for no effect). The target runs away, cowers, and may
|
||
take no action. The spell has no effect on undead, elves, half-elves, or clerics.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Scare}} {{Level=2}} {{Range=1 Creature}} {{Duration=3d4 Rounds}} {{Description=By means of this spell, the caster inspires terror in a single target of fewer than six hit dice (save versus Spell for no effect). The target runs away, cowers, and may take no action. The spell has no effect on undead, elves, half-elves, or clerics.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox"
|
||
name="attr_magic_user_spell1_secumunds_phantasmal_steed" style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Secumund's Phantasmal Steed</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">N/A</span>
|
||
<span class="ds-prepred-spell-duration">1d6 Turns/1 Turn per Level</span>
|
||
<span class="ds-prepred-spell-description">Through this spell a magic-user conjures a phantasmal steed. At
|
||
Levels 1 through 4 the steed appears like a riding horse (with equivalent movement rate). However, when cast
|
||
at Level 5 the phantasmal steed appears like a ghostly wyvern and can fly with a maximum movement of 120
|
||
feet per round. The steed can bear a second rider, but this halves its duration and speed. It cannot attack
|
||
and a Dispel Magic disperses the phantasm. Whether horse or wyvern, a physical attack ends the spell. The
|
||
caster may dismiss the steed at any time.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Secumund's Phantasmal Steed}} {{Level=1}} {{Range=N/A}} {{Duration=1d6 Turns/1 Turn per Level}} {{Description=Through this spell a magic-user conjures a phantasmal steed. At Levels 1 through 4 the steed appears like a riding horse (with equivalent movement rate). However, when cast at Level 5 the phantasmal steed appears like a ghostly wyvern and can fly with a maximum movement of 120 feet per round. The steed can bear a second rider, but this halves its duration and speed. It cannot attack and a Dispel Magic disperses the phantasm. Whether horse or wyvern, a physical attack ends the spell. The caster may dismiss the steed at any time.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell5_secumunds_secret_chest"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Secumund's Secret Chest</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">See below</span>
|
||
<span class="ds-prepred-spell-duration">60 Days</span>
|
||
<span class="ds-prepred-spell-description">Through this spell a wizard conceals a chest for a maximum of nine
|
||
weeks on the Ethereal Plane. The caster may access the chest at any time. The chest is a 1x1x1 foot space
|
||
per level of the caster and cannot hold a living being. The caster must commission the construction of a
|
||
chest of 5,000gp value. This cost includes the construction of a miniature replica. The wizard is allowed
|
||
only one set of chests. The chests are mundane and can include any manner of additional locks, traps, and/or
|
||
wards. To secret the chest away, the wizard casts the spell and touches both chests. The large chest fades
|
||
away to the Ethereal Plane. In order to recall the chest, the caster uses the replica. After the nine weeks
|
||
have elapsed, there is a 7% probability the chest disappears on the Ethereal Plane and cannot be recovered.
|
||
Further, if the replica is destroyed or lost, the hidden chest cannot be recovered. In these examples, even
|
||
the casting of a Wish will not retrieve the lost chest. There is a Dumb and Dumber chance (1% per week) that
|
||
an ethereal being, or some other entity, may happen upon the chest. In this event, consult the table below:
|
||
1d20 Secumund's Secret Chest Result 17-20 Chest is empty 10-16 Chest has one new random item 4-9 Chest is
|
||
missing one item 1-3 Chest includes 1d3 random items</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Secumund's Secret Chest}} {{Level=5}} {{Range=See below}} {{Duration=60 Days}} {{Description=Through this spell a wizard conceals a chest for a maximum of nine weeks on the Ethereal Plane. The caster may access the chest at any time. The chest is a 1x1x1 foot space per level of the caster and cannot hold a living being. The caster must commission the construction of a chest of 5,000gp value. This cost includes the construction of a miniature replica. The wizard is allowed only one set of chests. The chests are mundane and can include any manner of additional locks, traps, and/or wards. To secret the chest away, the wizard casts the spell and touches both chests. The large chest fades away to the Ethereal Plane. In order to recall the chest, the caster uses the replica. After the nine weeks have elapsed, there is a 7% probability the chest disappears on the Ethereal Plane and cannot be recovered. Further, if the replica is destroyed or lost, the hidden chest cannot be recovered. In these examples, even the casting of a Wish will not retrieve the lost chest. There is a Dumb and Dumber chance (1% per week) that an ethereal being, or some other entity, may happen upon the chest. In this event, consult the table below: 1d20 Secumund's Secret Chest Result 17-20 Chest is empty 10-16 Chest has one new random item 4-9 Chest is missing one item 1-3 Chest includes 1d3 random items}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell3_secumunds_tiny_hut"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Secumund's Tiny Hut</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">6 Turns/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell creates an unmoving, opaque 10x10x10 foot sphere of
|
||
force centered on the caster. The sphere projects half above, and half below, the ground. Secumund's Tiny
|
||
Hut provides shelter against inclement weather. The hut protects against wind speeds of 50 miles per hour.
|
||
Windstorms above this speed dispel it. The caster of the spell can adjust illumination inside the hut at any
|
||
time. The interior is transparent and the outside is opaque (occupants can see outside but those on the
|
||
outside cannot see in). The hut does not provide protection from missiles, weapons, or spells. The hut
|
||
accommodates six medium-sized beings or their equivalent. All beings may enter and exit, as desired. As soon
|
||
as the caster exists, the spell terminates. As long as the external temperature is between 0-100 Fahrenheit,
|
||
the internal temperature remains 72 degrees. If the external temperature rises above or falls below the
|
||
aforementioned, the temperature inside adjusts on a 1-to-1 basis.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Secumund's Tiny Hut}} {{Level=3}} {{Range=0}} {{Duration=6 Turns/Level}} {{Description=This spell creates an unmoving, opaque 10x10x10 foot sphere of force centered on the caster. The sphere projects half above, and half below, the ground. Secumund's Tiny Hut provides shelter against inclement weather. The hut protects against wind speeds of 50 miles per hour. Windstorms above this speed dispel it. The caster of the spell can adjust illumination inside the hut at any time. The interior is transparent and the outside is opaque (occupants can see outside but those on the outside cannot see in). The hut does not provide protection from missiles, weapons, or spells. The hut accommodates six medium-sized beings or their equivalent. All beings may enter and exit, as desired. As soon as the caster exists, the spell terminates. As long as the external temperature is between 0-100 Fahrenheit, the internal temperature remains 72 degrees. If the external temperature rises above or falls below the aforementioned, the temperature inside adjusts on a 1-to-1 basis.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell2_secumunds_trap"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Secumund's Trap</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">This enchantment creates a false impression that a valued item or
|
||
small device is trapped. If Detect Traps is used, a small box, chest, lock, spellbook, etc., is likely (80%
|
||
chance, -5% per level of the thief) to appear trapped. Further, if a thief attempts to Remove Traps, there
|
||
is a 20% chance (+5% per level of the thief) that the trap appears removed.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Secumund's Trap}} {{Level=2}} {{Range=Touch}} {{Duration=Permanent}} {{Description=This enchantment creates a false impression that a valued item or small device is trapped. If Detect Traps is used, a small box, chest, lock, spellbook, etc., is likely (80% chance, -5% per level of the thief) to appear trapped. Further, if a thief attempts to Remove Traps, there is a 20% chance (+5% per level of the thief) that the trap appears removed.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell3_sepia_snake_sigil"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Sepia Snake Sigil</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">5 Feet</span>
|
||
<span class="ds-prepred-spell-duration">Permanent until Triggered</span>
|
||
<span class="ds-prepred-spell-description">This dweomer is a form of magical trap. By means of the spell, a
|
||
magic-user inscribes a rune (typically on a scroll, spellbook, or door) that, when read, conjures a brownish
|
||
phantasmal force resembling a snake. The sepia snake attacks with the same hit dice as the caster. If a
|
||
successful hit is rolled, the reader of the rune will be engulfed in a brownish force field. The force field
|
||
completely immobilizes the victim. The victim will remain in a state of suspended animation, unable to
|
||
breathe, age, sleep, or function in any way, until a Dispel Magic is cast. If the sepia snake misses the
|
||
reader of the rune, it dissipates with a loud crackle of energy and brown smoke. The noise may incur a
|
||
random monster roll, subject to the Maze Controller.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Sepia Snake Sigil}} {{Level=3}} {{Range=5 Feet}} {{Duration=Permanent until Triggered}} {{Description=This dweomer is a form of magical trap. By means of the spell, a magic-user inscribes a rune (typically on a scroll, spellbook, or door) that, when read, conjures a brownish phantasmal force resembling a snake. The sepia snake attacks with the same hit dice as the caster. If a successful hit is rolled, the reader of the rune will be engulfed in a brownish force field. The force field completely immobilizes the victim. The victim will remain in a state of suspended animation, unable to breathe, age, sleep, or function in any way, until a Dispel Magic is cast. If the sepia snake misses the reader of the rune, it dissipates with a loud crackle of energy and brown smoke. The noise may incur a random monster roll, subject to the Maze Controller.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell9_shape_change"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Shape Change</span>
|
||
<span class="ds-prepred-spell-level">9</span>
|
||
<span class="ds-prepred-spell-range">N/A</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn per Level</span>
|
||
<span class="ds-prepred-spell-description">Through this spell, the caster changes shape and transmutes into a
|
||
being or creature. Unique, individualized forms or beings, such devils, demons, or deities, are not
|
||
possible. The form does not alter the hit points of the caster. The caster acquires all the abilities of the
|
||
new shape (supernatural or extraordinary, including attacks and damage). The transmutation excludes
|
||
knowledge, mental abilities, or the intelligence of the form assumed. For the duration of the dweomer, the
|
||
magic-user can transmute once per round.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Shape Change}} {{Level=9}} {{Range=N/A}} {{Duration=1 Turn per Level}} {{Description=Through this spell, the caster changes shape and transmutes into a being or creature. Unique, individualized forms or beings, such devils, demons, or deities, are not possible. The form does not alter the hit points of the caster. The caster acquires all the abilities of the new shape (supernatural or extraordinary, including attacks and damage). The transmutation excludes knowledge, mental abilities, or the intelligence of the form assumed. For the duration of the dweomer, the magic-user can transmute once per round.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell2_shatter"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Shatter</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">25 Feet/5 Feet per 2 Levels</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">This spell generates a thunderous clap that shatters non-magical
|
||
objects made of glass, crystal, porcelain, or ceramic within a 20x20 foot radius centered on the caster.
|
||
Monsters made of these materials, or related materials, take 1d4 points of damage per level of the caster
|
||
(such as a Crystal Statue).</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Shatter}} {{Level=2}} {{Range=25 Feet/5 Feet per 2 Levels}} {{Duration=Permanent}} {{Description=This spell generates a thunderous clap that shatters non-magical objects made of glass, crystal, porcelain, or ceramic within a 20x20 foot radius centered on the caster. Monsters made of these materials, or related materials, take 1d4 points of damage per level of the caster (such as a Crystal Statue).}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell1_shield"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Shield</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">5 Rounds/Level</span>
|
||
<span class="ds-prepred-spell-description">Shield creates a shimmering energy field that moves with and
|
||
protects the caster (from the front only). The spell provides the caster AC: 2 against all missile attacks,
|
||
and AC: 4 from all other attacks. Shield absorbs the spell Magic Missile for no damage.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Shield}} {{Level=1}} {{Range=0}} {{Duration=5 Rounds/Level}} {{Description=Shield creates a shimmering energy field that moves with and protects the caster (from the front only). The spell provides the caster AC: 2 against all missile attacks, and AC: 4 from all other attacks. Shield absorbs the spell Magic Missile for no damage.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell1_shocking_grasp"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Shocking Grasp</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Instant</span>
|
||
<span class="ds-prepred-spell-description">Upon a successful touch attack, the caster inflicts 1d8 points of
|
||
electrical damage (+1 per level). The caster must make a successful touch attack roll.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Shocking Grasp}} {{Level=1}} {{Range=Touch}} {{Duration=Instant}} {{Description=Upon a successful touch attack, the caster inflicts 1d8 points of electrical damage (+1 per level). The caster must make a successful touch attack roll.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell7_simulacrum"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Simulacrum</span>
|
||
<span class="ds-prepred-spell-level">7</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">This spell creates a duplicate of any being or creature. The
|
||
simulacrum appears as the original, but possesses half the original's hit points. The copy has a fragmentary
|
||
recollection of life and may possess select memories (30% of the time). The caster retains control of the
|
||
simulacrum through verbal command. A simulacrum cannot gain experience points or increase its abilities. If
|
||
a simulacrum receives a Reincarnation spell, it gains (+2d20%) of the original's memories and some of the
|
||
original's class abilities, subject to the Maze Controller. If reduced to zero hit points or slain, a
|
||
simulacrum melts into a puddle of goo. Detect Magic or True Sight always reveals a simulacrum.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Simulacrum}} {{Level=7}} {{Range=Touch}} {{Duration=Permanent}} {{Description=This spell creates a duplicate of any being or creature. The simulacrum appears as the original, but possesses half the original's hit points. The copy has a fragmentary recollection of life and may possess select memories (30% of the time). The caster retains control of the simulacrum through verbal command. A simulacrum cannot gain experience points or increase its abilities. If a simulacrum receives a Reincarnation spell, it gains (+2d20%) of the original's memories and some of the original's class abilities, subject to the Maze Controller. If reduced to zero hit points or slain, a simulacrum melts into a puddle of goo. Detect Magic or True Sight always reveals a simulacrum.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell1_sleep"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Sleep</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">30 Feet/10 Feet per Level</span>
|
||
<span class="ds-prepred-spell-duration">5 Rounds/Level</span>
|
||
<span class="ds-prepred-spell-description">Sleep causes an eldritch slumber to overtake beings with less than
|
||
4+1 hit dice. The spell radius is 30x30 feet. All targets may save (Spell) to negate the effect. All those
|
||
that fail fall asleep. Sleeping targets may receive a coup-de-grace without rolling to hit or damage dice.
|
||
Undead and monsters immune to mind-influencing spells are unaffected.<br><br>Hit Dice Number Affected Up to
|
||
1 4d4 1+1 to 2 2d4 2+2 to 3 1d4 3+3 to 4 1d2 4+1 1</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Sleep}} {{Level=1}} {{Range=30 Feet/10 Feet per Level}} {{Duration=5 Rounds/Level}} {{Description=Sleep causes an eldritch slumber to overtake beings with less than 4+1 hit dice. The spell radius is 30x30 feet. All targets may save (Spell) to negate the effect. All those that fail fall asleep. Sleeping targets may receive a coup-de-grace without rolling to hit or damage dice. Undead and monsters immune to mind-influencing spells are unaffected.<br><br>Hit Dice Number Affected Up to 1 4d4 1+1 to 2 2d4 2+2 to 3 1d4 3+3 to 4 1d2 4+1 1}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell1_spider_climb"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Spider Climb</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">Spider Climb allows the caster (or the spell recipient) to climb
|
||
like a spider on ceiling and walls. To climb, the subject must have free and bare hands and feet. All
|
||
objects in excess of five pounds stick to the recipient's hands. Therefore, spell casting is impossible
|
||
while under the spell. The caster can use this spell on a willing recipient. The spell recipient can move
|
||
through webs, normal or magical, at normal movement rate.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Spider Climb}} {{Level=1}} {{Range=Touch}} {{Duration=1 Round/Level}} {{Description=Spider Climb allows the caster (or the spell recipient) to climb like a spider on ceiling and walls. To climb, the subject must have free and bare hands and feet. All objects in excess of five pounds stick to the recipient's hands. Therefore, spell casting is impossible while under the spell. The caster can use this spell on a willing recipient. The spell recipient can move through webs, normal or magical, at normal movement rate.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell6_spiritwrack"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Spiritwrack</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">10 Feet/1 Foot per Level</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">Through this spell the magic-user creates a potent illuminated
|
||
manuscript (scroll) designed to imprison or punish an infernal or abyssal entity. The spell also functions
|
||
against a high-level lich or vampire.<br><br>The caster must know the being's true name and buy expensive
|
||
gemstones equal to 1,500gp/HD of the target being. The gemstones are powdered for the ink and the caster's
|
||
protection circle. The spell also requires blood from the monster type. When the spell is cast the target
|
||
entity receives a save (Spell). If successful, the entity flees. If unsuccessful, and because it has been
|
||
named, the entity is rooted to the spot and paralyzed.<br><br>During the initial phase of the incantation,
|
||
the spell places the target under physical and emotional duress. During the second turn, the being loses one
|
||
hit point (per hit die). After three turns, the target screams in pain and loses half hit points. The being
|
||
is then banished back to its plane of existence (the Nine Hells, the Abyss, or the Negative Material Plane,
|
||
etc.). The target entity is imprisoned for 666 days per level of the caster. During its imprisonment, the
|
||
targeted being exists in a constant state of wracked pain.<br><br>Once free, the being may seek revenge
|
||
against the caster (or his/her allies). Powerful magic-users often use the spell to extort information or
|
||
service from the targeted being and the spell may be halted at any point short of banishment. The
|
||
illuminated manuscript functions as per a Scroll of Protection from attack by the entity.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Spiritwrack}} {{Level=6}} {{Range=10 Feet/1 Foot per Level}} {{Duration=See below}} {{Description=Through this spell the magic-user creates a potent illuminated manuscript (scroll) designed to imprison or punish an infernal or abyssal entity. The spell also functions against a high-level lich or vampire.<br><br>The caster must know the being's true name and buy expensive gemstones equal to 1,500gp/HD of the target being. The gemstones are powdered for the ink and the caster's protection circle. The spell also requires blood from the monster type. When the spell is cast the target entity receives a save (Spell). If successful, the entity flees. If unsuccessful, and because it has been named, the entity is rooted to the spot and paralyzed.<br><br>During the initial phase of the incantation, the spell places the target under physical and emotional duress. During the second turn, the being loses one hit point (per hit die). After three turns, the target screams in pain and loses half hit points. The being is then banished back to its plane of existence (the Nine Hells, the Abyss, or the Negative Material Plane, etc.). The target entity is imprisoned for 666 days per level of the caster. During its imprisonment, the targeted being exists in a constant state of wracked pain.<br><br>Once free, the being may seek revenge against the caster (or his/her allies). Powerful magic-users often use the spell to extort information or service from the targeted being and the spell may be halted at any point short of banishment. The illuminated manuscript functions as per a Scroll of Protection from attack by the entity.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell7_statue"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Statue</span>
|
||
<span class="ds-prepred-spell-level">7</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">6 Turns/Level</span>
|
||
<span class="ds-prepred-spell-description">Statue transmutes the caster (or recipient) into stone, including
|
||
equipment. The subject is alive and may still use his/her senses to apprehend the world. However, the
|
||
subject does not breathe or require sustenance. The subject of Statue can return to flesh, act, and then
|
||
transmute again instantly, as desired, for the remainder of the spell's duration. See the monster entry for
|
||
Animate Statue (Stone).</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Statue}} {{Level=7}} {{Range=Touch}} {{Duration=6 Turns/Level}} {{Description=Statue transmutes the caster (or recipient) into stone, including equipment. The subject is alive and may still use his/her senses to apprehend the world. However, the subject does not breathe or require sustenance. The subject of Statue can return to flesh, act, and then transmute again instantly, as desired, for the remainder of the spell's duration. See the monster entry for Animate Statue (Stone).}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell2_stinking_cloud"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Stinking Cloud</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">30 Feet</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">Stinking Cloud creates a 20x20x20 feet fog-bank within the spell's
|
||
range. All those within the cloud are unable to act and become ill with nausea. Targets remain affected
|
||
while in the cloud and for additional rounds (1d4+1) after leaving. A successful poison save (Death) results
|
||
in no effect for the remaining rounds.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Stinking Cloud}} {{Level=2}} {{Range=30 Feet}} {{Duration=1 Round/Level}} {{Description=Stinking Cloud creates a 20x20x20 feet fog-bank within the spell's range. All those within the cloud are unable to act and become ill with nausea. Targets remain affected while in the cloud and for additional rounds (1d4+1) after leaving. A successful poison save (Death) results in no effect for the remaining rounds.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell5_stone_shape"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Stone Shape</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">The caster, through this spell, can modify and shape an existing
|
||
stone for any purpose desired. The amount of stone shaped is 1x1x1 foot per caster level. The spell can only
|
||
create crude shapes (chests, coffers, doors, etc). Fine detail is impossible.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Stone Shape}} {{Level=5}} {{Range=Touch}} {{Duration=Permanent}} {{Description=The caster, through this spell, can modify and shape an existing stone for any purpose desired. The amount of stone shaped is 1x1x1 foot per caster level. The spell can only create crude shapes (chests, coffers, doors, etc). Fine detail is impossible.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell6_stone_to_flesh"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Stone to Flesh✦</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">10 Feet/Level</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">This spell transmutes a petrified being to flesh (including
|
||
equipment). The spell effects any petrified being, regardless of size. The reverse of the spell Flesh to
|
||
Stone transmutes one being into stone, including all equipment. A saving throw (Stone) is permitted to
|
||
negate the spell.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Stone to Flesh✦}} {{Level=6}} {{Range=10 Feet/Level}} {{Duration=Permanent}} {{Description=This spell transmutes a petrified being to flesh (including equipment). The spell effects any petrified being, regardless of size. The reverse of the spell Flesh to Stone transmutes one being into stone, including all equipment. A saving throw (Stone) is permitted to negate the spell.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell6_flesh_to_stone"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Flesh to Stone†</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">10 Feet/Level</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">Petrifies a creature and all gear. Target gets a saving throw
|
||
versus Stone.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Flesh to Stone†}} {{Level=6}} {{Range=10 Feet/Level}} {{Duration=Permanent}} {{Description=Petrifies a creature and all gear. Target gets a saving throw versus Stone.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell2_strength"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Strength</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn</span>
|
||
<span class="ds-prepred-spell-description">This spell provides the recipient with temporary Strength. The
|
||
bonus varies subject to the recipient's class: clerics, druids, and monks, thieves, and assassins (+1d6),
|
||
magic-users and illusionists (+1d4), fighters, barbarians, paladins, and rangers (+1d8). A player
|
||
character's Strength may not exceed 18.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Strength}} {{Level=2}} {{Range=Touch}} {{Duration=1 Turn}} {{Description=This spell provides the recipient with temporary Strength. The bonus varies subject to the recipient's class: clerics, druids, and monks, thieves, and assassins (+1d6), magic-users and illusionists (+1d4), fighters, barbarians, paladins, and rangers (+1d8). A player character's Strength may not exceed 18.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox"
|
||
name="attr_magic_user_spell7_sueddahts_instant_summons" style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Sueddaht's Instant Summons</span>
|
||
<span class="ds-prepred-spell-level">7</span>
|
||
<span class="ds-prepred-spell-range">Infinite</span>
|
||
<span class="ds-prepred-spell-duration">Instantaneous</span>
|
||
<span class="ds-prepred-spell-description">Through this dweomer, the caster calls a material item from
|
||
anywhere into his/her hand. The caster begins by placing a magical rune on the object. The item may not
|
||
exceed three feet in length or weigh more than eight pounds. The caster must then inscribe the rune on a
|
||
gemstone worth 5,000gp. Once inscribed the caster can call the item by pronouncing the rune and destroying
|
||
the gemstone. The item immediately appears in the mage's hand. The inscribed gem is useable by the caster
|
||
only. The item may be called from other planes. If another being possesses the item at the time the spell is
|
||
cast, it fails.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Sueddaht's Instant Summons}} {{Level=7}} {{Range=Infinite}} {{Duration=Instantaneous}} {{Description=Through this dweomer, the caster calls a material item from anywhere into his/her hand. The caster begins by placing a magical rune on the object. The item may not exceed three feet in length or weigh more than eight pounds. The caster must then inscribe the rune on a gemstone worth 5,000gp. Once inscribed the caster can call the item by pronouncing the rune and destroying the gemstone. The item immediately appears in the mage's hand. The inscribed gem is useable by the caster only. The item may be called from other planes. If another being possesses the item at the time the spell is cast, it fails.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell3_suggestion"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Suggestion</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">30 Feet</span>
|
||
<span class="ds-prepred-spell-duration">6 Turns/Level</span>
|
||
<span class="ds-prepred-spell-description">Through this spell, the caster influences the actions of a specific
|
||
being. The Suggestion is limited to one sentence. The spell must be reasonably worded while suggesting a
|
||
pleasant, desirable outcome. The incantation fails if the caster requests something harmful. The wording of
|
||
the spell might suggest a harmless action, such as asking to drink something that might be poisonous.
|
||
Suggestion continues for the spell's duration and ends upon task completion. A very reasonable Suggestion
|
||
might allow a save penalty of -1 or -2, but is subject to the discretion of the Maze Controller. A saving
|
||
throw (spell) negates the effect.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Suggestion}} {{Level=3}} {{Range=30 Feet}} {{Duration=6 Turns/Level}} {{Description=Through this spell, the caster influences the actions of a specific being. The Suggestion is limited to one sentence. The spell must be reasonably worded while suggesting a pleasant, desirable outcome. The incantation fails if the caster requests something harmful. The wording of the spell might suggest a harmless action, such as asking to drink something that might be poisonous. Suggestion continues for the spell's duration and ends upon task completion. A very reasonable Suggestion might allow a save penalty of -1 or -2, but is subject to the discretion of the Maze Controller. A saving throw (spell) negates the effect.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell7_summon_cacodemon"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Summon Cacodemon</span>
|
||
<span class="ds-prepred-spell-level">7</span>
|
||
<span class="ds-prepred-spell-range">10 Feet</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">This complicated spell summons a demon from the lower planes (Upper
|
||
or Middle Order). The caster first constructs a pentacle-bound circle of protection. The circle is
|
||
constructed with magic runes, chalk, candles, human fat, and is 30 feet in radius. To summon an upper order
|
||
demon, the caster must know the entity's true name. The spell takes one turn per hit die of the summoned
|
||
demon. The spell allows a save (Spell) to resist the summons. Wizards use the spell in combination with
|
||
Spiritwrack to bind a demon into servitude. Summon Cacodemon creates an agreement wherein the demon must
|
||
perform a task for the wizard. The task cannot exceed 6 months, 6 days, and 6 hours. As an alternative, the
|
||
magic-user could engage the demon's service through bribery (human sacrifice, etc). The spell could also be
|
||
used with Trap the Soul. This spell traps the demonic entity in an object until it agrees to perform a task
|
||
for the mage. Once the task is complete, the demon is dismissed to its plane of existence. Demon summonings
|
||
are risky business, even for the most experienced of wizards. A magic-user has a 6% probability of
|
||
mishandling the summons. If botched, the demon breaks free and engages in a destructive spree for 666 days.
|
||
For every level of the caster above 15, the 6% chance is reduced by 1%.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Summon Cacodemon}} {{Level=7}} {{Range=10 Feet}} {{Duration=See below}} {{Description=This complicated spell summons a demon from the lower planes (Upper or Middle Order). The caster first constructs a pentacle-bound circle of protection. The circle is constructed with magic runes, chalk, candles, human fat, and is 30 feet in radius. To summon an upper order demon, the caster must know the entity's true name. The spell takes one turn per hit die of the summoned demon. The spell allows a save (Spell) to resist the summons. Wizards use the spell in combination with Spiritwrack to bind a demon into servitude. Summon Cacodemon creates an agreement wherein the demon must perform a task for the wizard. The task cannot exceed 6 months, 6 days, and 6 hours. As an alternative, the magic-user could engage the demon's service through bribery (human sacrifice, etc). The spell could also be used with Trap the Soul. This spell traps the demonic entity in an object until it agrees to perform a task for the mage. Once the task is complete, the demon is dismissed to its plane of existence. Demon summonings are risky business, even for the most experienced of wizards. A magic-user has a 6% probability of mishandling the summons. If botched, the demon breaks free and engages in a destructive spree for 666 days. For every level of the caster above 15, the 6% chance is reduced by 1%.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell6_summon_invisible_stalker"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Summon Invisible Stalker</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">This spell allows the caster to call forth an invisible stalker
|
||
(see monster entry). The caster can command the being to undertake a mission. The stalker will accomplish
|
||
the task or attempt it repeatedly until destroyed. Dispel Evil will return the creature to its home plane of
|
||
existence.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Summon Invisible Stalker}} {{Level=6}} {{Range=0}} {{Duration=See below}} {{Description=This spell allows the caster to call forth an invisible stalker (see monster entry). The caster can command the being to undertake a mission. The stalker will accomplish the task or attempt it repeatedly until destroyed. Dispel Evil will return the creature to its home plane of existence.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell3_summon_monsters_i"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Summon Monsters I</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">30 Feet</span>
|
||
<span class="ds-prepred-spell-duration">2 Rounds/1 Round per Level</span>
|
||
<span class="ds-prepred-spell-description">This spell conjures 2d4 monsters (one hit die) that appear in 1d4
|
||
rounds within the spell's range. Summoned monsters fight until destroyed or until the spell's duration
|
||
expires. The caster can also command the summoned creatures to undertake tasks within their
|
||
abilities.<br><br>The Maze Controller chooses the monsters summoned. Examples of one hit die monsters
|
||
include (but are not limited to) Giant Centipedes, Normal Bats, Giant Frogs, Giant Rats, Giant Fire Beetles,
|
||
Giant Killer Bees, Giant Ferrets, Stirges, or Skeletons.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Summon Monsters I}} {{Level=3}} {{Range=30 Feet}} {{Duration=2 Rounds/1 Round per Level}} {{Description=This spell conjures 2d4 monsters (one hit die) that appear in 1d4 rounds within the spell's range. Summoned monsters fight until destroyed or until the spell's duration expires. The caster can also command the summoned creatures to undertake tasks within their abilities.<br><br>The Maze Controller chooses the monsters summoned. Examples of one hit die monsters include (but are not limited to) Giant Centipedes, Normal Bats, Giant Frogs, Giant Rats, Giant Fire Beetles, Giant Killer Bees, Giant Ferrets, Stirges, or Skeletons.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell4_summon_monsters_ii"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Summon Monsters II</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">40 Feet</span>
|
||
<span class="ds-prepred-spell-duration">3 Rounds/1 Round per Level</span>
|
||
<span class="ds-prepred-spell-description">This spell functions as per Monster Summoning I , with noted
|
||
differences in range and duration but conjures 1d6 two hit die monsters. The creatures arrive within 1d4
|
||
rounds of casting the spell.<br><br>Examples include (but are not limited to) Crocodiles, Giant Ants, Giant
|
||
Flies, Giant Spitting Beetles, Giant Crabs, Giant Crab Spiders, Giant Frogs, Giant Toads, War Dogs, Wolves,
|
||
or Zombies.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Summon Monsters II}} {{Level=4}} {{Range=40 Feet}} {{Duration=3 Rounds/1 Round per Level}} {{Description=This spell functions as per Monster Summoning I , with noted differences in range and duration but conjures 1d6 two hit die monsters. The creatures arrive within 1d4 rounds of casting the spell.<br><br>Examples include (but are not limited to) Crocodiles, Giant Ants, Giant Flies, Giant Spitting Beetles, Giant Crabs, Giant Crab Spiders, Giant Frogs, Giant Toads, War Dogs, Wolves, or Zombies.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell5_summon_monsters_iii"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Summon Monsters III</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">50 Feet</span>
|
||
<span class="ds-prepred-spell-duration">4 Rounds/1 Round per Level</span>
|
||
<span class="ds-prepred-spell-description">This spell functions like Monster Summoning I, with noted
|
||
differences in duration and range, but conjures 1d4 three hit die monsters within 1d4
|
||
rounds.<br><br>Examples include (but are not limited to) Crystal Statues, Giant Carnivorous Beetles, Giant
|
||
Frogs (HD: 3), Giant Leeches (HD: 3), Gray Oozes, Boars, Harpies, Hell Hounds (HD: 3), Hyenas, or Insect
|
||
Swarms (HD: 3).</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Summon Monsters III}} {{Level=5}} {{Range=50 Feet}} {{Duration=4 Rounds/1 Round per Level}} {{Description=This spell functions like Monster Summoning I, with noted differences in duration and range, but conjures 1d4 three hit die monsters within 1d4 rounds.<br><br>Examples include (but are not limited to) Crystal Statues, Giant Carnivorous Beetles, Giant Frogs (HD: 3), Giant Leeches (HD: 3), Gray Oozes, Boars, Harpies, Hell Hounds (HD: 3), Hyenas, or Insect Swarms (HD: 3).}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell6_summon_monsters_iv"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Summon Monsters IV</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">60 Feet</span>
|
||
<span class="ds-prepred-spell-duration">5 Rounds/1 Round per Level</span>
|
||
<span class="ds-prepred-spell-description">This spell functions as per Monster Summoning I , with noted
|
||
differences in duration and range, but calls forth 1d3 four hit die monsters within 1d3 rounds. Examples
|
||
include (but are not limited to) Ankhegs, Iron Statues, Dire Wolves, Black Bears, Panthers, or Giant Gecko
|
||
Lizards.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Summon Monsters IV}} {{Level=6}} {{Range=60 Feet}} {{Duration=5 Rounds/1 Round per Level}} {{Description=This spell functions as per Monster Summoning I , with noted differences in duration and range, but calls forth 1d3 four hit die monsters within 1d3 rounds. Examples include (but are not limited to) Ankhegs, Iron Statues, Dire Wolves, Black Bears, Panthers, or Giant Gecko Lizards.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell7_summon_monsters_v"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Summon Monsters V</span>
|
||
<span class="ds-prepred-spell-level">7</span>
|
||
<span class="ds-prepred-spell-range">70 feet</span>
|
||
<span class="ds-prepred-spell-duration">6 Rounds/1 Round per Level</span>
|
||
<span class="ds-prepred-spell-description">This spell functions as per Monster Summoning I , with noted
|
||
differences in duration and range, but conjures 1d2 five hit die creatures within 1d2 rounds. Examples
|
||
include (but are not limited to) Giant Horned Chameleon Lizard, Giant Ice Toads, Giant Boring Beetles, Giant
|
||
Boars, or Giant Hyenas.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Summon Monsters V}} {{Level=7}} {{Range=70 feet}} {{Duration=6 Rounds/1 Round per Level}} {{Description=This spell functions as per Monster Summoning I , with noted differences in duration and range, but conjures 1d2 five hit die creatures within 1d2 rounds. Examples include (but are not limited to) Giant Horned Chameleon Lizard, Giant Ice Toads, Giant Boring Beetles, Giant Boars, or Giant Hyenas.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell8_summon_monsters_vi"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Summon Monsters VI</span>
|
||
<span class="ds-prepred-spell-level">8</span>
|
||
<span class="ds-prepred-spell-range">80 Feet</span>
|
||
<span class="ds-prepred-spell-duration">7 Rounds/1 Round per Level</span>
|
||
<span class="ds-prepred-spell-description">This spell functions much like Monster Summoning I , with noted
|
||
differences in duration and range, but calls forth 1d2 six hit die monsters in 1d2 rounds. Examples include
|
||
(but are not limited to) Basilisks, Hydras, Tigers, Trolls, Large Crocodiles, Giant Tuatara Lizard, or Polar
|
||
Bears.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Summon Monsters VI}} {{Level=8}} {{Range=80 Feet}} {{Duration=7 Rounds/1 Round per Level}} {{Description=This spell functions much like Monster Summoning I , with noted differences in duration and range, but calls forth 1d2 six hit die monsters in 1d2 rounds. Examples include (but are not limited to) Basilisks, Hydras, Tigers, Trolls, Large Crocodiles, Giant Tuatara Lizard, or Polar Bears.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell9_summon_monsters_vii"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Summon Monsters VII</span>
|
||
<span class="ds-prepred-spell-level">9</span>
|
||
<span class="ds-prepred-spell-range">90 feet</span>
|
||
<span class="ds-prepred-spell-duration">8 Rounds/1 Round per Level</span>
|
||
<span class="ds-prepred-spell-description">This spell functions much like Monster Summoning I , with noted
|
||
differences in duration and range, but calls forth 1d2 seven hit die monsters in one round, or one eight hit
|
||
die monster in 2 rounds. Examples include (but are not limited to) Giant Stag Beetles, Babau Demons,
|
||
Griffons, Groaning Spirits, Hydras, Otyughs, or Wyverns.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Summon Monsters VII}} {{Level=9}} {{Range=90 feet}} {{Duration=8 Rounds/1 Round per Level}} {{Description=This spell functions much like Monster Summoning I , with noted differences in duration and range, but calls forth 1d2 seven hit die monsters in one round, or one eight hit die monster in 2 rounds. Examples include (but are not limited to) Giant Stag Beetles, Babau Demons, Griffons, Groaning Spirits, Hydras, Otyughs, or Wyverns.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell6_summon_phantom_stalker"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Summon Phantom Stalker</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">This spell summons a phantom stalker to undertake a task or quest.
|
||
The stalker will try to complete the task until destroyed. Although the creature is bound to serve, it is
|
||
not loyal to the conjurer. The stalker will resent complex missions or prolonged tasks, and will try and
|
||
subvert its instructions. Dispel Magic will send a phantom stalker back to the Elemental Plane of Fire, if
|
||
it fails a save (Spell).</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Summon Phantom Stalker}} {{Level=6}} {{Range=0}} {{Duration=See below}} {{Description=This spell summons a phantom stalker to undertake a task or quest. The stalker will try to complete the task until destroyed. Although the creature is bound to serve, it is not loyal to the conjurer. The stalker will resent complex missions or prolonged tasks, and will try and subvert its instructions. Dispel Magic will send a phantom stalker back to the Elemental Plane of Fire, if it fails a save (Spell).}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell8_symbol"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Symbol</span>
|
||
<span class="ds-prepred-spell-level">8</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">This spell inscribes a powerful rune of protection on a surface.
|
||
Eight different symbols are possible and each possesses a unique effect. A symbol is activated when it is
|
||
read, touched, or through proximity. Proximity symbols are activated within 10 feet and have a 30x30 radius,
|
||
unless otherwise stated. Thus, passing under an archway would trigger the spell.<br><br>Symbol of Discord:
|
||
When triggered, all those in the immediate area quarrel and bicker incessantly for 5d4 rounds. Those of
|
||
opposed alignment may (50%) battle for 2d4 rounds.<br><br>Symbol of Death : When triggered, a Symbol of
|
||
Death kills all beings with less than 80 hit points.<br><br>Symbol of Despair : All those in the area must
|
||
save (Spell) or wander away, utterly hopeless. The effect lasts for 3d4 turns. While under this effect,
|
||
subjects refuse to fight and instead will cower and surrender.<br><br>Symbol of Fear : All those in the
|
||
immediate area must save (Spell) at -4 or suffer Fear effects as per the spell of the same
|
||
name.<br><br>Symbol of Insanity : All those with total hit points below 120 turn insane (as per the spell
|
||
Confusion ). Only Heal , Restoration , or Wish can negate the effect.<br><br>Symbol of Pain : All those in
|
||
range are stricken by pain. The pain imposes a -2 to Dexterity and a -4 on all attack rolls (2d10
|
||
turns).<br><br>Symbol of Sleep : Beings of eight or fewer hit dice fall into a magical sleep for 2d6+4
|
||
turns. Unlike the spell Sleep , slumbering beings cannot be wakened prior to spell expiration.<br><br>Symbol
|
||
of Stunning : A Symbol of Stunning causes all those within the area, with less than 160 hit points, to be
|
||
stunned for 3d4 rounds. All hand-held items are dropped by stunned targets.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Symbol}} {{Level=8}} {{Range=Touch}} {{Duration=See below}} {{Description=This spell inscribes a powerful rune of protection on a surface. Eight different symbols are possible and each possesses a unique effect. A symbol is activated when it is read, touched, or through proximity. Proximity symbols are activated within 10 feet and have a 30x30 radius, unless otherwise stated. Thus, passing under an archway would trigger the spell.<br><br>Symbol of Discord: When triggered, all those in the immediate area quarrel and bicker incessantly for 5d4 rounds. Those of opposed alignment may (50%) battle for 2d4 rounds.<br><br>Symbol of Death : When triggered, a Symbol of Death kills all beings with less than 80 hit points.<br><br>Symbol of Despair : All those in the area must save (Spell) or wander away, utterly hopeless. The effect lasts for 3d4 turns. While under this effect, subjects refuse to fight and instead will cower and surrender.<br><br>Symbol of Fear : All those in the immediate area must save (Spell) at -4 or suffer Fear effects as per the spell of the same name.<br><br>Symbol of Insanity : All those with total hit points below 120 turn insane (as per the spell Confusion ). Only Heal , Restoration , or Wish can negate the effect.<br><br>Symbol of Pain : All those in range are stricken by pain. The pain imposes a -2 to Dexterity and a -4 on all attack rolls (2d10 turns).<br><br>Symbol of Sleep : Beings of eight or fewer hit dice fall into a magical sleep for 2d6+4 turns. Unlike the spell Sleep , slumbering beings cannot be wakened prior to spell expiration.<br><br>Symbol of Stunning : A Symbol of Stunning causes all those within the area, with less than 160 hit points, to be stunned for 3d4 rounds. All hand-held items are dropped by stunned targets.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell5_telekinesis"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Telekinesis</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">10 Feet/Level</span>
|
||
<span class="ds-prepred-spell-duration">2 Round/1 Round per Level</span>
|
||
<span class="ds-prepred-spell-description">By solely concentrating on this spell and taking no additional
|
||
action whatsoever, the caster may move objects or beings with his/her mind vertically or horizontally. The
|
||
caster can transport 25 pounds per level (20 feet per round). The caster can move unwilling beings (within
|
||
the weight allotment), but they may save (Spell) to avoid the effect.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Telekinesis}} {{Level=5}} {{Range=10 Feet/Level}} {{Duration=2 Round/1 Round per Level}} {{Description=By solely concentrating on this spell and taking no additional action whatsoever, the caster may move objects or beings with his/her mind vertically or horizontally. The caster can transport 25 pounds per level (20 feet per round). The caster can move unwilling beings (within the weight allotment), but they may save (Spell) to avoid the effect.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell5_teleport"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Teleport</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Instantaneous</span>
|
||
<span class="ds-prepred-spell-description">By means of this spell the caster instantly transports him or
|
||
herself (or another being of choice) to a specific destination, across any distance. The spell does not
|
||
allow transport between planes or planets. Any unwilling recipient receives a save versus Spell to negate.
|
||
The mage must have a clear mental image of the desired destination. The clearer the image, the greater the
|
||
chance of success. To determine the success of the spell, consult the chart below. Knowledge High On Target
|
||
Low Very Familiar 01-02 03-99 00 Familiar 01-04 05-98 99-00 Viewed Casually 01-08 09-96 97-00 Viewed Once
|
||
01-32 33-84 85-00 Magic-users and Maze Controllers should consult the following term definitions in the
|
||
application of the spell: Very Familiar: The caster has been repeatedly. Familiar: The caster has visited
|
||
the place more than once, can see it currently, or has scried the location. Viewed Casually: The caster has
|
||
viewed the place once but is not familiar. S/he may have scried it once. Viewed Once: The caster has viewed
|
||
the place once through scrying but has not physically been to the location. High: The wizard or subject
|
||
materializes 2d6x10 feet above the intended location. If occupied by matter, the wizard or subject dies. On
|
||
Target: Teleports to the location desired. Low: The wizard or subject appears in solid ground matter and is
|
||
instantly killed. Note the caster cannot teleport him/herself or the subject intentionally into solid
|
||
matter.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Teleport}} {{Level=5}} {{Range=Touch}} {{Duration=Instantaneous}} {{Description=By means of this spell the caster instantly transports him or herself (or another being of choice) to a specific destination, across any distance. The spell does not allow transport between planes or planets. Any unwilling recipient receives a save versus Spell to negate. The mage must have a clear mental image of the desired destination. The clearer the image, the greater the chance of success. To determine the success of the spell, consult the chart below. Knowledge High On Target Low Very Familiar 01-02 03-99 00 Familiar 01-04 05-98 99-00 Viewed Casually 01-08 09-96 97-00 Viewed Once 01-32 33-84 85-00 Magic-users and Maze Controllers should consult the following term definitions in the application of the spell: Very Familiar: The caster has been repeatedly. Familiar: The caster has visited the place more than once, can see it currently, or has scried the location. Viewed Casually: The caster has viewed the place once but is not familiar. S/he may have scried it once. Viewed Once: The caster has viewed the place once through scrying but has not physically been to the location. High: The wizard or subject materializes 2d6x10 feet above the intended location. If occupied by matter, the wizard or subject dies. On Target: Teleports to the location desired. Low: The wizard or subject appears in solid ground matter and is instantly killed. Note the caster cannot teleport him/herself or the subject intentionally into solid matter.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell9_temporal_stasis"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Temporal Stasis</span>
|
||
<span class="ds-prepred-spell-level">9</span>
|
||
<span class="ds-prepred-spell-range">10 Feet</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">Through a successful touch attack, this spell places a target in
|
||
suspended animation. For the target, time stops completely. This suspension persists until the dweomer is
|
||
removed ( Dispel Magic ). The spell permits no saving throw.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Temporal Stasis}} {{Level=9}} {{Range=10 Feet}} {{Duration=Permanent}} {{Description=Through a successful touch attack, this spell places a target in suspended animation. For the target, time stops completely. This suspension persists until the dweomer is removed ( Dispel Magic ). The spell permits no saving throw.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox"
|
||
name="attr_magic_user_spell1_tenneals_expeditious_retreat" style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Tenneal's Expeditious Retreat</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">By means of this spell, the caster may double his or her movement
|
||
rate for one round per level. This includes doubling a fleeing double-move. The verbal component for the
|
||
spell is “Let's Go!”</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Tenneal's Expeditious Retreat}} {{Level=1}} {{Range=Touch}} {{Duration=1 Round/Level}} {{Description=By means of this spell, the caster may double his or her movement rate for one round per level. This includes doubling a fleeing double-move. The verbal component for the spell is “Let's Go!”}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell1_tenneals_floating_disc"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Tenneal's Floating Disc</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">2 Feet</span>
|
||
<span class="ds-prepred-spell-duration">3 Turns/1 Turn per Level</span>
|
||
<span class="ds-prepred-spell-description">The caster conjures a circular, slightly concave, weight- bearing,
|
||
translucent disc of force. The disk follows the caster and is three feet in diameter and one inch deep. It
|
||
can hold 1,000 gold pieces in weight. The disc can hold two gallons if used to carry liquid.<br><br>The disk
|
||
hovers exactly horizontal and three to four feet off the ground. The disc accompanies the caster within its
|
||
range and matches his/her movement rate. If left undirected, Tenneal's Floating Disc maintains an interval
|
||
of six feet from the wizard. When the spell ends, whatever the disc supported falls to the ground.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Tenneal's Floating Disc}} {{Level=1}} {{Range=2 Feet}} {{Duration=3 Turns/1 Turn per Level}} {{Description=The caster conjures a circular, slightly concave, weight- bearing, translucent disc of force. The disk follows the caster and is three feet in diameter and one inch deep. It can hold 1,000 gold pieces in weight. The disc can hold two gallons if used to carry liquid.<br><br>The disk hovers exactly horizontal and three to four feet off the ground. The disc accompanies the caster within its range and matches his/her movement rate. If left undirected, Tenneal's Floating Disc maintains an interval of six feet from the wizard. When the spell ends, whatever the disc supported falls to the ground.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell1_tenneals_magic_aura"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Tenneal's Magic Aura</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">1 Day/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell allows the caster to temporarily enchant an item. The
|
||
item registers a radiance to Detect Magic (or any spells with similar detection ability). If the item
|
||
bearing Tenneal's Magic Aura is closely examined by touch, the scrutineer sees the aura as false if s/he
|
||
saves versus Spell. Otherwise, s/he is convinced the aura is proof of a magic item</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Tenneal's Magic Aura}} {{Level=1}} {{Range=Touch}} {{Duration=1 Day/Level}} {{Description=This spell allows the caster to temporarily enchant an item. The item registers a radiance to Detect Magic (or any spells with similar detection ability). If the item bearing Tenneal's Magic Aura is closely examined by touch, the scrutineer sees the aura as false if s/he saves versus Spell. Otherwise, s/he is convinced the aura is proof of a magic item}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell9_time_stop"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Time Stop</span>
|
||
<span class="ds-prepred-spell-level">9</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">2 Rounds</span>
|
||
<span class="ds-prepred-spell-description">Through this spell, the caster stops time. The caster is protected
|
||
from the passage of time in a fixed, gleaming, magical globe 30x30 feet. The wizard can act for two rounds
|
||
inside the globe, while all other beings are suspended in time. As soon as the wizard exits the globe, the
|
||
spell terminates. If beings or monsters enter the globe, they are suspended in time.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Time Stop}} {{Level=9}} {{Range=0}} {{Duration=2 Rounds}} {{Description=Through this spell, the caster stops time. The caster is protected from the passage of time in a fixed, gleaming, magical globe 30x30 feet. The wizard can act for two rounds inside the globe, while all other beings are suspended in time. As soon as the wizard exits the globe, the spell terminates. If beings or monsters enter the globe, they are suspended in time.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell3_tongues"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Tongues✦</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn</span>
|
||
<span class="ds-prepred-spell-description">This incantation allows the caster to comprehend the language of
|
||
one intelligent being for the spell's duration. The reverse, Garble , will negate a Tongues spell. It can
|
||
also be used, with touch, to make language incomprehensible. The spell does not provide a saving
|
||
throw.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Tongues✦}} {{Level=3}} {{Range=Touch}} {{Duration=1 Turn}} {{Description=This incantation allows the caster to comprehend the language of one intelligent being for the spell's duration. The reverse, Garble , will negate a Tongues spell. It can also be used, with touch, to make language incomprehensible. The spell does not provide a saving throw.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell3_garble"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Garble†</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn</span>
|
||
<span class="ds-prepred-spell-description">Negates Tongues or makes a target's speech incomprehensible. No
|
||
save.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Garble†}} {{Level=3}} {{Range=Touch}} {{Duration=1 Turn}} {{Description=Negates Tongues or makes a target's speech incomprehensible. No save.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell6_transmute_ice_to_flesh"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Transmute Ice to Flesh✦</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">This spell allows the transmutation of a frozen being to its
|
||
natural state, restoring both life and equipment. The spell is reversible and allows the caster to freeze a
|
||
living humanoid target if a save versus Stone is failed.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Transmute Ice to Flesh✦}} {{Level=6}} {{Range=Touch}} {{Duration=Permanent}} {{Description=This spell allows the transmutation of a frozen being to its natural state, restoring both life and equipment. The spell is reversible and allows the caster to freeze a living humanoid target if a save versus Stone is failed.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell6_freeze_flesh"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Freeze Flesh†</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">Freezes a living humanoid target solid. Target must save versus
|
||
Stone or be frozen.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Freeze Flesh†}} {{Level=6}} {{Range=Touch}} {{Duration=Permanent}} {{Description=Freezes a living humanoid target solid. Target must save versus Stone or be frozen.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell5_transmute_rock_to_mud"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Transmute Rock to Mud✦</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">80 Feet</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">This spell transmutes 800 square feet of rock (10 feet deep) into
|
||
mud per level. Movement rate through mud is reduced by 3/4. Transmute Mud to Rock (reverse of the spell)
|
||
alters an equal volume into rock. Both transmutations are permanent.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Transmute Rock to Mud✦}} {{Level=5}} {{Range=80 Feet}} {{Duration=Permanent}} {{Description=This spell transmutes 800 square feet of rock (10 feet deep) into mud per level. Movement rate through mud is reduced by 3/4. Transmute Mud to Rock (reverse of the spell) alters an equal volume into rock. Both transmutations are permanent.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell5_transmute_mud_to_rock"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Transmute Mud to Rock†</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">80 Feet</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">This spell transmutes 800 square feet of mud (10 feet deep) into
|
||
rock per level. Movement rate through mud is reduced by 3/4. Transmute Mud to Rock (reverse of the spell)
|
||
alters an equal volume into rock. Both transmutations are permanent.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Transmute Mud to Rock†}} {{Level=5}} {{Range=80 Feet}} {{Duration=Permanent}} {{Description=This spell transmutes 800 square feet of mud (10 feet deep) into rock per level. Movement rate through mud is reduced by 3/4. Transmute Mud to Rock (reverse of the spell) alters an equal volume into rock. Both transmutations are permanent.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell8_trap_the_soul"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Trap the Soul</span>
|
||
<span class="ds-prepred-spell-level">8</span>
|
||
<span class="ds-prepred-spell-range">10 Feet</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">Trap the Soul forces a being's soul and body into a gemstone. The
|
||
gem traps a being indefinitely. Before casting Trap the Soul , the mage must purchase a gem of not less than
|
||
1,000gp for each hit die possessed by the target. If the gem breaks, the soul is released and allows the
|
||
physical body to materialize. The spell can be activated in two manners:<br><br>Spell Completion: Upon
|
||
completing the spell the target is allowed a saving throw (Spell) for no effect. If successful, the gemstone
|
||
disintegrates into dust.<br><br>Trigger Object: This method tricks the target into taking an item inscribed
|
||
with his/her name and the final word of the spell. The caster could also place Sympathy on the item or
|
||
object. When the final word is read, the spell imprisons the being's soul (no save).</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Trap the Soul}} {{Level=8}} {{Range=10 Feet}} {{Duration=Permanent}} {{Description=Trap the Soul forces a being's soul and body into a gemstone. The gem traps a being indefinitely. Before casting Trap the Soul , the mage must purchase a gem of not less than 1,000gp for each hit die possessed by the target. If the gem breaks, the soul is released and allows the physical body to materialize. The spell can be activated in two manners:<br><br>Spell Completion: Upon completing the spell the target is allowed a saving throw (Spell) for no effect. If successful, the gemstone disintegrates into dust.<br><br>Trigger Object: This method tricks the target into taking an item inscribed with his/her name and the final word of the spell. The caster could also place Sympathy on the item or object. When the final word is read, the spell imprisons the being's soul (no save).}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell5_true_sight"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">True Sight✦</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">True Sight confers the ability to see the truth. The subject may
|
||
perceive all things in normal or magical darkness, see invisible beings and objects, see illusions or
|
||
displacements, notice secret doors, and can identify the true nature of transmutations, polymorphs, and
|
||
altered states. Further, the recipient can see astral or ethereal beings. False Sight makes things, beings,
|
||
and monsters appear the “opposite” to their true nature. A save versus Spell negates False Sight.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=True Sight✦}} {{Level=5}} {{Range=Touch}} {{Duration=1 Round/Level}} {{Description=True Sight confers the ability to see the truth. The subject may perceive all things in normal or magical darkness, see invisible beings and objects, see illusions or displacements, notice secret doors, and can identify the true nature of transmutations, polymorphs, and altered states. Further, the recipient can see astral or ethereal beings. False Sight makes things, beings, and monsters appear the “opposite” to their true nature. A save versus Spell negates False Sight.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell5_false_sight"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">False Sight†</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">Makes targets perceive things as their opposite nature (good looks
|
||
evil, treasure looks worthless, etc.). Save negates.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=False Sight†}} {{Level=5}} {{Range=Touch}} {{Duration=1 Round/Level}} {{Description=Makes targets perceive things as their opposite nature (good looks evil, treasure looks worthless, etc.). Save negates.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell1_unseen_servant"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Unseen Servant</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">6 Turns/1 Turn per level</span>
|
||
<span class="ds-prepred-spell-description">An Unseen Servant is a vaguely-humanoid, invisible force from the
|
||
Elemental Plane of Air that undertakes simple tasks bidden by the caster. The servant can move or retrieve
|
||
items, open unstuck doors, chests, coffers, hold chairs, mend, and clean. The servant can drag a maximum of
|
||
40 pounds and lift a maximum of 20 pounds. The servant is a non-combatant. An Unseen Servant can be
|
||
dismissed or dispelled, but cannot be slain.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Unseen Servant}} {{Level=1}} {{Range=0}} {{Duration=6 Turns/1 Turn per level}} {{Description=An Unseen Servant is a vaguely-humanoid, invisible force from the Elemental Plane of Air that undertakes simple tasks bidden by the caster. The servant can move or retrieve items, open unstuck doors, chests, coffers, hold chairs, mend, and clean. The servant can drag a maximum of 40 pounds and lift a maximum of 20 pounds. The servant is a non-combatant. An Unseen Servant can be dismissed or dispelled, but cannot be slain.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell7_vanish"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Vanish</span>
|
||
<span class="ds-prepred-spell-level">7</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">By means of this spell, a wizard can Teleport an object (as the
|
||
spell of the same name). Alternatively, the caster can banish an item to the Ethereal Plane. This spell
|
||
replaces the item with a stone of equal weight on the wizard's plane of existence. The caster may Vanish a
|
||
maximum of 50 pounds per level of the caster. The banished item can be returned by casting Dispel Magic on
|
||
the stone replacement.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Vanish}} {{Level=7}} {{Range=Touch}} {{Duration=See below}} {{Description=By means of this spell, a wizard can Teleport an object (as the spell of the same name). Alternatively, the caster can banish an item to the Ethereal Plane. This spell replaces the item with a stone of equal weight on the wizard's plane of existence. The caster may Vanish a maximum of 50 pounds per level of the caster. The banished item can be returned by casting Dispel Magic on the stone replacement.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell1_ventriloquism"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Ventriloquism</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">60 Feet</span>
|
||
<span class="ds-prepred-spell-duration">2 Rounds/1 per Level</span>
|
||
<span class="ds-prepred-spell-description">Through this incantation the caster makes his or her voice, or
|
||
someone else's, sound like it originated from any direction (or source) within the range of the spell for
|
||
the spell's duration.<br><br>There is a 10% chance per point of Intelligence above 12, that the listener may
|
||
detect the deception.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Ventriloquism}} {{Level=1}} {{Range=60 Feet}} {{Duration=2 Rounds/1 per Level}} {{Description=Through this incantation the caster makes his or her voice, or someone else's, sound like it originated from any direction (or source) within the range of the spell for the spell's duration.<br><br>There is a 10% chance per point of Intelligence above 12, that the listener may detect the deception.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox"
|
||
name="attr_magic_user_spell2_vitharias_vengeful_visage" style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Vitharia's Vengeful Visage</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">This spell is as a lesser version of the Level 4 Magic-User spell
|
||
Fear. This spell creates an illusion that deforms the face of the caster (or accentuates a preexisting
|
||
deformity) and inspires terror in living humanoid creatures within an invisible cone (5 feet wide origin, 20
|
||
feet long, and 15 feet in diameter at the end). Those who behold the Vengeful Visage panic and flee in fear
|
||
of the caster (save versus Spell to negate). Targets flee the caster as fast as their speed allows, for a
|
||
number of rounds equal to half the caster's level (rounded up). This spell is ineffective against blind
|
||
creatures or creatures of four or greater hit dice. Vitharia was a young elven magic-user of great promise
|
||
who was defaced when pummeled in the street by thugs. He was later bludgeoned and eaten by a mimic.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Vitharia's Vengeful Visage}} {{Level=2}} {{Range=0}} {{Duration=See below}} {{Description=This spell is as a lesser version of the Level 4 Magic-User spell Fear. This spell creates an illusion that deforms the face of the caster (or accentuates a preexisting deformity) and inspires terror in living humanoid creatures within an invisible cone (5 feet wide origin, 20 feet long, and 15 feet in diameter at the end). Those who behold the Vengeful Visage panic and flee in fear of the caster (save versus Spell to negate). Targets flee the caster as fast as their speed allows, for a number of rounds equal to half the caster's level (rounded up). This spell is ineffective against blind creatures or creatures of four or greater hit dice. Vitharia was a young elven magic-user of great promise who was defaced when pummeled in the street by thugs. He was later bludgeoned and eaten by a mimic.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell4_wall_of_fire"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Wall of Fire</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">30 Feet/10 Feet per Level</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">This spell conjures an immobile, blazing curtain of fire into
|
||
existence. A Wall of Fire is 1/4 inch thick and 10 feet long per caster level. The caster can shape the wall
|
||
in any manner desired such as curved, straight, or a protective circle. All those that attempt to pass
|
||
through it take 2d6 points of damage +1 per level of the caster. The wall scores double damage on cold-based
|
||
monsters or monsters that use cold-based attacks. Fire, or fire- using creatures take no damage. The wall
|
||
can be extinguished by white dragon breath, Cone of Cold , Ice Storm , or similar spells.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Wall of Fire}} {{Level=4}} {{Range=30 Feet/10 Feet per Level}} {{Duration=See below}} {{Description=This spell conjures an immobile, blazing curtain of fire into existence. A Wall of Fire is 1/4 inch thick and 10 feet long per caster level. The caster can shape the wall in any manner desired such as curved, straight, or a protective circle. All those that attempt to pass through it take 2d6 points of damage +1 per level of the caster. The wall scores double damage on cold-based monsters or monsters that use cold-based attacks. Fire, or fire- using creatures take no damage. The wall can be extinguished by white dragon breath, Cone of Cold , Ice Storm , or similar spells.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell5_wall_of_force"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Wall of Force</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">30 Feet/10 Feet per Level</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn/1 Round per Level</span>
|
||
<span class="ds-prepred-spell-description">A Wall of Force creates a fixed and invisible wall (10 feet long
|
||
per level of the caster). The wall is immobile, immune to damage, and immune to most spells (including
|
||
Dispel Magic). Disintegrate or a Rod of Cancellation immediately destroys a Wall of Force. The wall provides
|
||
complete protection against spells, missile weapons, breath weapons, thermal and electrical attacks, in
|
||
either direction. Upon casting, the wizard can choose to form the Wall of Force into a globe or hemisphere
|
||
with a 10x10 foot radius per caster level.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Wall of Force}} {{Level=5}} {{Range=30 Feet/10 Feet per Level}} {{Duration=1 Turn/1 Round per Level}} {{Description=A Wall of Force creates a fixed and invisible wall (10 feet long per level of the caster). The wall is immobile, immune to damage, and immune to most spells (including Dispel Magic). Disintegrate or a Rod of Cancellation immediately destroys a Wall of Force. The wall provides complete protection against spells, missile weapons, breath weapons, thermal and electrical attacks, in either direction. Upon casting, the wizard can choose to form the Wall of Force into a globe or hemisphere with a 10x10 foot radius per caster level.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell1_wall_of_glass"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Wall of Glass</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">30 Feet/10 Feet per Level</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">By means of this spell, the caster conjures a 10x10 foot pane of
|
||
1/4 inch glass. The caster must merge the glass, at least in part, with surrounding walls or floors to
|
||
provide support. The caster may choose to conjure transparent, opaque, mirrored, or frosted glass at the
|
||
time of casting. The spell cannot create one- way glass or mirrors. The wall has AC: 10 and HP: 1. When
|
||
destroyed, the wall shatters into glass shards. Any creature running through the glass takes 1d4 points of
|
||
damage and must save versus Stone or be stunned for one round (unable to act). A missile fired through the
|
||
wall breaks the glass and renders the attack ineffective. The wall can support 15 pounds of weight before it
|
||
collapses. Any creature falling through the glass takes the same damage outlined above. The spell can also
|
||
be cast in the air and fall on targets with the same effect.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Wall of Glass}} {{Level=1}} {{Range=30 Feet/10 Feet per Level}} {{Duration=Permanent}} {{Description=By means of this spell, the caster conjures a 10x10 foot pane of 1/4 inch glass. The caster must merge the glass, at least in part, with surrounding walls or floors to provide support. The caster may choose to conjure transparent, opaque, mirrored, or frosted glass at the time of casting. The spell cannot create one- way glass or mirrors. The wall has AC: 10 and HP: 1. When destroyed, the wall shatters into glass shards. Any creature running through the glass takes 1d4 points of damage and must save versus Stone or be stunned for one round (unable to act). A missile fired through the wall breaks the glass and renders the attack ineffective. The wall can support 15 pounds of weight before it collapses. Any creature falling through the glass takes the same damage outlined above. The spell can also be cast in the air and fall on targets with the same effect.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell4_wall_of_ice"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Wall of Ice</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">30 Feet/10 Feet per Level</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn/Level</span>
|
||
<span class="ds-prepred-spell-description">Through this spell the caster conjures an immobile, translucent
|
||
Wall of Ice. A Wall of Ice is 1/4 inch thick and 10 feet long per caster level. The caster can shape the
|
||
wall in any manner desired such as curved, straight, or a protective circle. All those that attempt to pass
|
||
through it take 2d6 points of damage +1 per level of the caster.<br><br>The wall scores double damage
|
||
against fire-based monsters or those that use fire-based attacks. Cold, or cold-using creatures take no
|
||
damage. Dragon fire or spells such as Fireball melt the wall in one turn. If conjured horizontally, and
|
||
dropped on opponents, the spell functions as per Ice Storm.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Wall of Ice}} {{Level=4}} {{Range=30 Feet/10 Feet per Level}} {{Duration=1 Turn/Level}} {{Description=Through this spell the caster conjures an immobile, translucent Wall of Ice. A Wall of Ice is 1/4 inch thick and 10 feet long per caster level. The caster can shape the wall in any manner desired such as curved, straight, or a protective circle. All those that attempt to pass through it take 2d6 points of damage +1 per level of the caster.<br><br>The wall scores double damage against fire-based monsters or those that use fire-based attacks. Cold, or cold-using creatures take no damage. Dragon fire or spells such as Fireball melt the wall in one turn. If conjured horizontally, and dropped on opponents, the spell functions as per Ice Storm.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell5_wall_of_iron"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Wall of Iron</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">5 Feet/Level</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">Through this spell a magic-user conjures a wall of iron. The wall
|
||
automatically connects to any surrounding solid matter (a wall, for example) if sufficient length. The
|
||
caster cannot materialize the wall into an a space already occupied by an object or creature. The caster
|
||
must ensure a flat plane in order to stand the wall upright. If unsupported, the wall may (50%) fall and
|
||
crush those underneath it (1d6 damage per level). A Wall of Iron is 1/4 inch thick/per level and its length
|
||
is 10 feet per caster level. The length can be doubled but the thickness of the wall will be halved. Like
|
||
all iron, the wall is subject to rust and the elements.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Wall of Iron}} {{Level=5}} {{Range=5 Feet/Level}} {{Duration=Permanent}} {{Description=Through this spell a magic-user conjures a wall of iron. The wall automatically connects to any surrounding solid matter (a wall, for example) if sufficient length. The caster cannot materialize the wall into an a space already occupied by an object or creature. The caster must ensure a flat plane in order to stand the wall upright. If unsupported, the wall may (50%) fall and crush those underneath it (1d6 damage per level). A Wall of Iron is 1/4 inch thick/per level and its length is 10 feet per caster level. The length can be doubled but the thickness of the wall will be halved. Like all iron, the wall is subject to rust and the elements.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell5_wall_of_stone"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Wall of Stone</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">5 Feet/Level</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">The caster conjures a granite stone wall (1/4 inch thick and 10
|
||
feet long per level). A Wall of Stone is permanent unless destroyed or dispelled. The wall can be used to
|
||
breach gaps, form a bridge, or as a ramp.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Wall of Stone}} {{Level=5}} {{Range=5 Feet/Level}} {{Duration=See below}} {{Description=The caster conjures a granite stone wall (1/4 inch thick and 10 feet long per level). A Wall of Stone is permanent unless destroyed or dispelled. The wall can be used to breach gaps, form a bridge, or as a ramp.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell3_water_breathing"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Water Breathing</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">3 Turns/Level</span>
|
||
<span class="ds-prepred-spell-description">Through this spell the caster (or a recipient) can breathe water.
|
||
The recipient can still breathe air. Water breathing does not provide the ability to swim.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Water Breathing}} {{Level=3}} {{Range=Touch}} {{Duration=3 Turns/Level}} {{Description=Through this spell the caster (or a recipient) can breathe water. The recipient can still breathe air. Water breathing does not provide the ability to swim.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell2_web"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Web</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">10 Feet/Level</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn/Level</span>
|
||
<span class="ds-prepred-spell-description">Web creates a net of strong, sticky, web-like strands. All those
|
||
caught in the Web are entangled and cannot move. A being with Strength: 13-17 can extricate himself in one
|
||
turn and Strength: 18+ in three rounds. A save versus Spell (-2) is allowed to avoid, or partially avoid,
|
||
the web. A successful save results in one of two options. Either the target avoids the Web , or, if
|
||
insufficient space exists, the Maze Controller can rule a partial entanglement. Partial Web entanglements
|
||
are half strength. A Web is flammable. All those caught within a flaming Web take 2d4 points of damage for
|
||
two rounds before the net burns away.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Web}} {{Level=2}} {{Range=10 Feet/Level}} {{Duration=1 Turn/Level}} {{Description=Web creates a net of strong, sticky, web-like strands. All those caught in the Web are entangled and cannot move. A being with Strength: 13-17 can extricate himself in one turn and Strength: 18+ in three rounds. A save versus Spell (-2) is allowed to avoid, or partially avoid, the web. A successful save results in one of two options. Either the target avoids the Web , or, if insufficient space exists, the Maze Controller can rule a partial entanglement. Partial Web entanglements are half strength. A Web is flammable. All those caught within a flaming Web take 2d4 points of damage for two rounds before the net burns away.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell6_welnards_wizard_window"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Welnard's Wizard Window</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">By means of this spell, the caster may see through walls. The spell
|
||
creates a three-foot square, one-way window for the spell's duration. The caster can create windows in more
|
||
than one wall but this requires one round to manifest a new portal. The caster may allow others to see
|
||
through Welnard's Wizard Window , if desired. However, if made visible to another the mage is limited to one
|
||
wall only. A window can be made in wood (20 feet thick), stone (6 feet thick), or metal (4 inches thick).
|
||
Welnard's Wizard Window cannot penetrate platinum, gold, or lead.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Welnard's Wizard Window}} {{Level=6}} {{Range=Touch}} {{Duration=1 Round/Level}} {{Description=By means of this spell, the caster may see through walls. The spell creates a three-foot square, one-way window for the spell's duration. The caster can create windows in more than one wall but this requires one round to manifest a new portal. The caster may allow others to see through Welnard's Wizard Window , if desired. However, if made visible to another the mage is limited to one wall only. A window can be made in wood (20 feet thick), stone (6 feet thick), or metal (4 inches thick). Welnard's Wizard Window cannot penetrate platinum, gold, or lead.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell9_wish"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Wish</span>
|
||
<span class="ds-prepred-spell-level">9</span>
|
||
<span class="ds-prepred-spell-range">Unlimited</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">Wish harnesses the cosmic power of the universe and is the greatest
|
||
of all magic-user spells. By simply speaking his or her desire, the caster alters reality. The spell can
|
||
facilitate all the same effects described under Limited Wish , and can imitate Level 9 spells (or manifest
|
||
comparable effects).<br><br>The Maze Controller adjudicates the limits of a Wish. The spell could accomplish
|
||
the raising of the dead, reversing past events, or healing an army of damage or pestilence. The spell could
|
||
teleport a party to any desired location without error. Ability scores and powers can be altered at the Maze
|
||
Controller's judgment. Wishes will only manifest according to the exact wording of the request.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Wish}} {{Level=9}} {{Range=Unlimited}} {{Duration=See below}} {{Description=Wish harnesses the cosmic power of the universe and is the greatest of all magic-user spells. By simply speaking his or her desire, the caster alters reality. The spell can facilitate all the same effects described under Limited Wish , and can imitate Level 9 spells (or manifest comparable effects).<br><br>The Maze Controller adjudicates the limits of a Wish. The spell could accomplish the raising of the dead, reversing past events, or healing an army of damage or pestilence. The spell could teleport a party to any desired location without error. Ability scores and powers can be altered at the Maze Controller's judgment. Wishes will only manifest according to the exact wording of the request.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell4_wizard_eye"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Wizard Eye</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell conjures an invisible arcane eye that provides visual
|
||
information to the caster. The eye possesses darkvision of 60 feet and travels 30 feet per round. The eye
|
||
can move in any manner for the duration of the spell. Solid barriers block the eye's vision and
|
||
passage.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Wizard Eye}} {{Level=4}} {{Range=0}} {{Duration=1 Round/Level}} {{Description=This spell conjures an invisible arcane eye that provides visual information to the caster. The eye possesses darkvision of 60 feet and travels 30 feet per round. The eye can move in any manner for the duration of the spell. Solid barriers block the eye's vision and passage.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell2_wizard_lock"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Wizard Lock</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">Wizard Lock magically locks a chest, portal, or door. A mage can
|
||
bypass his/her own Wizard Lock at any time. Dispel Magic or Knock will open a secure Wizard Lock , as well
|
||
as breaking a chest or door. Dispel Magic removes a Wizard Lock , while Knock allows one-time passage.
|
||
Moreover, any magic-user or illusionist may bypass a Wizard Lock at-will if four levels higher than the
|
||
caster.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Wizard Lock}} {{Level=2}} {{Range=Touch}} {{Duration=Permanent}} {{Description=Wizard Lock magically locks a chest, portal, or door. A mage can bypass his/her own Wizard Lock at any time. Dispel Magic or Knock will open a secure Wizard Lock , as well as breaking a chest or door. Dispel Magic removes a Wizard Lock , while Knock allows one-time passage. Moreover, any magic-user or illusionist may bypass a Wizard Lock at-will if four levels higher than the caster.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell1_write"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Write</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">6 Turns/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell allows an illusionist or magic-user to transpose a spell
|
||
into his or her spellbook. The spell allows the inscription of new spells the wizard cannot currently cast
|
||
due to level. The inscription process requires six turns per spell level. The caster must make an
|
||
Intelligence Check (modifier applies) to inscribe the new spell. The check is adjusted by the difference
|
||
between the caster's level and the level of the spell. A bonus of +2 is applied to the Intelligence Check if
|
||
the spell is the same level as the caster, +1 if one level higher, and 0 if two levels higher. If the spell
|
||
copied is three levels or greater than the wizard's current casting ability, a -1 penalty is applied. For
|
||
each level beyond three, an additional penalty of -1 is applied. In many instances, spells may be learned
|
||
automatically. However, a wizard can only attempt to learn a spell twice. If both checks fail, s/he cannot
|
||
learn the spell in question.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Write}} {{Level=1}} {{Range=0}} {{Duration=6 Turns/Level}} {{Description=This spell allows an illusionist or magic-user to transpose a spell into his or her spellbook. The spell allows the inscription of new spells the wizard cannot currently cast due to level. The inscription process requires six turns per spell level. The caster must make an Intelligence Check (modifier applies) to inscribe the new spell. The check is adjusted by the difference between the caster's level and the level of the spell. A bonus of +2 is applied to the Intelligence Check if the spell is the same level as the caster, +1 if one level higher, and 0 if two levels higher. If the spell copied is three levels or greater than the wizard's current casting ability, a -1 penalty is applied. For each level beyond three, an additional penalty of -1 is applied. In many instances, spells may be learned automatically. However, a wizard can only attempt to learn a spell twice. If both checks fail, s/he cannot learn the spell in question.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox"
|
||
name="attr_magic_user_spell3_zozomirs_stentorian_shout" style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Zozomir's Stentorian Shout</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">30 Feet</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">The caster emits a thunderous yell that deafens and damages all
|
||
those within its cone of effect (10 feet to 30 feet at the terminal end). Any creature caught within is
|
||
deafened for 2d6 rounds and takes 1d6 points of damage per level of the caster. A successful save (Spell)
|
||
negates the deafness and reduces the damage by half. Beings or monsters made of crystal take double damage
|
||
from the spell. Fragile objects are outright destroyed. Shout cannot penetrate a Silence spell.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Zozomir's Stentorian Shout}} {{Level=3}} {{Range=30 Feet}} {{Duration=See below}} {{Description=The caster emits a thunderous yell that deafens and damages all those within its cone of effect (10 feet to 30 feet at the terminal end). Any creature caught within is deafened for 2d6 rounds and takes 1d6 points of damage per level of the caster. A successful save (Spell) negates the deafness and reduces the damage by half. Beings or monsters made of crystal take double damage from the spell. Fragile objects are outright destroyed. Shout cannot penetrate a Silence spell.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox"
|
||
name="attr_magic_user_spell1_zupangs_protracting_eyeball" style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Zu-Pang's Protracting Eyeball</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">30 Feet/10 Feet per Level</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">Through this spell a magic-user may stretch and extend the muscles
|
||
of his or her eye from its socket to a range of 30 feet plus 10 feet per level. The Protracting Eyeball is
|
||
completely silent and serves as an means of scouting unknown environments. The caster may turn the eyeball
|
||
any direction (left, right, up, down, etc.) but may only see what is directly in front (no peripheral vision
|
||
is provided unless the eyeball is turned to look in a given direction). If the muscles of the eyeball are
|
||
severed, for any reason, the magic-user loses the eye and 1d2 hit points permanently. Note that Zu-Pang's
|
||
Protracting Eyeball does not provide darkvision but stacks with spells that magically enhance sight if cast
|
||
in advance of the spell (such as True Sight, Darkvision etc.). The eye can be recoiled by the magic-user at
|
||
any time.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Zu-Pang's Protracting Eyeball}} {{Level=1}} {{Range=30 Feet/10 Feet per Level}} {{Duration=1 Round/Level}} {{Description=Through this spell a magic-user may stretch and extend the muscles of his or her eye from its socket to a range of 30 feet plus 10 feet per level. The Protracting Eyeball is completely silent and serves as an means of scouting unknown environments. The caster may turn the eyeball any direction (left, right, up, down, etc.) but may only see what is directly in front (no peripheral vision is provided unless the eyeball is turned to look in a given direction). If the muscles of the eyeball are severed, for any reason, the magic-user loses the eye and 1d2 hit points permanently. Note that Zu-Pang's Protracting Eyeball does not provide darkvision but stacks with spells that magically enhance sight if cast in advance of the spell (such as True Sight, Darkvision etc.). The eye can be recoiled by the magic-user at any time.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_magic_user_spell3_zurgosmels_heeded_echo"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Zurgosmel's Heeded Echo</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">60 Feet/10 per Level</span>
|
||
<span class="ds-prepred-spell-duration">2 Rounds/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell is a variation of Audible Glamer. Through this spell the
|
||
caster creates a false sound that monstrous humanoids will hear as a command issued from a warband leader,
|
||
tribal chieftain, warlord, king, etc. The caster can center the spell anywhere within range. The caster may
|
||
also fluctuate the sound to appear as approaching or receding. The spell affects four medium-sized monsters
|
||
plus one per level of the caster within the range of the spell. Monsters of four or more hit dice are
|
||
unaffected. Monsters of three hit dice or lower are allowed a saving throw (Spell at -2) to realize the
|
||
effect is false, but only if the orders issued make no logical sense in the context of the situation and
|
||
thus prompt an attempt to disbelieve.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Zurgosmel's Heeded Echo}} {{Level=3}} {{Range=60 Feet/10 per Level}} {{Duration=2 Rounds/Level}} {{Description=This spell is a variation of Audible Glamer. Through this spell the caster creates a false sound that monstrous humanoids will hear as a command issued from a warband leader, tribal chieftain, warlord, king, etc. The caster can center the spell anywhere within range. The caster may also fluctuate the sound to appear as approaching or receding. The spell affects four medium-sized monsters plus one per level of the caster within the range of the spell. Monsters of four or more hit dice are unaffected. Monsters of three hit dice or lower are allowed a saving throw (Spell at -2) to realize the effect is false, but only if the orders issued make no logical sense in the context of the situation and thus prompt an attempt to disbelieve.}}"></button>
|
||
</div>
|
||
|
||
|
||
</div>
|
||
|
||
<input type="checkbox" name="attr_show_illusionist_prepared_spells_control"
|
||
class="ds-show-prepared-spells-control" style="display: none;" />
|
||
<div class="ds-prepared-spells-illusionist">
|
||
<div class="ds-prepared-spells-header">
|
||
<span class="ds-prepared-spells-name-header">Spell</span>
|
||
<span class="ds-prepared-spells-level-header">Lvl.</span>
|
||
<span class="ds-prepared-spells-range-header">Range</span>
|
||
<span class="ds-prepared-spells-duration-header">Duration</span>
|
||
<span class="ds-prepared-spells-description-header">Description</span>
|
||
</div>
|
||
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell7_astral_spell"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Astral Spell</span>
|
||
<span class="ds-prepred-spell-level">7</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">This spell allows the caster to free his or her soul from its
|
||
corporeality and project astrally on another plane of existence. Five other willing souls may travel with
|
||
the caster as long as all subjects are connected by hand. Companions must follow, and are dependent upon,
|
||
the caster while in astral form. If separated or slain, the caster's companions will be stranded on the
|
||
Astral Plane.<br><br>The bodies of all astral travellers remain in suspended form on the Prime Material
|
||
Plane. The caster (and companion travellers) can only take items that exist on the Astral Plane. The Astral
|
||
Plane connects to other planes and the caster may also travel to these locations. The caster creates a new
|
||
physical manifestation on the desired plane.<br><br>The caster anchors himself to his physical body on the
|
||
Prime Material Plane through an enchanted silver cord. At any point, if the cord is severed, either on the
|
||
Astral or the Material Plane, the caster dies. The silvery cord is attached invisibly to the caster for the
|
||
duration of the spell. If the astral form's second manifestation is killed, the cord pulls the caster's soul
|
||
back to his suspended body on the Material Plane. The actions of the projected caster only influence beings
|
||
existent on the astral plane.<br><br>Travel through the Astral Plane can continue indefinitely. PC bodies
|
||
are unaffected by the passage of time and do not require sustenance. The Astral Spell continues until ended
|
||
by the caster.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Astral Spell}} {{Level=7}} {{Range=Touch}} {{Duration=See below}} {{Description=This spell allows the caster to free his or her soul from its corporeality and project astrally on another plane of existence. Five other willing souls may travel with the caster as long as all subjects are connected by hand. Companions must follow, and are dependent upon, the caster while in astral form. If separated or slain, the caster's companions will be stranded on the Astral Plane.<br><br>The bodies of all astral travellers remain in suspended form on the Prime Material Plane. The caster (and companion travellers) can only take items that exist on the Astral Plane. The Astral Plane connects to other planes and the caster may also travel to these locations. The caster creates a new physical manifestation on the desired plane.<br><br>The caster anchors himself to his physical body on the Prime Material Plane through an enchanted silver cord. At any point, if the cord is severed, either on the Astral or the Material Plane, the caster dies. The silvery cord is attached invisibly to the caster for the duration of the spell. If the astral form's second manifestation is killed, the cord pulls the caster's soul back to his suspended body on the Material Plane. The actions of the projected caster only influence beings existent on the astral plane.<br><br>Travel through the Astral Plane can continue indefinitely. PC bodies are unaffected by the passage of time and do not require sustenance. The Astral Spell continues until ended by the caster.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell1_audible_glamer"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Audible Glamer</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">60 Feet/10 Feet per Level</span>
|
||
<span class="ds-prepred-spell-duration">2 Rounds/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell creates illusionary sound. The wizard can project and
|
||
center the sound anywhere within range. The caster could, for example, create footsteps (approaching or
|
||
retreating), or voices (loud or soft), etc. The caster can produce sound equivalent to four medium-sized
|
||
humanoids. The wizard may also increase the sound by four humanoids for each level beyond the minimum
|
||
required to cast the spell. Note the caster may only use the spell to imitate any sound he or she has heard
|
||
in the past (human, animal, monster, etc.). If the caster desires a variation on the volume as outlined
|
||
above, the Maze Controller determines the volume generated. For instance, the sound of four humans might
|
||
approximate eight children or one troll. All those who actively disbelieve, are allowed a saving (Spell) to
|
||
recognize the illusionary sound.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Audible Glamer}} {{Level=1}} {{Range=60 Feet/10 Feet per Level}} {{Duration=2 Rounds/Level}} {{Description=This spell creates illusionary sound. The wizard can project and center the sound anywhere within range. The caster could, for example, create footsteps (approaching or retreating), or voices (loud or soft), etc. The caster can produce sound equivalent to four medium-sized humanoids. The wizard may also increase the sound by four humanoids for each level beyond the minimum required to cast the spell. Note the caster may only use the spell to imitate any sound he or she has heard in the past (human, animal, monster, etc.). If the caster desires a variation on the volume as outlined above, the Maze Controller determines the volume generated. For instance, the sound of four humans might approximate eight children or one troll. All those who actively disbelieve, are allowed a saving (Spell) to recognize the illusionary sound.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell2_blindness"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Blindness</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">30 Feet</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">The caster can throw this spell and blind a single target
|
||
permanently (-4 to hit). The blindness is magical in nature and cure spells will not alleviate the effect.
|
||
Only the caster can dismiss the spell or a Dispel Magic.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Blindness}} {{Level=2}} {{Range=30 Feet}} {{Duration=See below}} {{Description=The caster can throw this spell and blind a single target permanently (-4 to hit). The blindness is magical in nature and cure spells will not alleviate the effect. Only the caster can dismiss the spell or a Dispel Magic.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell2_blur"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Blur</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">Caster</span>
|
||
<span class="ds-prepred-spell-duration">3 Rounds/1 per Level</span>
|
||
<span class="ds-prepred-spell-description">This dweomer blurs the caster. Due to the distortion, attackers
|
||
suffer a -4 penalty to hit with both melee and ranged attacks in the first round of the spell and -2 in all
|
||
remaining rounds for the spell's duration. In addition, the caster gains +1 to Wand and Spell saves that
|
||
require an attack roll.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Blur}} {{Level=2}} {{Range=Caster}} {{Duration=3 Rounds/1 per Level}} {{Description=This dweomer blurs the caster. Due to the distortion, attackers suffer a -4 penalty to hit with both melee and ranged attacks in the first round of the spell and -2 in all remaining rounds for the spell's duration. In addition, the caster gains +1 to Wand and Spell saves that require an attack roll.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell2_breath_of_the_dragon"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Breath of the Dragon</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">See below</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn</span>
|
||
<span class="ds-prepred-spell-description">Breath of the Dragon is a second level magic-user or illusionist
|
||
spell. While casting this dweomer, the wizard's eyes roll back in his/her head and a visually impenetrable
|
||
bank of fog spills forth from his or her mouth for one turn. The bank of fog settles across a chasm or
|
||
expanse and functions as a horizontal bridge (200 feet in length plus 10 feet per level). The spell
|
||
dissipates in one turn after the casting is complete.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Breath of the Dragon}} {{Level=2}} {{Range=See below}} {{Duration=1 Turn}} {{Description=Breath of the Dragon is a second level magic-user or illusionist spell. While casting this dweomer, the wizard's eyes roll back in his/her head and a visually impenetrable bank of fog spills forth from his or her mouth for one turn. The bank of fog settles across a chasm or expanse and functions as a horizontal bridge (200 feet in length plus 10 feet per level). The spell dissipates in one turn after the casting is complete.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell1_color_spray"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Color Spray</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">3 Feet/1 per Level</span>
|
||
<span class="ds-prepred-spell-duration">Instant</span>
|
||
<span class="ds-prepred-spell-description">A brilliant cone of colorful light streams forward from the
|
||
illusionist's hands. The cone shoots forward in a 120-degree arc and is 5 feet in length. The spell blinds
|
||
or stuns 1d6 targets in the area. In addition, the spell may knock targets unconscious. The spell affects
|
||
the hit dice of target(s) in relation to the level of the caster, as outlined on the table
|
||
below:<br><br>Monster Hit Dice Color Spray Result HD: < or Equal to Caster Unconscious (2d4 Rds) HD: 1-2+
|
||
than Caster Blinded (1d4 Rds) HD: 3+ than Caster Stunned (1 Rd) The spell provides a save to negate
|
||
(Spell) for those of six hit dice or greater, or with more hit dice than the caster. Sightless or blind
|
||
beings are unaffected.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Color Spray}} {{Level=1}} {{Range=3 Feet/1 per Level}} {{Duration=Instant}} {{Description=A brilliant cone of colorful light streams forward from the illusionist's hands. The cone shoots forward in a 120-degree arc and is 5 feet in length. The spell blinds or stuns 1d6 targets in the area. In addition, the spell may knock targets unconscious. The spell affects the hit dice of target(s) in relation to the level of the caster, as outlined on the table below:<br><br>Monster Hit Dice Color Spray Result HD: < or Equal to Caster Unconscious (2d4 Rds) HD: 1-2+ than Caster Blinded (1d4 Rds) HD: 3+ than Caster Stunned (1 Rd) The spell provides a save to negate (Spell) for those of six hit dice or greater, or with more hit dice than the caster. Sightless or blind beings are unaffected.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell4_confusion"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Confusion</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">10 Feet</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell confuses 2d4 targets within a 10x10 foot area. On a
|
||
failed save (Spell at -2), targets are unable to function independently. Roll below, at the opening of every
|
||
combat round, to determine the target's response:<br><br>1d20 Confusion Result 15-20 Attacks nearest being.
|
||
9-14 Mumbles incoherently (2 Rounds). 5-8 Scratches head befuddled. 1-4 Wanders in random direction (1
|
||
Turn).</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Confusion}} {{Level=4}} {{Range=10 Feet}} {{Duration=1 Round/Level}} {{Description=This spell confuses 2d4 targets within a 10x10 foot area. On a failed save (Spell at -2), targets are unable to function independently. Roll below, at the opening of every combat round, to determine the target's response:<br><br>1d20 Confusion Result 15-20 Attacks nearest being. 9-14 Mumbles incoherently (2 Rounds). 5-8 Scratches head befuddled. 1-4 Wanders in random direction (1 Turn).}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell5_confusion_advanced"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Confusion (Advanced)</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">See below</span>
|
||
<span class="ds-prepred-spell-duration">2 Rounds/Level</span>
|
||
<span class="ds-prepred-spell-description">Advanced Confusion is indistinguishable from the lesser spell,
|
||
except it affects 3d4 beings in a 30x foot area. Illusionists can save versus Spell to avoid its affect, as
|
||
well as fighters (except barbarians, paladins, and rangers). All saves versus spell are at a -2
|
||
penalty.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Confusion (Advanced)}} {{Level=5}} {{Range=See below}} {{Duration=2 Rounds/Level}} {{Description=Advanced Confusion is indistinguishable from the lesser spell, except it affects 3d4 beings in a 30x foot area. Illusionists can save versus Spell to avoid its affect, as well as fighters (except barbarians, paladins, and rangers). All saves versus spell are at a -2 penalty.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell3_continual_light"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Continual Light✦</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">10 Feet</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">This spell creates light equivalent to sunlight in a 60 foot
|
||
radius, and any creature that suffers a penalty in sunlight is affected. The caster may throw the spell on
|
||
objects or a creature's eyes, causing blindness (-4 to hit, saving throw versus Spell negates). Unless
|
||
dispelled, Continual Light is permanent. Continual Darkness produces darkness consistent with the above
|
||
spell. It can be countered with Continual Light or Dispel Magic. Like Continual Light , the caster may
|
||
target the eyes and cause blindness (save applies). Normal eyesight, including darkvision, cannot penetrate
|
||
Continual Darkness , nor can lanterns, torches, or Light.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Continual Light✦}} {{Level=3}} {{Range=10 Feet}} {{Duration=See below}} {{Description=This spell creates light equivalent to sunlight in a 60 foot radius, and any creature that suffers a penalty in sunlight is affected. The caster may throw the spell on objects or a creature's eyes, causing blindness (-4 to hit, saving throw versus Spell negates). Unless dispelled, Continual Light is permanent. Continual Darkness produces darkness consistent with the above spell. It can be countered with Continual Light or Dispel Magic. Like Continual Light , the caster may target the eyes and cause blindness (save applies). Normal eyesight, including darkvision, cannot penetrate Continual Darkness , nor can lanterns, torches, or Light.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell3_continual_darkness"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Continual Darkness†</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">10 Feet</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">Creates magical darkness in a 60-foot radius that blocks all normal
|
||
and darkvision sight. Can blind a creature (save negates) if cast at the eyes. Only Continual Light or
|
||
Dispel Magic counters it.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Continual Darkness†}} {{Level=3}} {{Range=10 Feet}} {{Duration=See below}} {{Description=Creates magical darkness in a 60-foot radius that blocks all normal and darkvision sight. Can blind a creature (save negates) if cast at the eyes. Only Continual Light or Dispel Magic counters it.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell1_dancing_lights"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Dancing Lights</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">10 Feet</span>
|
||
<span class="ds-prepred-spell-duration">2 Rounds/Level</span>
|
||
<span class="ds-prepred-spell-description">The caster conjures four dancing orbs of light, or a single,
|
||
spectral human-like form. The dancing lights glow akin to torchlight and disappear if they move more than 10
|
||
feet from each other. The caster determines their flight pattern: up, down, forward, backward, diagonal,
|
||
straight, or around corners. The glowing orbs disappear if they move beyond the range of the spell. Dancing
|
||
Lights are often mistaken for Will-o-Wisps.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Dancing Lights}} {{Level=1}} {{Range=10 Feet}} {{Duration=2 Rounds/Level}} {{Description=The caster conjures four dancing orbs of light, or a single, spectral human-like form. The dancing lights glow akin to torchlight and disappear if they move more than 10 feet from each other. The caster determines their flight pattern: up, down, forward, backward, diagonal, straight, or around corners. The glowing orbs disappear if they move beyond the range of the spell. Dancing Lights are often mistaken for Will-o-Wisps.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell1_darkness_15_feet"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Darkness (15 Feet)</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">30 Feet</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn/1 Round per Level</span>
|
||
<span class="ds-prepred-spell-description">The caster conjures a globe of darkness with a 15 foot radius,
|
||
centered within range of the spell. The darkness in the radius is absolute, and all mundane forms of vision
|
||
are negated, including darkvision. Both Light or Continual Light counter the spell, such that the standard
|
||
light within the radius functions normally.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Darkness (15 Feet)}} {{Level=1}} {{Range=30 Feet}} {{Duration=1 Turn/1 Round per Level}} {{Description=The caster conjures a globe of darkness with a 15 foot radius, centered within range of the spell. The darkness in the radius is absolute, and all mundane forms of vision are negated, including darkvision. Both Light or Continual Light counter the spell, such that the standard light within the radius functions normally.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell2_deafness"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Deafness</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">10 Feet</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">If the target fails a save (Spell), s/he is deafened. The effect is
|
||
permanent. The deafness is magical and cure spells will not remove the condition. The caster can choose to
|
||
dismiss the spell at-will. Dispel Magic will also remove Deafness.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Deafness}} {{Level=2}} {{Range=10 Feet}} {{Duration=See below}} {{Description=If the target fails a save (Spell), s/he is deafened. The effect is permanent. The deafness is magical and cure spells will not remove the condition. The caster can choose to dismiss the spell at-will. Dispel Magic will also remove Deafness.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell1_detect_illusion"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Detect Illusion</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">10 Feet/10 Feet per Level</span>
|
||
<span class="ds-prepred-spell-duration">3 Rounds/2 Rounds per Level</span>
|
||
<span class="ds-prepred-spell-description">This spell allows the caster to determine the presence of an
|
||
illusion. Illusions must be in immediate sight (within 10 feet plus 10 feet per level). The caster can allow
|
||
another being to see an illusion through touch at the time of casting.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Detect Illusion}} {{Level=1}} {{Range=10 Feet/10 Feet per Level}} {{Duration=3 Rounds/2 Rounds per Level}} {{Description=This spell allows the caster to determine the presence of an illusion. Illusions must be in immediate sight (within 10 feet plus 10 feet per level). The caster can allow another being to see an illusion through touch at the time of casting.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell1_detect_invisibility"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Detect Invisibility</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">10 Feet/10 Feet per Level</span>
|
||
<span class="ds-prepred-spell-duration">5 Rounds/Level</span>
|
||
<span class="ds-prepred-spell-description">By means of this spell, the caster may view all invisible items and
|
||
beings. In addition, the caster can also see ethereal or astral items and beings.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Detect Invisibility}} {{Level=1}} {{Range=10 Feet/10 Feet per Level}} {{Duration=5 Rounds/Level}} {{Description=By means of this spell, the caster may view all invisible items and beings. In addition, the caster can also see ethereal or astral items and beings.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell1_detect_magic"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Detect Magic</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">10 Feet/10 Feet per Level</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn</span>
|
||
<span class="ds-prepred-spell-description">This spell allows the caster to identify a magical object or being
|
||
in the area of effect for the duration of the spell. This includes objects or beings that are permanently or
|
||
temporarily under any form of enchantment.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Detect Magic}} {{Level=1}} {{Range=10 Feet/10 Feet per Level}} {{Duration=1 Turn}} {{Description=This spell allows the caster to identify a magical object or being in the area of effect for the duration of the spell. This includes objects or beings that are permanently or temporarily under any form of enchantment.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell3_dispel_phantasmal_force"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Dispel Phantasmal Force</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">10 Feet/Level</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">An illusionist may use this spell to end Phantasmal Force. The
|
||
dweomer also dispels all illusionist spells in the same manner, and with the same percentages, as Dispel
|
||
Magic. Illusions created by classes other than illusionists are immediately dispelled.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Dispel Phantasmal Force}} {{Level=3}} {{Range=10 Feet/Level}} {{Duration=Permanent}} {{Description=An illusionist may use this spell to end Phantasmal Force. The dweomer also dispels all illusionist spells in the same manner, and with the same percentages, as Dispel Magic. Illusions created by classes other than illusionists are immediately dispelled.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell2_dragon_mist"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Dragon Mist</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">30 Feet</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">Dragon Mist creates a 20x20x20 foot bank of thick sulphuric,
|
||
choking mist centered anywhere within range. All living beings within become helpless with asphyxiation and
|
||
nausea (+2 to hit). The condition persists as long as the target remains in the mist and for 1d4+1 rounds
|
||
afterwards. Any creature that succeeds on a save versus Death when leaving fog is unaffected for the
|
||
additional rounds. The mist also obscures vision.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Dragon Mist}} {{Level=2}} {{Range=30 Feet}} {{Duration=Permanent}} {{Description=Dragon Mist creates a 20x20x20 foot bank of thick sulphuric, choking mist centered anywhere within range. All living beings within become helpless with asphyxiation and nausea (+2 to hit). The condition persists as long as the target remains in the mist and for 1d4+1 rounds afterwards. Any creature that succeeds on a save versus Death when leaving fog is unaffected for the additional rounds. The mist also obscures vision.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell1_eaiggards_wizard_vizard"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Eaiggard's Wizard Vizard</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">2d6 rounds/2 rounds per level</span>
|
||
<span class="ds-prepred-spell-description">This spell creates an illusion that alters the appearance of
|
||
caster. The illusionist may adopt the appearance of a humanoid of similar height (shorter or taller by no
|
||
less/ more than one foot). The spell can also change weight, clothing, and equipment.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Eaiggard's Wizard Vizard}} {{Level=1}} {{Range=0}} {{Duration=2d6 rounds/2 rounds per level}} {{Description=This spell creates an illusion that alters the appearance of caster. The illusionist may adopt the appearance of a humanoid of similar height (shorter or taller by no less/ more than one foot). The spell can also change weight, clothing, and equipment.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell4_emotion"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Emotion</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">10 Feet/Level</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">Through this spell, the caster imbues a subject with emotion (save
|
||
versus Spell for no effect). The following emotions and effects may be implanted: Fear as per the spell
|
||
(Save -2), Rage (+1 to hit, +2 damage, +3 hit points per level, fight until slain), Hate (to hit and damage,
|
||
saves, and morale, all +2), Despair (as the Symbol ). The spell concludes when the caster breaks
|
||
concentration or has their concentration broken.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Emotion}} {{Level=4}} {{Range=10 Feet/Level}} {{Duration=See below}} {{Description=Through this spell, the caster imbues a subject with emotion (save versus Spell for no effect). The following emotions and effects may be implanted: Fear as per the spell (Save -2), Rage (+1 to hit, +2 damage, +3 hit points per level, fight until slain), Hate (to hit and damage, saves, and morale, all +2), Despair (as the Symbol ). The spell concludes when the caster breaks concentration or has their concentration broken.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell3_fear"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Fear</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">Round/Caster Level</span>
|
||
<span class="ds-prepred-spell-description">A long and narrow invisible cone (60 feet long, 5 feet wide origin,
|
||
and 30 feet wide at the end) issues forth from the caster and causes all those in the area of effect to
|
||
panic and flee (save versus Spell to negate). There is a 60% chance with a modifier of -5% per HD (or
|
||
level), that the targets drop everything held in-hand. Those affected flee at their fastest movement rate
|
||
away from the caster.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Fear}} {{Level=3}} {{Range=0}} {{Duration=Round/Caster Level}} {{Description=A long and narrow invisible cone (60 feet long, 5 feet wide origin, and 30 feet wide at the end) issues forth from the caster and causes all those in the area of effect to panic and flee (save versus Spell to negate). There is a 60% chance with a modifier of -5% per HD (or level), that the targets drop everything held in-hand. Those affected flee at their fastest movement rate away from the caster.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell1_find_familiar"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Find Familiar</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">1 Mile/Level</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">Through this spell, the magic-user summons a familiar. The spell
|
||
takes 1d20+4 hours and consumes rare materials (Value: 100gp). The Maze Controller determines the likelihood
|
||
of a response and the creature type within range. This spell may only be cast once per year. A wizard can
|
||
access the familiar's senses and the two can communicate in the animal's tongue. A familiar is extremely
|
||
jealous and loyal, unto death. Familiars have AC: 7 and 1d4+1 hit points. They are more intelligent than
|
||
standard animals of the same type. When the two are within 120 feet, the familiar provides the caster with
|
||
additional hit points. Therefore, a mage with 4 hit points and a familiar with 2 hit points would have a
|
||
total of 6 hit points. A wizard guards his/her familiar closely and wisely. If a familiar is killed, the
|
||
caster permanently subtracts twice the familiar's hit points (to a minimum of one) from his/her own and
|
||
caster must wait a full year prior to summoning a new familiar. The following table provides a set of
|
||
examples to guide the Maze Controller: Familiar Sense Augmentation Bat Auditory Cat Auditory and Night
|
||
Vision Hawk Distance Vision Lizard Olfactory Owl Auditory and Night Vision Raven Near and Distance Vision
|
||
Toad Wide Angle Vision Weasel Auditory and Olfactory For each use of the spell, the caster may (7% chance)
|
||
summon (or construct) a unique familiar subject to his/ her alignment. Unique familiars receive a save
|
||
(Spell) to resist the summons. The save is modified by the caster's Intelligence (-1 per point of modifier).
|
||
If the familiar saves, the caster must wait a full year to cast again. Alignment Familiar* Lawful Good or
|
||
Lawful Neutral Brownie Lawful Evil or Neutral Evil Quasit Neutral or Neutral Good Pixie Chaotic Evil or
|
||
Neutral Evil Imp Chaotic Good or Chaotic Neutral Pseudo-Dragon Same Alignment as Caster Homunculus *See
|
||
monster listings for abilities. A quasit or imp familiar will attempt to influence its master to Lawful Evil
|
||
or Chaotic Evil, respectively.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Find Familiar}} {{Level=1}} {{Range=1 Mile/Level}} {{Duration=See below}} {{Description=Through this spell, the magic-user summons a familiar. The spell takes 1d20+4 hours and consumes rare materials (Value: 100gp). The Maze Controller determines the likelihood of a response and the creature type within range. This spell may only be cast once per year. A wizard can access the familiar's senses and the two can communicate in the animal's tongue. A familiar is extremely jealous and loyal, unto death. Familiars have AC: 7 and 1d4+1 hit points. They are more intelligent than standard animals of the same type. When the two are within 120 feet, the familiar provides the caster with additional hit points. Therefore, a mage with 4 hit points and a familiar with 2 hit points would have a total of 6 hit points. A wizard guards his/her familiar closely and wisely. If a familiar is killed, the caster permanently subtracts twice the familiar's hit points (to a minimum of one) from his/her own and caster must wait a full year prior to summoning a new familiar. The following table provides a set of examples to guide the Maze Controller: Familiar Sense Augmentation Bat Auditory Cat Auditory and Night Vision Hawk Distance Vision Lizard Olfactory Owl Auditory and Night Vision Raven Near and Distance Vision Toad Wide Angle Vision Weasel Auditory and Olfactory For each use of the spell, the caster may (7% chance) summon (or construct) a unique familiar subject to his/ her alignment. Unique familiars receive a save (Spell) to resist the summons. The save is modified by the caster's Intelligence (-1 per point of modifier). If the familiar saves, the caster must wait a full year to cast again. Alignment Familiar* Lawful Good or Lawful Neutral Brownie Lawful Evil or Neutral Evil Quasit Neutral or Neutral Good Pixie Chaotic Evil or Neutral Evil Imp Chaotic Good or Chaotic Neutral Pseudo-Dragon Same Alignment as Caster Homunculus *See monster listings for abilities. A quasit or imp familiar will attempt to influence its master to Lawful Evil or Chaotic Evil, respectively.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell2_fog_cloud"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Fog Cloud</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">10 Feet</span>
|
||
<span class="ds-prepred-spell-duration">4 Rounds/1 Round per Level</span>
|
||
<span class="ds-prepred-spell-description">Through this spell the caster calls forth a bank of fog (40 feet
|
||
tall, 20 feet long, 20 feet wide). The purpose of the spell is to obscure vision, akin to a Wall of Fog and
|
||
it behaves as per the spell Cloudkill. The caster determines the direction of the Fog Cloud. The cloud has a
|
||
movement rate of 10 feet/round.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Fog Cloud}} {{Level=2}} {{Range=10 Feet}} {{Duration=4 Rounds/1 Round per Level}} {{Description=Through this spell the caster calls forth a bank of fog (40 feet tall, 20 feet long, 20 feet wide). The purpose of the spell is to obscure vision, akin to a Wall of Fog and it behaves as per the spell Cloudkill. The caster determines the direction of the Fog Cloud. The cloud has a movement rate of 10 feet/round.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell1_gaze_reflection"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Gaze Reflection</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">N/A</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">By means of this spell the caster conjures a near translucent,
|
||
reflective, mirror-like magical shield that hovers before, and moves with, him/her. The shield reflects all
|
||
gaze attacks back on the attacker.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Gaze Reflection}} {{Level=1}} {{Range=N/A}} {{Duration=1 Round/Level}} {{Description=By means of this spell the caster conjures a near translucent, reflective, mirror-like magical shield that hovers before, and moves with, him/her. The shield reflects all gaze attacks back on the attacker.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell3_hallucinatory_forest"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Hallucinatory Forest</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">30 Feet</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">Through this spell the caster creates an illusion over a specific
|
||
area. The terrain appears, smells, and sounds exactly as determined by the caster. Dispel Magic also
|
||
dismisses the illusion. The caster may change a 10x10 foot area (per level). If cast by a druid, enchanted
|
||
woodland creatures such as dryads, brownies, nymphs, pixies, satyrs, etc., will recognize the truth of the
|
||
illusion. The spell ends if an intelligent being contacts the terrain.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Hallucinatory Forest}} {{Level=3}} {{Range=30 Feet}} {{Duration=See below}} {{Description=Through this spell the caster creates an illusion over a specific area. The terrain appears, smells, and sounds exactly as determined by the caster. Dispel Magic also dismisses the illusion. The caster may change a 10x10 foot area (per level). If cast by a druid, enchanted woodland creatures such as dryads, brownies, nymphs, pixies, satyrs, etc., will recognize the truth of the illusion. The spell ends if an intelligent being contacts the terrain.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell2_hypnotic_pattern"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Hypnotic Pattern</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">Through this spell the caster weaves a pattern of twisting and
|
||
shifting colors through the air. The effect, centered on the illusionist, fascinates all those within a
|
||
10x10 foot radius. The spell affects a total of 24 hit dice. The caster may distribute the hit dice in any
|
||
combination: such as twelve 2 hit die creatures, four 5 hit die and one 4 hit die creature, etc. Those
|
||
affected stand motionless and captivated by the caster's Hypnotic Pattern. The spell may continue
|
||
indefinitely. The caster may take no other action while s/he concentrates on the spell. The spell does not
|
||
provide a saving throw.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Hypnotic Pattern}} {{Level=2}} {{Range=0}} {{Duration=See below}} {{Description=Through this spell the caster weaves a pattern of twisting and shifting colors through the air. The effect, centered on the illusionist, fascinates all those within a 10x10 foot radius. The spell affects a total of 24 hit dice. The caster may distribute the hit dice in any combination: such as twelve 2 hit die creatures, four 5 hit die and one 4 hit die creature, etc. Those affected stand motionless and captivated by the caster's Hypnotic Pattern. The spell may continue indefinitely. The caster may take no other action while s/he concentrates on the spell. The spell does not provide a saving throw.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell1_hypnotism"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Hypnotism</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">30 Feet</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/1 Round per Level</span>
|
||
<span class="ds-prepred-spell-description">The caster's elaborate gesticulations and monotone incantations
|
||
fascinate 1d6 targets within range making them vulnerable to a mundane spell-like Suggestion , as per the
|
||
magic-user spell. A successful saving throw (Spell) negates the effect.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Hypnotism}} {{Level=1}} {{Range=30 Feet}} {{Duration=1 Round/1 Round per Level}} {{Description=The caster's elaborate gesticulations and monotone incantations fascinate 1d6 targets within range making them vulnerable to a mundane spell-like Suggestion , as per the magic-user spell. A successful saving throw (Spell) negates the effect.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell2_invisibility"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Invisibility</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">Through this spell the caster or a designated recipient turns
|
||
invisible. The invisibility is complete even from darkvision. The recipient cannot be seen by friend or foe.
|
||
The recipient's equipment also vanishes. However, anything dropped appears and anything picked up after the
|
||
spell is cast does not turn invisible. The recipient produces detectable evidence (for example, footfalls,
|
||
stepping in puddles, or splashing in water). The recipient also creates visible footprints, if applicable.
|
||
The spell is indefinite until the subject chooses to attack. An attack includes any action that causes
|
||
damage to an opponent. Indirect actions, or actions directed at inanimate objects, do not break
|
||
Invisibility. Thus, a subject could summon monsters and order them to attack, or destroy a bridge while
|
||
enemies travel across it, trigger remote traps, while remaining invisible. However, if the subject makes a
|
||
direct attack, s/he immediately becomes visible. Spells that target or buff allies, but do not target
|
||
enemies, are not considered attacks, even if they include enemies in the area of effect.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Invisibility}} {{Level=2}} {{Range=Touch}} {{Duration=See below}} {{Description=Through this spell the caster or a designated recipient turns invisible. The invisibility is complete even from darkvision. The recipient cannot be seen by friend or foe. The recipient's equipment also vanishes. However, anything dropped appears and anything picked up after the spell is cast does not turn invisible. The recipient produces detectable evidence (for example, footfalls, stepping in puddles, or splashing in water). The recipient also creates visible footprints, if applicable. The spell is indefinite until the subject chooses to attack. An attack includes any action that causes damage to an opponent. Indirect actions, or actions directed at inanimate objects, do not break Invisibility. Thus, a subject could summon monsters and order them to attack, or destroy a bridge while enemies travel across it, trigger remote traps, while remaining invisible. However, if the subject makes a direct attack, s/he immediately becomes visible. Spells that target or buff allies, but do not target enemies, are not considered attacks, even if they include enemies in the area of effect.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell3_invisibility_10_feet"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Invisibility (10 Feet)</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">This spell operates as per Invisibility , but cloaks all those
|
||
within 10 feet of the caster (or recipient). All subjects that move outside the 10 foot radius immediately
|
||
become visible.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Invisibility (10 Feet)}} {{Level=3}} {{Range=Touch}} {{Duration=See below}} {{Description=This spell operates as per Invisibility , but cloaks all those within 10 feet of the caster (or recipient). All subjects that move outside the 10 foot radius immediately become visible.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell4_invisibility_advanced"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Invisibility (Advanced)</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">4 Rounds/1 Round per Level</span>
|
||
<span class="ds-prepred-spell-description">This spell functions like Invisibility , but with two notable
|
||
differences. Advanced Invisibility is duration-limited and the recipient may attack while invisible.
|
||
However, when attacking, the invisibility leaves a displaced shimmering that allows an enemy to attack with
|
||
a penalty of -4.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Invisibility (Advanced)}} {{Level=4}} {{Range=Touch}} {{Duration=4 Rounds/1 Round per Level}} {{Description=This spell functions like Invisibility , but with two notable differences. Advanced Invisibility is duration-limited and the recipient may attack while invisible. However, when attacking, the invisibility leaves a displaced shimmering that allows an enemy to attack with a penalty of -4.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell7_invisibility_mass"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Invisibility (Mass)</span>
|
||
<span class="ds-prepred-spell-level">7</span>
|
||
<span class="ds-prepred-spell-range">10 Feet/Level</span>
|
||
<span class="ds-prepred-spell-duration">Special</span>
|
||
<span class="ds-prepred-spell-description">This spell affects all subjects in a 30 foot radius. Otherwise, the
|
||
incantation functions as per Advanced Invisibility.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Invisibility (Mass)}} {{Level=7}} {{Range=10 Feet/Level}} {{Duration=Special}} {{Description=This spell affects all subjects in a 30 foot radius. Otherwise, the incantation functions as per Advanced Invisibility.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell1_light"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Light✦</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">12 Feet</span>
|
||
<span class="ds-prepred-spell-duration">6 Turns/1 per Level</span>
|
||
<span class="ds-prepred-spell-description">This spell imbues an object with the brightness of a torch and
|
||
sheds light in a 20 foot radius. The spell is normally cast on a movable object (functions as a light source
|
||
impervious to drafts and gusts of wind). This spell may be cast on a being's eyes. In this case the target
|
||
is allowed a save (Spell) to negate. The target is blinded for the spell's duration if a save is failed. The
|
||
reverse of the spell, Darkness , provides the opposite effect. The caster can also use Darkness to target
|
||
the eyes (save applies).The two spells counter each other to return to normal lighting conditions.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Light✦}} {{Level=1}} {{Range=12 Feet}} {{Duration=6 Turns/1 per Level}} {{Description=This spell imbues an object with the brightness of a torch and sheds light in a 20 foot radius. The spell is normally cast on a movable object (functions as a light source impervious to drafts and gusts of wind). This spell may be cast on a being's eyes. In this case the target is allowed a save (Spell) to negate. The target is blinded for the spell's duration if a save is failed. The reverse of the spell, Darkness , provides the opposite effect. The caster can also use Darkness to target the eyes (save applies).The two spells counter each other to return to normal lighting conditions.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell1_darkness"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Darkness†</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">12 Feet</span>
|
||
<span class="ds-prepred-spell-duration">6 Turns/1 per Level</span>
|
||
<span class="ds-prepred-spell-description">Creates magical darkness in a 20-foot radius. Can blind a creature
|
||
if cast at their eyes. Cancels Light.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Darkness†}} {{Level=1}} {{Range=12 Feet}} {{Duration=6 Turns/1 per Level}} {{Description=Creates magical darkness in a 20-foot radius. Can blind a creature if cast at their eyes. Cancels Light.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell7_limited_wish"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Limited Wish</span>
|
||
<span class="ds-prepred-spell-level">7</span>
|
||
<span class="ds-prepred-spell-range">Unlimited</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">Through the spell Limited Wish the caster can recreate almost any
|
||
spell effect. A Limited Wish may, for example, duplicate up to any Level 7 spell, or undo harmful spell
|
||
effects, such as Geas or Quest. The caster could successfully attack or save at the next opportunity, or
|
||
produce any other effect commensurate with the above, as ruled by the Maze Controller. This spell could
|
||
grant knowledge or the answer to an unknown question or riddle. Note that Limited Wish need not match a
|
||
spell effect, but rather the result can be unique, as adjudicated by the Maze Controller.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Limited Wish}} {{Level=7}} {{Range=Unlimited}} {{Duration=See below}} {{Description=Through the spell Limited Wish the caster can recreate almost any spell effect. A Limited Wish may, for example, duplicate up to any Level 7 spell, or undo harmful spell effects, such as Geas or Quest. The caster could successfully attack or save at the next opportunity, or produce any other effect commensurate with the above, as ruled by the Maze Controller. This spell could grant knowledge or the answer to an unknown question or riddle. Note that Limited Wish need not match a spell effect, but rather the result can be unique, as adjudicated by the Maze Controller.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell2_magic_mouth"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Magic Mouth</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">See below</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">This spell imbues an object with an invisible, enchanted mouth that
|
||
appears and speaks when triggered. A Magic Mouth can speak any message, in a language known by the caster to
|
||
a maximum of 25 words. The caster can designate the number of times the message repeats (to a maximum of 10
|
||
rounds). Magic Mouth cannot throw spells.<br><br>Regardless of where the wizard places Magic Mouth , the
|
||
lips exactly mimic the words uttered. If cast on a statue, for example, the statue's mouth would appear to
|
||
speak. The caster can place Magic Mouth on inanimate objects only.<br><br>The mouth triggers when specific
|
||
conditions are met at the time of casting. Triggers can be general, or specific, but must be tactile,
|
||
visual, or audible. Audible triggers could include general noise or a specific keyword. Visible or audible
|
||
actions can also be encoded. A Magic Mouth cannot discern between level, alignment, class, or hit dice,
|
||
unless keyed to garments. The trigger range is five feet per caster level. Therefore, a Level 6 wizard can
|
||
command a Magic Mouth to respond to a trigger as far as 30 feet away. A Magic Mouth can only respond subject
|
||
to its triggers. For example, a visual trigger requires line of sight. The spell's duration is permanent,
|
||
until its conditions are met and the spell discharges.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Magic Mouth}} {{Level=2}} {{Range=See below}} {{Duration=See below}} {{Description=This spell imbues an object with an invisible, enchanted mouth that appears and speaks when triggered. A Magic Mouth can speak any message, in a language known by the caster to a maximum of 25 words. The caster can designate the number of times the message repeats (to a maximum of 10 rounds). Magic Mouth cannot throw spells.<br><br>Regardless of where the wizard places Magic Mouth , the lips exactly mimic the words uttered. If cast on a statue, for example, the statue's mouth would appear to speak. The caster can place Magic Mouth on inanimate objects only.<br><br>The mouth triggers when specific conditions are met at the time of casting. Triggers can be general, or specific, but must be tactile, visual, or audible. Audible triggers could include general noise or a specific keyword. Visible or audible actions can also be encoded. A Magic Mouth cannot discern between level, alignment, class, or hit dice, unless keyed to garments. The trigger range is five feet per caster level. Therefore, a Level 6 wizard can command a Magic Mouth to respond to a trigger as far as 30 feet away. A Magic Mouth can only respond subject to its triggers. For example, a visual trigger requires line of sight. The spell's duration is permanent, until its conditions are met and the spell discharges.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell5_major_creation"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Major Creation</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">6 Turns/1 per Level</span>
|
||
<span class="ds-prepred-spell-description">Major Creation is like Minor Creation. The caster may create
|
||
mineral objects (stone, crystal, metal, etc) in addition to non-living organic objects.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Major Creation}} {{Level=5}} {{Range=Touch}} {{Duration=6 Turns/1 per Level}} {{Description=Major Creation is like Minor Creation. The caster may create mineral objects (stone, crystal, metal, etc) in addition to non-living organic objects.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell4_massmorph"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Massmorph</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">10 Feet</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">This spell creates an illusionary forest in a 20x20 foot radius
|
||
(plus 10x10 feet per level). Up to a dozen medium-sized or equivalent beings (per level) can be concealed by
|
||
Massmorph. Anyone inside the area of effect that exits becomes visible. The caster can end the spell at any
|
||
time.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Massmorph}} {{Level=4}} {{Range=10 Feet}} {{Duration=See below}} {{Description=This spell creates an illusionary forest in a 20x20 foot radius (plus 10x10 feet per level). Up to a dozen medium-sized or equivalent beings (per level) can be concealed by Massmorph. Anyone inside the area of effect that exits becomes visible. The caster can end the spell at any time.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox"
|
||
name="attr_illusionist_spell1_mazakalas_imperfect_panic" style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Mazakala's Imperfect Panic</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">40 Feet</span>
|
||
<span class="ds-prepred-spell-duration">3 Rounds/1 per Level</span>
|
||
<span class="ds-prepred-spell-description">By means of this spell the caster inspires panic in 1d4 (+1 per
|
||
level) humanoid creatures of no greater than two hit dice (saving throw versus Spell for no effect). The
|
||
result of Mazakala's Imperfect Panic is subject to the table below: 1d6 Spell Effect 1 Run in random
|
||
direction 2 Sob uncontrollably 3 Attack nearest humanoid 4 Vomit loudly 5 Assume fetal position 6 Maze
|
||
Controller's Choice*</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Mazakala's Imperfect Panic}} {{Level=1}} {{Range=40 Feet}} {{Duration=3 Rounds/1 per Level}} {{Description=By means of this spell the caster inspires panic in 1d4 (+1 per level) humanoid creatures of no greater than two hit dice (saving throw versus Spell for no effect). The result of Mazakala's Imperfect Panic is subject to the table below: 1d6 Spell Effect 1 Run in random direction 2 Sob uncontrollably 3 Attack nearest humanoid 4 Vomit loudly 5 Assume fetal position 6 Maze Controller's Choice*}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell5_maze"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Maze</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">5 Feet/Level</span>
|
||
<span class="ds-prepred-spell-duration">Special</span>
|
||
<span class="ds-prepred-spell-description">The caster banishes the target to an unending maze in an
|
||
extradimensional space. The target's Intelligence determines how long the subject wanders aimlessly.
|
||
Minotaurs are immune to this spell.<br><br>Intelligence Time Trapped 18 or higher 1d4 Rounds 15-17 2d4
|
||
Rounds 12-14 3d4 Rounds 9-11 4d4 Rounds 6-8 5d4 Rounds 3-5 1d4 Turns 2 or below 2d4 Turns</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Maze}} {{Level=5}} {{Range=5 Feet/Level}} {{Duration=Special}} {{Description=The caster banishes the target to an unending maze in an extradimensional space. The target's Intelligence determines how long the subject wanders aimlessly. Minotaurs are immune to this spell.<br><br>Intelligence Time Trapped 18 or higher 1d4 Rounds 15-17 2d4 Rounds 12-14 3d4 Rounds 9-11 4d4 Rounds 6-8 5d4 Rounds 3-5 1d4 Turns 2 or below 2d4 Turns}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox"
|
||
name="attr_illusionist_spell2_mikdaerrs_practical_tilt" style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Mikda-Err's Practical Tilt</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">See Below</span>
|
||
<span class="ds-prepred-spell-duration">1 Round</span>
|
||
<span class="ds-prepred-spell-description">Through this spell the magic-user may target one medium-sized or
|
||
smaller creature in sight (normally an advancing enemy) and plant a suggestion that the floor tilted. The
|
||
target is allowed a save versus Spell for no effect. Failure indicates that the target has fallen and
|
||
requires a round to stand and resume their attack. A prone target is +4 o hit.<br><br>For each level after
|
||
the first, the magic-user may affect an additional target (2 at second level, 3 at third, and so on).
|
||
Alternatively, the magic-user or illusionist may impose a penalty of -1 on the save instead of affecting a
|
||
second target. Thus, a third level caster could affect three creatures, or two at -1, one creature at
|
||
-2.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Mikda-Err's Practical Tilt}} {{Level=2}} {{Range=See Below}} {{Duration=1 Round}} {{Description=Through this spell the magic-user may target one medium-sized or smaller creature in sight (normally an advancing enemy) and plant a suggestion that the floor tilted. The target is allowed a save versus Spell for no effect. Failure indicates that the target has fallen and requires a round to stand and resume their attack. A prone target is +4 o hit.<br><br>For each level after the first, the magic-user may affect an additional target (2 at second level, 3 at third, and so on). Alternatively, the magic-user or illusionist may impose a penalty of -1 on the save instead of affecting a second target. Thus, a third level caster could affect three creatures, or two at -1, one creature at -2.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell4_minor_creation"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Minor Creation</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">6 Turns/Level</span>
|
||
<span class="ds-prepred-spell-description">The illusionist creates a non-living organic object, such as wood,
|
||
cloth, or rope, etc. The item may not exceed 1x1x1 foot per level of the caster. The spell requires a piece
|
||
of the desired object to cast Minor Creation.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Minor Creation}} {{Level=4}} {{Range=Touch}} {{Duration=6 Turns/Level}} {{Description=The illusionist creates a non-living organic object, such as wood, cloth, or rope, etc. The item may not exceed 1x1x1 foot per level of the caster. The spell requires a piece of the desired object to cast Minor Creation.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell2_mirror_image"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Mirror Image</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">N/A</span>
|
||
<span class="ds-prepred-spell-duration">2 Rounds/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell creates 1d4 illusionary duplicates of the caster (1d4+1
|
||
for illusionists). Each of the illusions match the caster in detail and precisely imitate the mage's actions
|
||
in every respect. The caster selects which number among the duplicates s/he occupies. Opponents must select
|
||
a duplicate number prior to making an attack roll. A successful attack on the caster causes normal damage.
|
||
If an opponent strikes an illusion, it disappears.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Mirror Image}} {{Level=2}} {{Range=N/A}} {{Duration=2 Rounds/Level}} {{Description=This spell creates 1d4 illusionary duplicates of the caster (1d4+1 for illusionists). Each of the illusions match the caster in detail and precisely imitate the mage's actions in every respect. The caster selects which number among the duplicates s/he occupies. Opponents must select a duplicate number prior to making an attack roll. A successful attack on the caster causes normal damage. If an opponent strikes an illusion, it disappears.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell2_misdirection"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Misdirection</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">30 Feet</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">By means of this spell, the caster misdirects divination spells
|
||
like Detect Evil , Detect Magic , Detect Lie , etc. The illusionist marks an object or being within range at
|
||
the time of casting. For the duration, a detection spell divines only the marked object or being. The
|
||
diviner is allowed a saving throw (Spell) to circumvent Misdirection.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Misdirection}} {{Level=2}} {{Range=30 Feet}} {{Duration=1 Round/Level}} {{Description=By means of this spell, the caster misdirects divination spells like Detect Evil , Detect Magic , Detect Lie , etc. The illusionist marks an object or being within range at the time of casting. For the duration, a detection spell divines only the marked object or being. The diviner is allowed a saving throw (Spell) to circumvent Misdirection.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell3_nondetection"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Non-detection</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn/Level</span>
|
||
<span class="ds-prepred-spell-description">Through this spell, the caster cloaks his or her presence, and all
|
||
those within a five foot radius, from divination such as Detection spells, Locate Object , Clairvoyance, or
|
||
Clairaudience. The spell also prevents detection by magic items like a Crystal Ball.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Non-detection}} {{Level=3}} {{Range=0}} {{Duration=1 Turn/Level}} {{Description=Through this spell, the caster cloaks his or her presence, and all those within a five foot radius, from divination such as Detection spells, Locate Object , Clairvoyance, or Clairaudience. The spell also prevents detection by magic items like a Crystal Ball.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell3_paralyzation"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Paralyzation</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">10 Feet/Level</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">This spell paralyzes the caster's opponents. The caster can affect
|
||
twice his/her hit dice within a designated 20x20 foot area (save versus Spell to negate). The caster can
|
||
dismiss the spell, when desired.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Paralyzation}} {{Level=3}} {{Range=10 Feet/Level}} {{Duration=See below}} {{Description=This spell paralyzes the caster's opponents. The caster can affect twice his/her hit dice within a designated 20x20 foot area (save versus Spell to negate). The caster can dismiss the spell, when desired.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell1_phantasmal_force"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Phantasmal Force</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">10 Feet/5 Feet per Level</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">Through this dweomer, the caster creates an illusion within a fixed
|
||
20x20x20 foot cube. The caster must concentrate solely on the illusion. If touched, the illusion disappears.
|
||
However, an illusionary creature can attack. All those who behold the illusion are given a saving throw
|
||
(Spell) to disbelieve. If successful, a disbeliever can communicate the truth of the illusion to others (+4
|
||
on disbelieve saves). If a player character fails their save, the illusion continues. An illusionary monster
|
||
will appear to inflict harm on its target. Illusionary monsters have AC: 9, and vanish if struck. If the
|
||
target loses all its hit points, s/he falls to the ground unconscious instead of dying. All other aspects of
|
||
the phantasm are illusionary and impose no damage. The illusion includes no auditory component.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Phantasmal Force}} {{Level=1}} {{Range=10 Feet/5 Feet per Level}} {{Duration=See below}} {{Description=Through this dweomer, the caster creates an illusion within a fixed 20x20x20 foot cube. The caster must concentrate solely on the illusion. If touched, the illusion disappears. However, an illusionary creature can attack. All those who behold the illusion are given a saving throw (Spell) to disbelieve. If successful, a disbeliever can communicate the truth of the illusion to others (+4 on disbelieve saves). If a player character fails their save, the illusion continues. An illusionary monster will appear to inflict harm on its target. Illusionary monsters have AC: 9, and vanish if struck. If the target loses all its hit points, s/he falls to the ground unconscious instead of dying. All other aspects of the phantasm are illusionary and impose no damage. The illusion includes no auditory component.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox"
|
||
name="attr_illusionist_spell2_phantasmal_force_advanced" style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Phantasmal Force (Advanced)</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">10 Feet/5 Feet per Level</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">This spell is an enhanced Phantasmal Force. The area of effect is a
|
||
fixed 40 foot cube plus ten square feet per level of the caster. Unlike the lesser version, the spell
|
||
includes subtle auditory effects (like movement, etc.). The spell does not include speech, but roaring,
|
||
grunting, or mumbling are possible. While focusing on the dweomer, the caster may only move at half speed.
|
||
The illusion remains for two rounds after the caster finishes directing the spell. Refer to Phantasmal Force
|
||
for additional detail.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Phantasmal Force (Advanced)}} {{Level=2}} {{Range=10 Feet/5 Feet per Level}} {{Duration=See below}} {{Description=This spell is an enhanced Phantasmal Force. The area of effect is a fixed 40 foot cube plus ten square feet per level of the caster. Unlike the lesser version, the spell includes subtle auditory effects (like movement, etc.). The spell does not include speech, but roaring, grunting, or mumbling are possible. While focusing on the dweomer, the caster may only move at half speed. The illusion remains for two rounds after the caster finishes directing the spell. Refer to Phantasmal Force for additional detail.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell4_phantasmal_killer"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Phantasmal Killer</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">5 Feet/Level</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">Through this spell the caster scans the subconscious mind of the
|
||
target and learns his/her fears. The illusionist then conjures a delusive image of the most terrifying
|
||
monster imaginable to the target. Only the caster and spell's target can view the Phantasmal Killer. If the
|
||
illusion successfully strikes the target (as a four hit die monster), the target can disbelieve with a
|
||
successful Intelligence Check. If the target fails, it dies of fear.<br><br>If the target of the spell
|
||
succeeds in disbelieving while wearing a Helm of Telepathy , the target can turn the illusion on the caster.
|
||
The caster is then required to disbelieve or be subject to the Phantasmal Killer.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Phantasmal Killer}} {{Level=4}} {{Range=5 Feet/Level}} {{Duration=1 Round/Level}} {{Description=Through this spell the caster scans the subconscious mind of the target and learns his/her fears. The illusionist then conjures a delusive image of the most terrifying monster imaginable to the target. Only the caster and spell's target can view the Phantasmal Killer. If the illusion successfully strikes the target (as a four hit die monster), the target can disbelieve with a successful Intelligence Check. If the target fails, it dies of fear.<br><br>If the target of the spell succeeds in disbelieving while wearing a Helm of Telepathy , the target can turn the illusion on the caster. The caster is then required to disbelieve or be subject to the Phantasmal Killer.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell7_prismatic_spray"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Prismatic Spray</span>
|
||
<span class="ds-prepred-spell-level">7</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">Instant</span>
|
||
<span class="ds-prepred-spell-description">This spell creates seven multicolored beams of shimmering light to
|
||
emit from the caster's palm. The beams are projected in a narrow ray 70 feet long, 5 feet wide at the
|
||
origin, and 15 feet wide at the end. Each colored beam possesses a different power. First, all those struck
|
||
(with eight hit dice or less) are blinded for 2d4 turns. Second, all those struck are hit by a second beam
|
||
of light identical to a random color of a Prismatic Sphere (see spell description). 1d8 Beam Color 1 Red 5
|
||
Blue 2 Orange 6 Indigo 3 Yellow 7 Violet 4 Green 8 Two Beams. Ignore 8</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Prismatic Spray}} {{Level=7}} {{Range=0}} {{Duration=Instant}} {{Description=This spell creates seven multicolored beams of shimmering light to emit from the caster's palm. The beams are projected in a narrow ray 70 feet long, 5 feet wide at the origin, and 15 feet wide at the end. Each colored beam possesses a different power. First, all those struck (with eight hit dice or less) are blinded for 2d4 turns. Second, all those struck are hit by a second beam of light identical to a random color of a Prismatic Sphere (see spell description). 1d8 Beam Color 1 Red 5 Blue 2 Orange 6 Indigo 3 Yellow 7 Violet 4 Green 8 Two Beams. Ignore 8}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell5_projected_image"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Projected Image</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">100 Feet/10 Feet per Level</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">The caster creates an illusory version of him or herself. The
|
||
projected image is intangible but appears, smells, and sounds exactly like the caster. The projected image
|
||
matches the caster's actions exactly, including speech and spells. The illusion dispels immediately if
|
||
touched or struck by a melee weapon. Note that missile weapons and spells pass through the illusion with no
|
||
effect.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Projected Image}} {{Level=5}} {{Range=100 Feet/10 Feet per Level}} {{Duration=1 Round/Level}} {{Description=The caster creates an illusory version of him or herself. The projected image is intangible but appears, smells, and sounds exactly like the caster. The projected image matches the caster's actions exactly, including speech and spells. The illusion dispels immediately if touched or struck by a melee weapon. Note that missile weapons and spells pass through the illusion with no effect.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell1_read_magic_arcane"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Read Magic (Arcane)</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">N/A</span>
|
||
<span class="ds-prepred-spell-duration">2 Rounds/Level</span>
|
||
<span class="ds-prepred-spell-description">By means of Read Magic (Arcane), a wizard (illusionist or
|
||
magic-user) can decipher unintelligible arcane writing (on scrolls, books, weapons, etc.). The spell does
|
||
not activate magic on an item, but it can if cursed. Once cast, the mage can read that specific item at-will
|
||
without the need for Read Magic (Arcane).</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Read Magic (Arcane)}} {{Level=1}} {{Range=N/A}} {{Duration=2 Rounds/Level}} {{Description=By means of Read Magic (Arcane), a wizard (illusionist or magic-user) can decipher unintelligible arcane writing (on scrolls, books, weapons, etc.). The spell does not activate magic on an item, but it can if cursed. Once cast, the mage can read that specific item at-will without the need for Read Magic (Arcane).}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell3_rope_trick"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Rope Trick</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">2 Turns/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell enchants a 5-30 foot long rope. The rope slowly snakes
|
||
upwards until its entire length stands suspended in the air just off the ground. The top of the rope
|
||
provides entry into an extradimensional hideout. PCs can climb the rope and access the secret hideaway. The
|
||
hideout is large enough to hold five medium-sized beings or their equivalent. Once in the hideout, the rope
|
||
can be pulled up with no trace or it can hang perpendicular to the floor. At the end of the spell's
|
||
duration, all those inside the hideout drop to the ground. Only one person can climb the rope at a
|
||
time.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Rope Trick}} {{Level=3}} {{Range=Touch}} {{Duration=2 Turns/Level}} {{Description=This spell enchants a 5-30 foot long rope. The rope slowly snakes upwards until its entire length stands suspended in the air just off the ground. The top of the rope provides entry into an extradimensional hideout. PCs can climb the rope and access the secret hideaway. The hideout is large enough to hold five medium-sized beings or their equivalent. Once in the hideout, the rope can be pulled up with no trace or it can hang perpendicular to the floor. At the end of the spell's duration, all those inside the hideout drop to the ground. Only one person can climb the rope at a time.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox"
|
||
name="attr_illusionist_spell1_secumunds_phantasmal_steed" style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Secumund's Phantasmal Steed</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">N/A</span>
|
||
<span class="ds-prepred-spell-duration">1d6 Turns/1 Turn per Level</span>
|
||
<span class="ds-prepred-spell-description">Through this spell a magic-user conjures a phantasmal steed. At
|
||
Levels 1 through 4 the steed appears like a riding horse (with equivalent movement rate). However, when cast
|
||
at Level 5 the phantasmal steed appears like a ghostly wyvern and can fly with a maximum movement of 120
|
||
feet per round. The steed can bear a second rider, but this halves its duration and speed. It cannot attack
|
||
and a Dispel Magic disperses the phantasm. Whether horse or wyvern, a physical attack ends the spell. The
|
||
caster may dismiss the steed at any time.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Secumund's Phantasmal Steed}} {{Level=1}} {{Range=N/A}} {{Duration=1d6 Turns/1 Turn per Level}} {{Description=Through this spell a magic-user conjures a phantasmal steed. At Levels 1 through 4 the steed appears like a riding horse (with equivalent movement rate). However, when cast at Level 5 the phantasmal steed appears like a ghostly wyvern and can fly with a maximum movement of 120 feet per round. The steed can bear a second rider, but this halves its duration and speed. It cannot attack and a Dispel Magic disperses the phantasm. Whether horse or wyvern, a physical attack ends the spell. The caster may dismiss the steed at any time.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell5_shadow_door"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Shadow Door</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">10 Feet</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">The caster of this spell conjures an illusory door. S/he then
|
||
appears to enter the portal and all observers will believe the caster stepped through the door. In truth,
|
||
the caster steps beside the door invisibly, as per the spell Invisibility. The caster may then slip away.
|
||
The invisibility lasts for spell's duration. All those who attempt to follow the illusionist through the
|
||
portal believe they entered a featureless 10x10 foot room for the duration of the spell.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Shadow Door}} {{Level=5}} {{Range=10 Feet}} {{Duration=1 Round/Level}} {{Description=The caster of this spell conjures an illusory door. S/he then appears to enter the portal and all observers will believe the caster stepped through the door. In truth, the caster steps beside the door invisibly, as per the spell Invisibility. The caster may then slip away. The invisibility lasts for spell's duration. All those who attempt to follow the illusionist through the portal believe they entered a featureless 10x10 foot room for the duration of the spell.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell5_shadow_magic"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Shadow Magic</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">See below</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">Through this spell, the caster draws energy from the Plane of
|
||
Shadow to cast a seemingly-real, phantasmal magic-user spell. The spells include Fireball , Lightning Bolt ,
|
||
Cone of Cold , or Magic Missile. These spells have standard ranges and effects unless the target(s) succeeds
|
||
in an Intelligence Check. A disbelieving target takes only one hit point of damage per level of the caster
|
||
from the spell.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Shadow Magic}} {{Level=5}} {{Range=See below}} {{Duration=See below}} {{Description=Through this spell, the caster draws energy from the Plane of Shadow to cast a seemingly-real, phantasmal magic-user spell. The spells include Fireball , Lightning Bolt , Cone of Cold , or Magic Missile. These spells have standard ranges and effects unless the target(s) succeeds in an Intelligence Check. A disbelieving target takes only one hit point of damage per level of the caster from the spell.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell6_shadow_magic_advanced"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Shadow Magic (Advanced)</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">See below</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">Advanced Shadow Magic allows the caster to draw from the Plane of
|
||
Shadow to cast Cloudkill , Wall of Fire , or Wall of Ice. This incantation is also capable of casting all
|
||
the spells listed in Shadow Magic. These spells have standard ranges and effects unless the target(s)
|
||
succeed in an Intelligence Check. A disbelieving target takes only two hit points (per level), and Wall of
|
||
Fire and Wall of Ice inflict 1d4 hit points of damage (per level).</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Shadow Magic (Advanced)}} {{Level=6}} {{Range=See below}} {{Duration=See below}} {{Description=Advanced Shadow Magic allows the caster to draw from the Plane of Shadow to cast Cloudkill , Wall of Fire , or Wall of Ice. This incantation is also capable of casting all the spells listed in Shadow Magic. These spells have standard ranges and effects unless the target(s) succeed in an Intelligence Check. A disbelieving target takes only two hit points (per level), and Wall of Fire and Wall of Ice inflict 1d4 hit points of damage (per level).}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell4_shadow_monsters_i"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Shadow Monsters I</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">30 Feet</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">The caster conjures semi-real, phantasmal shadow monster(s). The
|
||
monster(s) cannot surpass the illusionist's hit dice and must be of the same type. The monsters possess two
|
||
hit points per hit die. Targets are provided an Intelligence Check to disbelieve. Failure to check allows
|
||
the phantasmal monsters to attack and score damage, as per their monster entry. The phantasmal monsters
|
||
possess Armor Class 10 and their damage is reduced by 3/4 (round up).</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Shadow Monsters I}} {{Level=4}} {{Range=30 Feet}} {{Duration=1 Round/Level}} {{Description=The caster conjures semi-real, phantasmal shadow monster(s). The monster(s) cannot surpass the illusionist's hit dice and must be of the same type. The monsters possess two hit points per hit die. Targets are provided an Intelligence Check to disbelieve. Failure to check allows the phantasmal monsters to attack and score damage, as per their monster entry. The phantasmal monsters possess Armor Class 10 and their damage is reduced by 3/4 (round up).}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell5_shadow_monsters_ii"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Shadow Monsters II</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">30 Feet</span>
|
||
<span class="ds-prepred-spell-duration">1 Round per Level</span>
|
||
<span class="ds-prepred-spell-description">This spell is identical to Shadow Monsters , but with stronger
|
||
monsters. Monsters have four hit points per die. On a successful Intelligence Check to disbelieve, each
|
||
creature possesses Armor Class 8 and all damage is reduced by 2/4 (round up).</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Shadow Monsters II}} {{Level=5}} {{Range=30 Feet}} {{Duration=1 Round per Level}} {{Description=This spell is identical to Shadow Monsters , but with stronger monsters. Monsters have four hit points per die. On a successful Intelligence Check to disbelieve, each creature possesses Armor Class 8 and all damage is reduced by 2/4 (round up).}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell6_shadow_monsters_iii"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Shadow Monsters III</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">30 Feet</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell is identical to Shadow Monsters I and II , but with
|
||
stronger monsters. Monsters have three hit points per hit dice. On a successful Intelligence Check to
|
||
disbelieve, each creature possesses Armor Class 6 and all damage is reduced by 1/4 (round up).</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Shadow Monsters III}} {{Level=6}} {{Range=30 Feet}} {{Duration=1 Round/Level}} {{Description=This spell is identical to Shadow Monsters I and II , but with stronger monsters. Monsters have three hit points per hit dice. On a successful Intelligence Check to disbelieve, each creature possesses Armor Class 6 and all damage is reduced by 1/4 (round up).}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell2_sleep"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Sleep</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">30 Feet/10 Feet per Level</span>
|
||
<span class="ds-prepred-spell-duration">5 Rounds/Level</span>
|
||
<span class="ds-prepred-spell-description">Sleep causes an eldritch slumber to overtake beings with less than
|
||
4+1 hit dice. The spell radius is 30x30 feet. All targets may save (Spell) to negate the effect. All those
|
||
that fail fall asleep. Sleeping targets may receive a coup-de-grace without rolling to hit or damage dice.
|
||
Undead and monsters immune to mind-influencing spells are unaffected.<br><br>Hit Dice Number Affected Up to
|
||
1 4d4 1+1 to 2 2d4 2+2 to 3 1d4 3+3 to 4 1d2 4+1 1</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Sleep}} {{Level=2}} {{Range=30 Feet/10 Feet per Level}} {{Duration=5 Rounds/Level}} {{Description=Sleep causes an eldritch slumber to overtake beings with less than 4+1 hit dice. The spell radius is 30x30 feet. All targets may save (Spell) to negate the effect. All those that fail fall asleep. Sleeping targets may receive a coup-de-grace without rolling to hit or damage dice. Undead and monsters immune to mind-influencing spells are unaffected.<br><br>Hit Dice Number Affected Up to 1 4d4 1+1 to 2 2d4 2+2 to 3 1d4 3+3 to 4 1d2 4+1 1}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell3_spectral_force"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Spectral Force</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">10 Feet/10 per Level</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">This spell is identical to Phantasmal Force (Advanced), except the
|
||
illusion includes auditory, olfactory, and thermal aspects, and persists for three rounds after the
|
||
illusionist ceases concentration.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Spectral Force}} {{Level=3}} {{Range=10 Feet/10 per Level}} {{Duration=See below}} {{Description=This spell is identical to Phantasmal Force (Advanced), except the illusion includes auditory, olfactory, and thermal aspects, and persists for three rounds after the illusionist ceases concentration.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell3_suggestion"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Suggestion</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">30 Feet</span>
|
||
<span class="ds-prepred-spell-duration">6 Turns/Level</span>
|
||
<span class="ds-prepred-spell-description">Through this spell, the caster influences the actions of a specific
|
||
being. The Suggestion is limited to one sentence. The spell must be reasonably worded while suggesting a
|
||
pleasant, desirable outcome. The incantation fails if the caster requests something harmful. The wording of
|
||
the spell might suggest a harmless action, such as asking to drink something that might be poisonous.
|
||
Suggestion continues for the spell's duration and ends upon task completion. A very reasonable Suggestion
|
||
might allow a save penalty of -1 or -2, but is subject to the discretion of the Maze Controller. A saving
|
||
throw (spell) negates the effect.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Suggestion}} {{Level=3}} {{Range=30 Feet}} {{Duration=6 Turns/Level}} {{Description=Through this spell, the caster influences the actions of a specific being. The Suggestion is limited to one sentence. The spell must be reasonably worded while suggesting a pleasant, desirable outcome. The incantation fails if the caster requests something harmful. The wording of the spell might suggest a harmless action, such as asking to drink something that might be poisonous. Suggestion continues for the spell's duration and ends upon task completion. A very reasonable Suggestion might allow a save penalty of -1 or -2, but is subject to the discretion of the Maze Controller. A saving throw (spell) negates the effect.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell6_suggestion_mass"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Suggestion (Mass)</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">30 Feet</span>
|
||
<span class="ds-prepred-spell-duration">6 Turns/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell functions like Suggestion and influences one target per
|
||
level of the caster within 30 feet. If used on a single being, the target saves (Spell) at a -2 penalty. The
|
||
illusionist can cast but one Mass Suggestion per situation and cannot issue separate Suggestions to
|
||
individuals.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Suggestion (Mass)}} {{Level=6}} {{Range=30 Feet}} {{Duration=6 Turns/Level}} {{Description=This spell functions like Suggestion and influences one target per level of the caster within 30 feet. If used on a single being, the target saves (Spell) at a -2 penalty. The illusionist can cast but one Mass Suggestion per situation and cannot issue separate Suggestions to individuals.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell6_summon_phantom_stalker"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Summon Phantom Stalker</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">This spell summons a phantom stalker to undertake a task or quest.
|
||
The stalker will try to complete the task until destroyed. Although the creature is bound to serve, it is
|
||
not loyal to the conjurer. The stalker will resent complex missions or prolonged tasks, and will try and
|
||
subvert its instructions. Dispel Magic will send a phantom stalker back to the Elemental Plane of Fire, if
|
||
it fails a save (Spell).</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Summon Phantom Stalker}} {{Level=6}} {{Range=0}} {{Duration=See below}} {{Description=This spell summons a phantom stalker to undertake a task or quest. The stalker will try to complete the task until destroyed. Although the creature is bound to serve, it is not loyal to the conjurer. The stalker will resent complex missions or prolonged tasks, and will try and subvert its instructions. Dispel Magic will send a phantom stalker back to the Elemental Plane of Fire, if it fails a save (Spell).}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell5_summon_shadow"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Summon Shadow</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">10 Feet</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/1 Round per Level</span>
|
||
<span class="ds-prepred-spell-description">By means of this spell, the caster brings forth one Shadow per
|
||
three caster levels (see Monster Entry). The undead serve, and will fight for, the caster. They follow
|
||
commands until destroyed or the spell duration ends.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Summon Shadow}} {{Level=5}} {{Range=10 Feet}} {{Duration=1 Round/1 Round per Level}} {{Description=By means of this spell, the caster brings forth one Shadow per three caster levels (see Monster Entry). The undead serve, and will fight for, the caster. They follow commands until destroyed or the spell duration ends.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell6_true_sight"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">True Sight✦</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">True Sight confers the ability to see the truth. The subject may
|
||
perceive all things in normal or magical darkness, see invisible beings and objects, see illusions or
|
||
displacements, notice secret doors, and can identify the true nature of transmutations, polymorphs, and
|
||
altered states. Further, the recipient can see astral or ethereal beings. False Sight makes things, beings,
|
||
and monsters appear the “opposite” to their true nature. A save versus Spell negates False Sight.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=True Sight✦}} {{Level=6}} {{Range=Touch}} {{Duration=1 Round/Level}} {{Description=True Sight confers the ability to see the truth. The subject may perceive all things in normal or magical darkness, see invisible beings and objects, see illusions or displacements, notice secret doors, and can identify the true nature of transmutations, polymorphs, and altered states. Further, the recipient can see astral or ethereal beings. False Sight makes things, beings, and monsters appear the “opposite” to their true nature. A save versus Spell negates False Sight.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell6_false_sight"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">False Sight†</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">Makes targets perceive things as their opposite nature (good looks
|
||
evil, treasure looks worthless, etc.). Save negates.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=False Sight†}} {{Level=6}} {{Range=Touch}} {{Duration=1 Round/Level}} {{Description=Makes targets perceive things as their opposite nature (good looks evil, treasure looks worthless, etc.). Save negates.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell6_veil"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Veil</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">10 Feet/Level</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell alters the appearance of a 20x20 foot square area
|
||
including all those within the caster's party, if desired.<br><br>The caster may alter the appearance of the
|
||
recipients in any manner and they will look, smell, and feel exactly as expected. Recipients revert to their
|
||
original appearance if killed.<br><br>This incantation can be cast to imitate Hallucinatory Forest , but
|
||
close physical inspection will reveal the illusion. The spell True Sight or similar magics will reveal the
|
||
mirage.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Veil}} {{Level=6}} {{Range=10 Feet/Level}} {{Duration=1 Turn/Level}} {{Description=This spell alters the appearance of a 20x20 foot square area including all those within the caster's party, if desired.<br><br>The caster may alter the appearance of the recipients in any manner and they will look, smell, and feel exactly as expected. Recipients revert to their original appearance if killed.<br><br>This incantation can be cast to imitate Hallucinatory Forest , but close physical inspection will reveal the illusion. The spell True Sight or similar magics will reveal the mirage.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell2_ventriloquism"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Ventriloquism</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">60 Feet</span>
|
||
<span class="ds-prepred-spell-duration">2 Rounds/1 per Level</span>
|
||
<span class="ds-prepred-spell-description">Through this incantation the caster makes his or her voice, or
|
||
someone else's, sound like it originated from any direction (or source) within the range of the spell for
|
||
the spell's duration.<br><br>There is a 10% chance per point of Intelligence above 12, that the listener may
|
||
detect the deception.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Ventriloquism}} {{Level=2}} {{Range=60 Feet}} {{Duration=2 Rounds/1 per Level}} {{Description=Through this incantation the caster makes his or her voice, or someone else's, sound like it originated from any direction (or source) within the range of the spell for the spell's duration.<br><br>There is a 10% chance per point of Intelligence above 12, that the listener may detect the deception.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell7_vision"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Vision</span>
|
||
<span class="ds-prepred-spell-level">7</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">This spell allows the caster to ask one question of a supernatural
|
||
entity and receive an answer. The spell requires the sacrifice of a 3,000gp item. The spell does not
|
||
guarantee a response. Consult the table below when the spell is cast:<br><br>1d20 Vision Result 16-20 The
|
||
vision is complete and specific 9-15 The vision vague, unclear, and contradictory 1-8 Entity places the
|
||
wizard under Geas</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Vision}} {{Level=7}} {{Range=0}} {{Duration=See below}} {{Description=This spell allows the caster to ask one question of a supernatural entity and receive an answer. The spell requires the sacrifice of a 3,000gp item. The spell does not guarantee a response. Consult the table below when the spell is cast:<br><br>1d20 Vision Result 16-20 The vision is complete and specific 9-15 The vision vague, unclear, and contradictory 1-8 Entity places the wizard under Geas}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox"
|
||
name="attr_illusionist_spell2_vitharias_vengeful_visage" style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Vitharia's Vengeful Visage</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">This spell is as a lesser version of the Level 4 Magic-User spell
|
||
Fear. This spell creates an illusion that deforms the face of the caster (or accentuates a preexisting
|
||
deformity) and inspires terror in living humanoid creatures within an invisible cone (5 feet wide origin, 20
|
||
feet long, and 15 feet in diameter at the end). Those who behold the Vengeful Visage panic and flee in fear
|
||
of the caster (save versus Spell to negate). Targets flee the caster as fast as their speed allows, for a
|
||
number of rounds equal to half the caster's level (rounded up). This spell is ineffective against blind
|
||
creatures or creatures of four or greater hit dice. Vitharia was a young elven magic-user of great promise
|
||
who was defaced when pummeled in the street by thugs. He was later bludgeoned and eaten by a mimic.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Vitharia's Vengeful Visage}} {{Level=2}} {{Range=0}} {{Duration=See below}} {{Description=This spell is as a lesser version of the Level 4 Magic-User spell Fear. This spell creates an illusion that deforms the face of the caster (or accentuates a preexisting deformity) and inspires terror in living humanoid creatures within an invisible cone (5 feet wide origin, 20 feet long, and 15 feet in diameter at the end). Those who behold the Vengeful Visage panic and flee in fear of the caster (save versus Spell to negate). Targets flee the caster as fast as their speed allows, for a number of rounds equal to half the caster's level (rounded up). This spell is ineffective against blind creatures or creatures of four or greater hit dice. Vitharia was a young elven magic-user of great promise who was defaced when pummeled in the street by thugs. He was later bludgeoned and eaten by a mimic.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell1_wall_of_fog"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Wall of Fog</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">30 Feet</span>
|
||
<span class="ds-prepred-spell-duration">2d4 Rounds/1 Round per Level</span>
|
||
<span class="ds-prepred-spell-description">The caster of this spell conjures a thick, fog-like mist in a 20x20
|
||
foot area (per level of the caster). Visibility in the fog is limited to two feet. A strong wind, natural or
|
||
magical, disrupts a Wall of Fog prior to its full duration.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Wall of Fog}} {{Level=1}} {{Range=30 Feet}} {{Duration=2d4 Rounds/1 Round per Level}} {{Description=The caster of this spell conjures a thick, fog-like mist in a 20x20 foot area (per level of the caster). Visibility in the fog is limited to two feet. A strong wind, natural or magical, disrupts a Wall of Fog prior to its full duration.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell1_write"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Write</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">6 Turns/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell allows an illusionist or magic-user to transpose a spell
|
||
into his or her spellbook. The spell allows the inscription of new spells the wizard cannot currently cast
|
||
due to level. The inscription process requires six turns per spell level. The caster must make an
|
||
Intelligence Check (modifier applies) to inscribe the new spell. The check is adjusted by the difference
|
||
between the caster's level and the level of the spell. A bonus of +2 is applied to the Intelligence Check if
|
||
the spell is the same level as the caster, +1 if one level higher, and 0 if two levels higher. If the spell
|
||
copied is three levels or greater than the wizard's current casting ability, a -1 penalty is applied. For
|
||
each level beyond three, an additional penalty of -1 is applied. In many instances, spells may be learned
|
||
automatically. However, a wizard can only attempt to learn a spell twice. If both checks fail, s/he cannot
|
||
learn the spell in question.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Write}} {{Level=1}} {{Range=0}} {{Duration=6 Turns/Level}} {{Description=This spell allows an illusionist or magic-user to transpose a spell into his or her spellbook. The spell allows the inscription of new spells the wizard cannot currently cast due to level. The inscription process requires six turns per spell level. The caster must make an Intelligence Check (modifier applies) to inscribe the new spell. The check is adjusted by the difference between the caster's level and the level of the spell. A bonus of +2 is applied to the Intelligence Check if the spell is the same level as the caster, +1 if one level higher, and 0 if two levels higher. If the spell copied is three levels or greater than the wizard's current casting ability, a -1 penalty is applied. For each level beyond three, an additional penalty of -1 is applied. In many instances, spells may be learned automatically. However, a wizard can only attempt to learn a spell twice. If both checks fail, s/he cannot learn the spell in question.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox"
|
||
name="attr_illusionist_spell1_zggygs_phantasmal_mancatcher" style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Zggyg's Phantasmal Man-Catcher</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">15 Feet</span>
|
||
<span class="ds-prepred-spell-duration">4 Rounds/1 per Level</span>
|
||
<span class="ds-prepred-spell-description">Through this spell an illusionist conjures a spectral man-catcher
|
||
15 feet in length. The illusionist may use the phantasmal polearm to make an attack roll at +2. If the
|
||
medium-sized or smaller target is struck, the target is immobilized with arms pinned inside the man-
|
||
catcher, unable to act.<br><br>To maintain the phantasmal polearm, the illusionist must concentrate
|
||
exclusively for one round. Once maintained for one round, the caster may break concentration and perform
|
||
other tasks while the target remains immobilized for the duration of the spell.<br><br>Zggyg was an
|
||
arch-mage of great renown in the Northern Reaches. He inspired a generation of budding young wizards.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Zggyg's Phantasmal Man-Catcher}} {{Level=1}} {{Range=15 Feet}} {{Duration=4 Rounds/1 per Level}} {{Description=Through this spell an illusionist conjures a spectral man-catcher 15 feet in length. The illusionist may use the phantasmal polearm to make an attack roll at +2. If the medium-sized or smaller target is struck, the target is immobilized with arms pinned inside the man- catcher, unable to act.<br><br>To maintain the phantasmal polearm, the illusionist must concentrate exclusively for one round. Once maintained for one round, the caster may break concentration and perform other tasks while the target remains immobilized for the duration of the spell.<br><br>Zggyg was an arch-mage of great renown in the Northern Reaches. He inspired a generation of budding young wizards.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_illusionist_spell3_zurgosmels_heeded_echo"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Zurgosmel's Heeded Echo</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">60 Feet/10 per Level</span>
|
||
<span class="ds-prepred-spell-duration">2 Rounds/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell is a variation of Audible Glamer. Through this spell the
|
||
caster creates a false sound that monstrous humanoids will hear as a command issued from a warband leader,
|
||
tribal chieftain, warlord, king, etc. The caster can center the spell anywhere within range. The caster may
|
||
also fluctuate the sound to appear as approaching or receding. The spell affects four medium-sized monsters
|
||
plus one per level of the caster within the range of the spell. Monsters of four or more hit dice are
|
||
unaffected. Monsters of three hit dice or lower are allowed a saving throw (Spell at -2) to realize the
|
||
effect is false, but only if the orders issued make no logical sense in the context of the situation and
|
||
thus prompt an attempt to disbelieve.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{Spell Name=Zurgosmel's Heeded Echo}} {{Level=3}} {{Range=60 Feet/10 per Level}} {{Duration=2 Rounds/Level}} {{Description=This spell is a variation of Audible Glamer. Through this spell the caster creates a false sound that monstrous humanoids will hear as a command issued from a warband leader, tribal chieftain, warlord, king, etc. The caster can center the spell anywhere within range. The caster may also fluctuate the sound to appear as approaching or receding. The spell affects four medium-sized monsters plus one per level of the caster within the range of the spell. Monsters of four or more hit dice are unaffected. Monsters of three hit dice or lower are allowed a saving throw (Spell at -2) to realize the effect is false, but only if the orders issued make no logical sense in the context of the situation and thus prompt an attempt to disbelieve.}}"></button>
|
||
</div>
|
||
|
||
</div>
|
||
|
||
<input type="checkbox" name="attr_show_cleric_prepared_spells_control" class="ds-show-prepared-spells-control"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-cleric">
|
||
<div class="ds-prepared-spells-header">
|
||
<span class="ds-prepared-spells-name-header">Spell</span>
|
||
<span class="ds-prepared-spells-level-header">Lvl.</span>
|
||
<span class="ds-prepared-spells-range-header">Range</span>
|
||
<span class="ds-prepared-spells-duration-header">Duration</span>
|
||
<span class="ds-prepared-spells-description-header">Description</span>
|
||
</div>
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell3_animate_dead"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Animate Dead</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">60 Feet</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">This spell animates dead remains, like bones or corpses, into
|
||
either
|
||
skeletons or zombies. The constructs follow the caster’s commands. For example, the undead will follow,
|
||
attack, or guard an area from intruders (or any designated creature type). The constructs remain animated
|
||
until destroyed or until their necromantic enchantment is dismissed via Dispel Magic. The caster’s level
|
||
determines the total hit dice of the undead raised (Skeletons HD: 1 or Zombies HD: 2). A Level 6 Cleric,
|
||
for
|
||
example, can animate six skeletons or three zombies. Alternatively s/he could animate four skeletons and
|
||
one
|
||
zombie. The undead possess no intelligence, abilities, or memories from life. See the respective entries
|
||
for
|
||
skeletons and zombies in the monster section. Note that the dead are not easily roused and must be
|
||
commanded
|
||
to do so convincingly and authoritatively. If not, they will ignore the summons and the spell will fail
|
||
(subject to the discretion of the Maze Controller). A good-aligned cleric may incur disapproval from his
|
||
or
|
||
her deity by casting this spell.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Animate Dead}} {{Level=3}} {{Range=60 Feet}} {{Duration=Permanent}} {{Description=This spell animates dead remains, like bones or corpses, into either skeletons or zombies. The constructs follow the caster’s commands. For example, the undead will follow, attack, or guard an area from intruders (or any designated creature type). The constructs remain animated until destroyed or until their necromantic enchantment is dismissed via Dispel Magic. The caster’s level determines the total hit dice of the undead raised (Skeletons HD: 1 or Zombies HD: 2). A Level 6 Cleric, for example, can animate six skeletons or three zombies. Alternatively s/he could animate four skeletons and one zombie. The undead possess no intelligence, abilities, or memories from life. See the respective entries for skeletons and zombies in the monster section. Note that the dead are not easily roused and must be commanded to do so convincingly and authoritatively. If not, they will ignore the summons and the spell will fail (subject to the discretion of the Maze Controller). A good-aligned cleric may incur disapproval from his or her deity by casting this spell.}}"></button>
|
||
</div>
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell6_animate_object"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Animate Object</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">30 Feet</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell animates inanimate objects (within one square foot
|
||
per/level). Each object can then be commanded to attack a caster-designated target. The caster may only
|
||
animate objects of mundane material. A being’s carried or equipped objects cannot be animated. The Maze
|
||
Controller must exercise judgment with this spell in relation of the following parameters. The shape of an
|
||
animated object determines its movement ability. For example, a rope slithers, a chest shuffles, a chair
|
||
gallops, a vial rolls, etc. Movement ranges from slow (10ft/rd) to fast (60ft/rd). For example, a candelabra
|
||
might bend and drag itself 10 feet per round, whereas a chair might gallop at the fastest movement
|
||
rate.<br><br>
|
||
To
|
||
attack, objects use the caster’s Attack Bonus. The Maze Controller’s determines whether an object receives
|
||
one attack or one every two rounds. Both hit points and damage depend on the object size and shape, with
|
||
1d6
|
||
considered the baseline. Reasonable adjustments up or down are at the discretion of the Maze
|
||
Controller.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Animate Object}} {{Level=6}} {{Range=30 Feet}} {{Duration=1 Round/Level}} {{Description=This spell animates inanimate objects (within one square foot per/level). Each object can then be commanded to attack a caster-designated target. The caster may only animate objects of mundane material. A being’s carried or equipped objects cannot be animated. The Maze Controller must exercise judgment with this spell in relation of the following parameters. The shape of an animated object determines its movement ability. For example, a rope slithers, a chest shuffles, a chair gallops, a vial rolls, etc. Movement ranges from slow (10ft/rd) to fast (60ft/rd). For example, a candelabra might bend and drag itself 10 feet per round, whereas a chair might gallop at the fastest movement rate.<br><br>To attack, objects use the caster’s Attack Bonus. The Maze Controller’s determines whether an object receives one attack or one every two rounds. Both hit points and damage depend on the object size and shape, with 1d6 considered the baseline. Reasonable adjustments up or down are at the discretion of the Maze Controller.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell3_animate_statue"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Animate Statue</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">1 Inanimate Statue (Touch)</span>
|
||
<span class="ds-prepred-spell-duration">1d10 Rounds/+1 per Level</span>
|
||
<span class="ds-prepred-spell-description">Through this spell, a cleric or magic-user can animate a statue for
|
||
a
|
||
time period equal to 1d10 rounds plus one round per caster level. The statue will only respond to the verbal
|
||
commands of its creator.<br><br>The material of the statue determines the construct’s hit dice. The Maze
|
||
Controller
|
||
should use the Animated Statue entry (Crystal, Stone, and Iron) in the monster section as a guide.
|
||
<br><br>Note that if the caster dies while the statue is animated, the statue will go berserk and attack a
|
||
random
|
||
target.
|
||
</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Animate Statue}} {{Level=3}} {{Range=1 Inanimate Statue (Touch)}} {{Duration=1d10 Rounds/+1 per Level}} {{Description=Through this spell, a cleric or magic-user can animate a statue for a time period equal to 1d10 rounds plus one round per caster level. The statue will only respond to the verbal commands of its creator.<br><br>The material of the statue determines the construct’s hit dice. The Maze Controller should use the Animated Statue entry (Crystal, Stone, and Iron) in the monster section as a guide.<br><br>Note that if the caster dies while the statue is animated, the statue will go berserk and attack a random target.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell7_astral_spell"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Astral Spell</span>
|
||
<span class="ds-prepred-spell-level">7</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">This spell allows the caster to free his or her soul from its
|
||
corporeality and project astrally on another plane of existence. Five other willing souls may travel with
|
||
the
|
||
caster as long as all subjects are connected by hand. Companions must follow, and are dependent upon, the
|
||
caster while in astral form. If separated or slain, the caster’s companions will be stranded on the Astral
|
||
Plane.<br><br>The bodies of all astral travellers remain in suspended form on the Prime Material Plane. The
|
||
caster
|
||
(and companion travellers) can only take items that exist on the Astral Plane. The Astral Plane connects
|
||
to
|
||
other planes and the caster may also travel to these locations. The caster creates a new physical
|
||
manifestation on the desired plane.
|
||
<br><br>The caster anchors himself to his physical body on the Prime Material Plane through an enchanted
|
||
silver
|
||
cord. At any point, if the cord is severed, either on the Astral or the Material Plane, the caster dies.
|
||
The
|
||
silvery cord is attached invisibly to the caster for the duration of the spell. If the astral form’s
|
||
second
|
||
manifestation is killed, the cord pulls the caster’s soul back to his suspended body on the Material
|
||
Plane.
|
||
The actions of the projected caster only influence beings existent on the astral plane.
|
||
<br><br>Travel through the Astral Plane can continue indefinitely. PC bodies are unaffected by the passage
|
||
of
|
||
time
|
||
and do not require sustenance. The Astral Spell continues until ended by the caster.
|
||
</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Astral Spell}} {{Level=7}} {{Range=Touch}} {{Duration=See below}} {{Description=This spell allows the caster to free his or her soul from its corporeality and project astrally on another plane of existence. Five other willing souls may travel with the caster as long as all subjects are connected by hand. Companions must follow, and are dependent upon, the caster while in astral form. If separated or slain, the caster’s companions will be stranded on the Astral Plane.<br><br>The bodies of all astral travellers remain in suspended form on the Prime Material Plane. The caster (and companion travellers) can only take items that exist on the Astral Plane. The Astral Plane connects to other planes and the caster may also travel to these locations. The caster creates a new physical manifestation on the desired plane.<br><br>The caster anchors himself to his physical body on the Prime Material Plane through an enchanted silver cord. At any point, if the cord is severed, either on the Astral or the Material Plane, the caster dies. The silvery cord is attached invisibly to the caster for the duration of the spell. If the astral form’s second manifestation is killed, the cord pulls the caster’s soul back to his suspended body on the Material Plane. The actions of the projected caster only influence beings existent on the astral plane.<br><br>Travel through the Astral Plane can continue indefinitely. PC bodies are unaffected by the passage of time and do not require sustenance. The Astral Spell continues until ended by the caster.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell5_atonement"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Atonement</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">This spell absolves the recipient of involuntary evil or past
|
||
wrongdoing. In order to receive atonement, the subject must be remorseful and truly seek repentance for
|
||
his/her sins and transgressions. This spell can also reverse an alignment change due to magic. The holy rite
|
||
of atonement requires one turn to cast.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Atonement}} {{Level=5}} {{Range=Touch}} {{Duration=Permanent}} {{Description=This spell absolves the recipient of involuntary evil or past wrongdoing. In order to receive atonement, the subject must be remorseful and truly seek repentance for his/her sins and transgressions. This spell can also reverse an alignment change due to magic. The holy rite of atonement requires one turn to cast. }}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell2_augury"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Augury</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">N/A</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">Through prayer, Augury allows the caster to determine if an
|
||
impending
|
||
and immediate action will result in a positive or negative outcome. A cleric is 70% likely to receive a true
|
||
response plus 1% percent per caster level (the Maze Controller rolls the result). The Augury can predict
|
||
forward a maximum of three turns. Long-term consequences are impossible to determine through this
|
||
spell.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Augury}} {{Level=2}} {{Range=N/A}} {{Duration=See below}} {{Description=Through prayer, Augury allows the caster to determine if an impending and immediate action will result in a positive or negative outcome. A cleric is 70% likely to receive a true response plus 1% percent per caster level (the Maze Controller rolls the result). The Augury can predict forward a maximum of three turns. Long-term consequences are impossible to determine through this spell.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell6_blade_barrier"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Blade Barrier</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">30 Feet</span>
|
||
<span class="ds-prepred-spell-duration">3 Rounds/Level</span>
|
||
<span class="ds-prepred-spell-description">Through this spell a cleric summons a shimmering curtain of sharp,
|
||
whirling blades of force. All those that pass through the field take 8d8 damage. The caster designates the
|
||
spell’s exact area of effect (a 10 foot long wall plus 5 feet per two caster levels). The Blade Barrier is
|
||
immobile.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Blade Barrier}} {{Level=6}} {{Range=30 Feet}} {{Duration=3 Rounds/Level}} {{Description=Through this spell a cleric summons a shimmering curtain of sharp, whirling blades of force. All those that pass through the field take 8d8 damage. The caster designates the spell’s exact area of effect (a 10 foot long wall plus 5 feet per two caster levels). The Blade Barrier is immobile.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell1_bless"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Bless✦</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">10 Feet</span>
|
||
<span class="ds-prepred-spell-duration">6 Rounds</span>
|
||
<span class="ds-prepred-spell-description">Bless imbues the caster’s companions with courage within a 20x20
|
||
foot
|
||
area of effect. All comrades within the effect gain a +1 to attack, damage and morale.
|
||
spell, Blight , penalizes enemies –1 to morale, attack and damage rolls. A save versus Spell negates the
|
||
effect.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a Spell}} {{spell Name=Bless✦}} {{Level=1}} {{Range=10 Feet}} {{Duration=6 Rounds}} {{Description=Bless imbues the caster’s companions with courage within a 20x20 foot area of effect. All comrades within the effect gain a +1 to attack, damage and morale.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell1_blight"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Blight†</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">10 Feet</span>
|
||
<span class="ds-prepred-spell-duration">6 Rounds</span>
|
||
<span class="ds-prepred-spell-description">Penalizes enemies within a 20x20 foot area with -1 to morale,
|
||
attack,
|
||
and damage rolls. A save versus Spell negates the effect.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Blight†}} {{Level=1}} {{Range=10 Feet}} {{Duration=6 Rounds}} {{Description=Penalizes enemies within a 20x20 foot area with -1 to morale, attack, and damage rolls. A save versus Spell negates the effect.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell1_command"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Command</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">10 Feet</span>
|
||
<span class="ds-prepred-spell-duration">1 Round</span>
|
||
<span class="ds-prepred-spell-description">Through this prayer, a cleric proclaims a single word of
|
||
commandment,
|
||
which a single target must obey without question. The commandment could include: jump, drop, halt, sleep,
|
||
run,
|
||
fall, flee, surrender, etc. The caster can instruct the subject to “die” but this merely results in a
|
||
cataleptic state for one round. The caster must communicate in the target’s language. Any target with 5 or
|
||
more HD or Intelligence of 12+ is entitled to a save versus Spell to negate. Like all mind- influencing
|
||
spells, undead are immune to Command.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {Spell=Command} {Level=1} {{Range=10 Feet}} {{Duration=1 Round}} {{Description=Through this prayer, a cleric proclaims a single word of commandment, which a single target must obey without question. The commandment could include: jump, drop, halt, sleep, run, fall, flee, surrender, etc. The caster can instruct the subject to “die” but this merely results in a cataleptic state for one round. The caster must communicate in the target’s language. Any target with 5 or more HD or Intelligence of 12+ is entitled to a save versus Spell to negate. Like all mind- influencing spells, undead are immune to Command.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell5_commune"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Commune</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">3 Turns</span>
|
||
<span class="ds-prepred-spell-description">Through this spell, the caster may consult a divine power in order
|
||
to
|
||
gain knowledge. The spell cannot be cast more than once per week and the cleric only may ask three yes-or-no
|
||
questions. Deities and their divine emissaries do not look favorably on those who call on them for trifling
|
||
issues, or who disturb them regularly. The Maze Controller must adjudicate this spell for misuse. Once per
|
||
year, if the cleric has been particularly devout and true to the faith, s/he may ask seven questions.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Commune}} {{Level=5}} {{Range=0}} {{Duration=3 Turns}} {{Description=Through this spell, the caster may consult a divine power in order to gain knowledge. The spell cannot be cast more than once per week and the cleric only may ask three yes-or-no questions. Deities and their divine emissaries do not look favorably on those who call on them for trifling issues, or who disturb them regularly. The Maze Controller must adjudicate this spell for misuse. Once per year, if the cleric has been particularly devout and true to the faith, s/he may ask seven questions.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell6_conjure_animals"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Conjure Animals</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">30 Feet</span>
|
||
<span class="ds-prepred-spell-duration">2 Rounds/Level</span>
|
||
<span class="ds-prepred-spell-description">Through this spell the caster summons normal animals for combat or
|
||
other purposes. The caster’s level determines the number of animals summoned. For each caster experience
|
||
level, s/he may summon one hit die (note that each +1 on a hit die is calculated as 1/4 hit die). For
|
||
instance, a Level 8 Cleric may summon eight hit dice worth of animals (such as eight HD: 1 animals, or two
|
||
HD:
|
||
3 animals and one HD: 2, etc.). Summoned animals fight until slain or the spell duration ends. The Maze
|
||
Controller chooses the animals conjured.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Conjure Animals}} {{Level=6}} {{Range=30 Feet}} {{Duration=2 Rounds/Level}} {{Description=Through this spell the caster summons normal animals for combat or other purposes. The caster’s level determines the number of animals summoned. For each caster experience level, s/he may summon one hit die (note that each +1 on a hit die is calculated as 1/4 hit die). For instance, a Level 8 Cleric may summon eight hit dice worth of animals (such as eight HD: 1 animals, or two HD: 3 animals and one HD: 2, etc.). Summoned animals fight until slain or the spell duration ends. The Maze Controller chooses the animals conjured.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell2_continual_flame"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Continual Flame</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">A flame, equivalent in brightness to a torch (30 feet), springs
|
||
forth
|
||
from an inanimate object touched by the caster. The effect appears like a mundane flame, but generates no
|
||
heat
|
||
and does not use oxygen. A Continual Flame can be covered and hidden but not smothered or quenched. This
|
||
spell
|
||
can only be cast on inanimate objects. This spell may be cast on a being’s possessions, but the subject
|
||
receives a saving throw (Spell) to negate the effect.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Continual Flame}} {{Level=2}} {{Range=Touch}} {{Duration=Permanent}} {{Description=A flame, equivalent in brightness to a torch (30 feet), springs forth from an inanimate object touched by the caster. The effect appears like a mundane flame, but generates no heat and does not use oxygen. A Continual Flame can be covered and hidden but not smothered or quenched. This spell can only be cast on inanimate objects. This spell may be cast on a being’s possessions, but the subject receives a saving throw (Spell) to negate the effect.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell3_continual_light"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Continual Light✦</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">10 Feet</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">This spell creates light equivalent to sunlight in a 60 foot
|
||
radius,
|
||
and any creature that suffers a penalty in sunlight is affected. The caster may throw the spell on objects
|
||
or
|
||
a creature’s eyes, causing blindness (-4 to hit, saving throw versus Spell negates). Unless dispelled,
|
||
Continual Light is permanent. Continual Darkness produces darkness consistent with the above spell. It can
|
||
be
|
||
countered with Continual Light or Dispel Magic. Like Continual Light , the caster may target the eyes and
|
||
cause blindness (save applies). Normal eyesight, including darkvision, cannot penetrate Continual Darkness ,
|
||
nor can lanterns, torches, or Light.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Continual Light✦}} {{Level=3}} {{Range=10 Feet}} {{Duration=See below}} {{Description=This spell creates light equivalent to sunlight in a 60 foot radius, and any creature that suffers a penalty in sunlight is affected. The caster may throw the spell on objects or a creature’s eyes, causing blindness (-4 to hit, saving throw versus Spell negates). Unless dispelled, Continual Light is permanent. Continual Darkness produces darkness consistent with the above spell. It can be countered with Continual Light or Dispel Magic. Like Continual Light , the caster may target the eyes and cause blindness (save applies). Normal eyesight, including darkvision, cannot penetrate Continual Darkness , nor can lanterns, torches, or Light.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell3_continual_darkness"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Continual Darkness†</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">10 Feet</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">Creates magical darkness in a 60-foot radius that blocks all normal
|
||
and darkvision sight. Can blind a creature (save negates) if cast at the eyes. Only Continual Light or
|
||
Dispel
|
||
Magic counters it.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Continual Darkness†}} {{Level=3}} {{Range=10 Feet}} {{Duration=See below}} {{Description=Creates magical darkness in a 60-foot radius that blocks all normal and darkvision sight. Can blind a creature (save negates) if cast at the eyes. Only Continual Light or Dispel Magic counters it.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell7_control_weather"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Control Weather</span>
|
||
<span class="ds-prepred-spell-level">7</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">4d12 hours</span>
|
||
<span class="ds-prepred-spell-description">This spell changes weather in a fixed area. The spell requires one
|
||
turn to cast and 1d4 additional turns to manifest (3d4+4 square miles). The caster can only call forth
|
||
season
|
||
and climate-appropriate weather: Season Weather Type Spring Electrical Storm, Wind Storm, Tornado Summer
|
||
Rain
|
||
Storm, Hail Storm, or Heatwave Autumn Rain Storm, Hail Storm, or Hurricane Winter Snow Storm, Ice Storm,
|
||
Polar
|
||
Vortex Through this spell, caster may adjust weather tendencies only. This includes direction and intensity,
|
||
but not specific control. The caster, for example, cannot direct the path of a hurricane or ice storm. The
|
||
spell precludes conflicting weather patterns.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Control Weather}} {{Level=7}} {{Range=0}} {{Duration=4d12 hours}} {{Description=This spell changes weather in a fixed area. The spell requires one turn to cast and 1d4 additional turns to manifest (3d4+4 square miles). The caster can only call forth season and climate-appropriate weather: Season Weather Type Spring Electrical Storm, Wind Storm, Tornado Summer Rain Storm, Hail Storm, or Heatwave Autumn Rain Storm, Hail Storm, or Hurricane Winter Snow Storm, Ice Storm, Polar Vortex Through this spell, caster may adjust weather tendencies only. This includes direction and intensity, but not specific control. The caster, for example, cannot direct the path of a hurricane or ice storm. The spell precludes conflicting weather patterns.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell3_create_food_and_water"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Create Food and Water✦<span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">10 Feet</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">This spell allows a cleric, per experience level, to create
|
||
enough
|
||
food and water for 12 medium-sized humans.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Create Food and Water✦}} {{Level=3}} {{Range=10 Feet}} {{Duration=Permanent}} {{Description=This spell allows a cleric, per experience level, to create enough food and water for 12 medium-sized humans.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell1_create_water"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Create Water✦</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">10 Feet</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">This spell generates four gallons of drinking water per level of
|
||
the
|
||
caster. The caster can create water directly into vessels (like barrels), or in a space three foot cubed.
|
||
Destroy Water , reverse of the spell, completely evaporates water in a similar volume. This spell precludes
|
||
the creation of water within a living target.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Create Water✦}} {{Level=1}} {{Range=10 Feet}} {{Duration=Permanent}} {{Description=This spell generates four gallons of drinking water per level of the caster. The caster can create water directly into vessels (like barrels), or in a space three foot cubed. Destroy Water , reverse of the spell, completely evaporates water in a similar volume. This spell precludes the creation of water within a living target.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell3_destroy_food_and_water"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Destroy Food and Water†</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">10 Feet</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">This spell allows a cleric, per experience level, to spoil enough
|
||
food and water for 12 medium-sized humans.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Destroy Food and Water†}} {{Level=3}} {{Range=10 Feet}} {{Duration=Permanent}} {{Description=This spell allows a cleric, per experience level, to spoil enough food and water for 12 medium-sized humans.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell1_destroy_water"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Destroy Water†</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">10 Feet</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">Evaporates up to 4 gallons of water per caster level in a 3-foot
|
||
cube
|
||
or container. Cannot target water inside a living creature.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Destroy Water†}} {{Level=1}} {{Range=10 Feet}} {{Duration=Permanent}} {{Description=Evaporates up to 4 gallons of water per caster level in a 3-foot cube or container. Cannot target water inside a living creature.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell3_cure_blindness"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Cure Blindness✦</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">Through this spell a cleric may cure blindness (mundane or
|
||
magical).
|
||
The reverse, Cause Blindness , requires a successful touch attack. However, a save versus Spell negates the
|
||
effect. Blinded targets receive a -4 penalty to attack rolls.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Cure Blindness✦}} {{Level=3}} {{Range=Touch}} {{Duration=Permanent}} {{Description=Through this spell a cleric may cure blindness (mundane or magical). The reverse, Cause Blindness , requires a successful touch attack. However, a save versus Spell negates the effect. Blinded targets receive a -4 penalty to attack rolls.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell3_cause_blindness"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Cause Blindness†</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">On a successful touch attack, blinds the target. Save versus Spell
|
||
negates. Blinded targets suffer -4 to attack rolls.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Cause Blindness†}} {{Level=3}} {{Range=Touch}} {{Duration=Permanent}} {{Description=On a successful touch attack, blinds the target. Save versus Spell negates. Blinded targets suffer -4 to attack rolls.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell4_cure_critical_wounds"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Cure Critical Wounds✦</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">By touch, a cleric heals 4d8 hit points of damage +1 per level.
|
||
This
|
||
spell cannot grant hit points beyond the recipient’s maximum.<br><br>The reverse, Cause Critical Wounds ,
|
||
inflicts
|
||
4d8 hit points of damage +1 per level on a successful touch attack.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Cure Critical Wounds✦}} {{Level=4}} {{Range=Touch}} {{Duration=Permanent}} {{Description=By touch, a cleric heals 4d8 hit points of damage +1 per level. This spell cannot grant hit points beyond the recipient’s maximum.<br><br>The reverse, Cause Critical Wounds , inflicts 4d8 hit points of damage +1 per level on a successful touch attack.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell4_cause_critical_wounds"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Cause Critical Wounds†</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">Inflicts 4d8 +1 per caster level damage on a successful touch
|
||
attack.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Cause Critical Wounds†}} {{Level=4}} {{Range=Touch}} {{Duration=Permanent}} {{Description=Inflicts 4d8 +1 per caster level damage on a successful touch attack.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell3_cure_disease"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Cure Disease✦</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">Through touch, the spell cures all forms of disease, including
|
||
lycanthropy and mummy rot. The reverse, Cause Disease , inflicts a disease that poisons the blood, decreases
|
||
Constitution by four points, and all attack and damage rolls are at -1. The target falls into a comma in 2d6
|
||
days. A save versus Spell negates the effect. The disease caused by this spell cannot be cured (except by
|
||
Cure
|
||
Disease ) and the target requires twice normal healing time.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Cure Disease✦}} {{Level=3}} {{Range=Touch}} {{Duration=Permanent}} {{Description=Through touch, the spell cures all forms of disease, including lycanthropy and mummy rot. The reverse, Cause Disease , inflicts a disease that poisons the blood, decreases Constitution by four points, and all attack and damage rolls are at -1. The target falls into a comma in 2d6 days. A save versus Spell negates the effect. The disease caused by this spell cannot be cured (except by Cure Disease ) and the target requires twice normal healing time.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell3_cause_disease"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Cause Disease†</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">Inflicts a deadly blood disease reducing Constitution by 4, and -1
|
||
to
|
||
attack and damage. Victim falls into a coma in 2d6 days unless a save is made. Cannot be healed except by
|
||
Cure
|
||
Disease.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Cause Disease†}} {{Level=3}} {{Range=Touch}} {{Duration=Permanent}} {{Description=Inflicts a deadly blood disease reducing Constitution by 4, and -1 to attack and damage. Victim falls into a coma in 2d6 days unless a save is made. Cannot be healed except by Cure Disease.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell1_cure_light_wounds"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Cure Light Wounds✦</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">By touch, the cleric heals 1d8 hit points of damage +1 per level.
|
||
This spell cannot grant hit points beyond the recipient’s maximum.<br><br>Cause Light Wounds (the reverse)
|
||
causes
|
||
1d8 hit points of damage +1 per level on a successful touch attack.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Cure Light Wounds✦}} {{Level=1}} {{Range=Touch}} {{Duration=Permanent}} {{Description=By touch, the cleric heals 1d8 hit points of damage +1 per level. This spell cannot grant hit points beyond the recipient’s maximum.<br><br>Cause Light Wounds (the reverse) causes 1d8 hit points of damage +1 per level on a successful touch attack.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell1_cause_light_wounds"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Cause Light Wounds†</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">Inflicts 1d8 +1 per caster level damage on a successful touch
|
||
attack.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Cause Light Wounds†}} {{Level=1}} {{Range=Touch}} {{Duration=Permanent}} {{Description=Inflicts 1d8 +1 per caster level damage on a successful touch attack.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell2_cure_moderate_wounds"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Cure Moderate Wounds✦</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">Through touch, the cleric heals 2d8 hit points of damage +1 per
|
||
level. This spell cannot grant points beyond the recipient’s maximum.<br><br>Cause Moderate Wounds causes
|
||
2d8 hit
|
||
points of damage +1 per level on a successful touch attack.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Cure Moderate Wounds✦}} {{Level=2}} {{Range=Touch}} {{Duration=Permanent}} {{Description=Through touch, the cleric heals 2d8 hit points of damage +1 per level. This spell cannot grant points beyond the recipient’s maximum.<br><br>Cause Moderate Wounds causes 2d8 hit points of damage +1 per level on a successful touch attack.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell2_cause_moderate_wounds"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Cause Moderate Wounds†</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">Inflicts 2d8 +1 per caster level damage on a successful touch
|
||
attack.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Cause Moderate Wounds†}} {{Level=2}} {{Range=Touch}} {{Duration=Permanent}} {{Description=Inflicts 2d8 +1 per caster level damage on a successful touch attack.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell3_cure_serious_wounds"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Cure Serious Wounds✦</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">By touch, the cleric heals 3d8 hit points of damage +1 per level.
|
||
This spell cannot grant hit points beyond the recipient’s maximum. Cause Serious Wounds causes 3d8 hit
|
||
points
|
||
of damage +1 per level on a successful touch attack.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Cure Serious Wounds✦}} {{Level=3}} {{Range=Touch}} {{Duration=Permanent}} {{Description=By touch, the cleric heals 3d8 hit points of damage +1 per level. This spell cannot grant hit points beyond the recipient’s maximum. Cause Serious Wounds causes 3d8 hit points of damage +1 per level on a successful touch attack.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell3_cause_serious_wounds"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Cause Serious Wounds†</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">Inflicts 3d8 +1 per caster level damage on a successful touch
|
||
attack.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Cause Serious Wounds†}} {{Level=3}} {{Range=Touch}} {{Duration=Permanent}} {{Description=Inflicts 3d8 +1 per caster level damage on a successful touch attack.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell2_detect_charm"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Detect Charm</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">20 Feet</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">By means of this spell, a cleric can determine if one being in
|
||
range
|
||
(per round) is influenced by any Charm or Charm -like spell.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Detect Charm}} {{Level=2}} {{Range=20 Feet}} {{Duration=1 Round/Level}} {{Description=By means of this spell, a cleric can determine if one being in range (per round) is influenced by any Charm or Charm -like spell.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell1_detect_evil"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Detect Evil✦</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">10 Feet/10 Feet per Level</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn</span>
|
||
<span class="ds-prepred-spell-description">Through this spell, the caster can sense evil. The source could be
|
||
either a being or an evil object. Evil creatures or objects within 10 feet glow red to the caster. The spell
|
||
does not allow the caster to scry, but rather grants the perception of evil. The reverse of this spell,
|
||
Detect
|
||
Good, functions similarly but with a white outline.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Detect Evil✦}} {{Level=1}} {{Range=10 Feet/10 Feet per Level}} {{Duration=1 Turn}} {{Description=Through this spell, the caster can sense evil. The source could be either a being or an evil object. Evil creatures or objects within 10 feet glow red to the caster. The spell does not allow the caster to scry, but rather grants the perception of evil. The reverse of this spell, Detect Good, functions similarly but with a white outline.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell1_detect_good"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Detect Good†</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">10 Feet/10 Feet per Level</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn</span>
|
||
<span class="ds-prepred-spell-description">Reveals good-aligned creatures or objects within 10 feet, glowing
|
||
white to the caster.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Detect Good†}} {{Level=1}} {{Range=10 Feet/10 Feet per Level}} {{Duration=1 Turn}} {{Description=Reveals good-aligned creatures or objects within 10 feet, glowing white to the caster.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell4_detect_lie"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Detect Lie✦</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">20 Feet</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell allows the caster to discern whether words are true or
|
||
lies. Imperceptible Lie (reverse of Detect Lie ) can negate the effect of Detect Lie , or can be used to lie
|
||
convincingly.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Detect Lie✦}} {{Level=4}} {{Range=20 Feet}} {{Duration=1 Round/Level}} {{Description=This spell allows the caster to discern whether words are true or lies. Imperceptible Lie (reverse of Detect Lie ) can negate the effect of Detect Lie , or can be used to lie convincingly.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell4_imperceptible_lie"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Imperceptible Lie†</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">20 Feet</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">Negates Detect Lie or enables the caster to tell a lie that cannot
|
||
be
|
||
detected as false by magical means.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Imperceptible Lie†}} {{Level=4}} {{Range=20 Feet}} {{Duration=1 Round/Level}} {{Description=Negates Detect Lie or enables the caster to tell a lie that cannot be detected as false by magical means.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell1_detect_magic"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Detect Magic</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">10 Feet/10 Feet per Level</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn</span>
|
||
<span class="ds-prepred-spell-description">This spell allows the caster to identify a magical object or being
|
||
in
|
||
the area of effect for the duration of the spell. This includes objects or beings that are permanently or
|
||
temporarily under any form of enchantment.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Detect Magic}} {{Level=1}} {{Range=10 Feet/10 Feet per Level}} {{Duration=1 Turn}} {{Description=This spell allows the caster to identify a magical object or being in the area of effect for the duration of the spell. This includes objects or beings that are permanently or temporarily under any form of enchantment.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell5_dispel_evil"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Dispel Evil✦</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">When the caster invokes this spell, and with a successful touch
|
||
attack, summoned creatures of an evil nature or those summoned for evil intent (such as, but not limited to:
|
||
Efreeti, Elementals, Invisible Stalkers, Phantom Stalkers, Demons, or Devils, etc.) are banished back to
|
||
their
|
||
home plane of existence for the duration of the spell.<br><br>While the spell remains in effect,
|
||
aforementioned
|
||
monsters suffer a -7 penalty to attack the caster. The reverse of this spell, Dispel Good , functions in
|
||
the
|
||
same manner against summoned creatures of good intent or good alignment.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Dispel Evil✦}} {{Level=5}} {{Range=Touch}} {{Duration=1 Round/Level}} {{Description=When the caster invokes this spell, and with a successful touch attack, summoned creatures of an evil nature or those summoned for evil intent (such as, but not limited to: Efreeti, Elementals, Invisible Stalkers, Phantom Stalkers, Demons, or Devils, etc.) are banished back to their home plane of existence for the duration of the spell.<br><br>While the spell remains in effect, aforementioned monsters suffer a -7 penalty to attack the caster. The reverse of this spell, Dispel Good, functions in the same manner against summoned creatures of good intent or good alignment.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell5_dispel_good"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Dispel Good†</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">Functions like Dispel Evil but affects summoned creatures of good
|
||
alignment or good intent. Banishes them or weakens their attacks.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Dispel Good†}} {{Level=5}} {{Range=Touch}} {{Duration=1 Round/Level}} {{Description=Functions like Dispel Evil but affects summoned creatures of good alignment or good intent. Banishes them or weakens their attacks.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell3_dispel_magic"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Dispel Magic</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">5 Feet/5 Feet per Level</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">This spell negates magic effects. The caster instantly dismisses
|
||
all
|
||
spells and spell-effects, regardless of class, of the same level or lower.<br><br>A possibility of spell
|
||
failure
|
||
exists. For each level above the caster, a 7% chance exists (cumulatively) that Dispel Magic fails. For
|
||
example, if a Level 7 Magic-User attempts to dispel the effect of a Level 10 Magic-User, the failure rate
|
||
is
|
||
21%.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Dispel Magic}} {{Level=3}} {{Range=5 Feet/5 Feet per Level}} {{Duration=Permanent}} {{Description=This spell negates magic effects. The caster instantly dismisses all spells and spell-effects, regardless of class, of the same level or lower.<br><br>A possibility of spell failure exists. For each level above the caster, a 7% chance exists (cumulatively) that Dispel Magic fails. For example, if a Level 7 Magic-User attempts to dispel the effect of a Level 10 Magic-User, the failure rate is 21%.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell4_divination"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Divination</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">Like Augury , the spell Divination informs the caster about a given
|
||
location. The information gleaned could include the presence of treasure, occupants, defenses, or alignment
|
||
(lawful, chaotic, evil, or good, etc.). The spell provides a base 60% probability of success (+2% per level
|
||
of
|
||
the caster). The Maze Controller rolls the result secretly. Failure results in erroneous information.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Divination}} {{Level=4}} {{Range=0}} {{Duration=See below}} {{Description=Like Augury , the spell Divination informs the caster about a given location. The information gleaned could include the presence of treasure, occupants, defenses, or alignment (lawful, chaotic, evil, or good, etc.). The spell provides a base 60% probability of success (+2% per level of the caster). The Maze Controller rolls the result secretly. Failure results in erroneous information.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell7_earthquake"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Earthquake</span>
|
||
<span class="ds-prepred-spell-level">7</span>
|
||
<span class="ds-prepred-spell-range">120 Feet</span>
|
||
<span class="ds-prepred-spell-duration">1 Round</span>
|
||
<span class="ds-prepred-spell-description">This prayer calls forth a severe, but localized earthquake, with a
|
||
radius of five feet per caster level. The quake opens fissures in the ground, destroys buildings, etc. The
|
||
spell lasts for one round and those within the area cannot attack, move, or cast spells. The exact effect of
|
||
Earthquake is subject to terrain:<br><br>Cavern: The ceiling collapses for 7d6 points of damage to all those
|
||
below.
|
||
Additional effects are subject to the Maze Controller.
|
||
<br><br>Cliffs: A c liff cracks and crumbles resulting in a landslide. All those affected take 7d6 damage.
|
||
<br><br>Open Ground: Crevasses crack open the earth swallowing 1d8 to their death (Death save negates).
|
||
<br><br>Structure: All structures take 5d12 points of damage. The damage is sufficient to collapse wooden or
|
||
brick
|
||
buildings, but not necessarily stone structures like keeps or castles. All those inside take 6d6 points of
|
||
damage.
|
||
<br><br>Swamp, Lake, or River: In this terrain, the quake opens fissures below and drains away water leaving
|
||
thick,
|
||
muddy ground. The ground slows all movement by 3/ for 7 days. Creatures may get sucked down into the mud
|
||
to
|
||
their death (Death save negates).
|
||
</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Earthquake}} {{Level=7}} {{Range=120 Feet}} {{Duration=1 Round}} {{Description=This prayer calls forth a severe, but localized earthquake, with a radius of five feet per caster level. The quake opens fissures in the ground, destroys buildings, etc. The spell lasts for one round and those within the area cannot attack, move, or cast spells. The exact effect of Earthquake is subject to terrain:<br><br>Cavern: The ceiling collapses for 7d6 points of damage to all those below. Additional effects are subject to the Maze Controller.<br><br>Cliffs: A c liff cracks and crumbles resulting in a landslide. All those affected take 7d6 damage.<br><br>Open Ground: Crevasses crack open the earth swallowing 1d8 to their death (Death save negates).<br><br>Structure: All structures take 5d12 points of damage. The damage is sufficient to collapse wooden or brick buildings, but not necessarily stone structures like keeps or castles. All those inside take 6d6 points of damage.<br><br>Swamp, Lake, or River: In this terrain, the quake opens fissures below and drains away water leaving thick, muddy ground. The ground slows all movement by 3/ for 7 days. Creatures may get sucked down into the mud to their death (Death save negates).}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell4_exorcise"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Exorcise</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">1 Foot</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">This ritual removes a supernatural entity from the possession of a
|
||
being, creature, or object. Examples include, Magic Jar , Charm spells, similar magical and/ or spell
|
||
effects,
|
||
or possession by an abyssal or demonic presence such as a devil or demon. To determine the success of the
|
||
ritual, the Maze Controller rolls 1d00. This represents the probability the cleric is successful per turn of
|
||
the exorcism. For every level between the cleric and the hit dice of the entity, the chance of success
|
||
increases/decreases by 1%. During an exorcism, the presence of an old priest and a young priest raises the
|
||
chance of success by 10%. Maze Controllers should note that a supernatural entity will not leave easily,
|
||
must
|
||
be authoritatively commanded to depart, and may seek vengeance on the exorcist(s).</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Exorcise}} {{Level=4}} {{Range=1 Foot}} {{Duration=Permanent}} {{Description=This ritual removes a supernatural entity from the possession of a being, creature, or object. Examples include, Magic Jar , Charm spells, similar magical and/ or spell effects, or possession by an abyssal or demonic presence such as a devil or demon. To determine the success of the ritual, the Maze Controller rolls 1d00. This represents the probability the cleric is successful per turn of the exorcism. For every level between the cleric and the hit dice of the entity, the chance of success increases/decreases by 1%. During an exorcism, the presence of an old priest and a young priest raises the chance of success by 10%. Maze Controllers should note that a supernatural entity will not leave easily, must be authoritatively commanded to depart, and may seek vengeance on the exorcist(s).}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell3_feign_death"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Feign Death</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">6 Rounds/1 Round per Level</span>
|
||
<span class="ds-prepred-spell-description">This spell initiates a paralytic state in the caster or another
|
||
willing subject. This state imitates death to observers, even upon close examination. To Feign Death in an
|
||
unwilling target, the caster must make a touch attack/contact and the being must be equal, or have fewer,
|
||
hit
|
||
dice. The spell provides no saving throw.<br><br>Under the spell, the target remains fully conscious but
|
||
utterly
|
||
immobile. All paralysis, poison, or energy drain attacks directed at the catatonic subject fail. Although,
|
||
poison, with a longer duration than the spell, takes effect at the spell’s conclusion.
|
||
<br><br>At any time, the caster can dismiss the spell. The subject requires 1d3 rounds to emerge from the
|
||
magical
|
||
catatonic state.
|
||
</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Feign Death}} {{Level=3}} {{Range=Touch}} {{Duration=6 Rounds/1 Round per Level}} {{Description=This spell initiates a paralytic state in the caster or another willing subject. This state imitates death to observers, even upon close examination. To Feign Death in an unwilling target, the caster must make a touch attack/contact and the being must be equal, or have fewer, hit dice. The spell provides no saving throw.<br><br>Under the spell, the target remains fully conscious but utterly immobile. All paralysis, poison, or energy drain attacks directed at the catatonic subject fail. Although, poison, with a longer duration than the spell, takes effect at the spell’s conclusion.<br><br>At any time, the caster can dismiss the spell. The subject requires 1d3 rounds to emerge from the magical catatonic state.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell6_find_the_path"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Find the Path✦</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell allows the recipient to find the fastest route to a
|
||
specific destination. The destination can be inside, outside, below ground, or within a Maze spell. Find the
|
||
Path only functions relative to a specific location, and cannot find objects or creatures. The subject
|
||
senses
|
||
the appropriate path in order to arrive at the desired destination. The spell concludes upon arrival or when
|
||
the duration expires. Find the Path will resolve a Maze spell in one round. The opposite of the spell, Get
|
||
Lost, renders a touched target utterly unable to find its way.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Find the Path✦}} {{Level=6}} {{Range=Touch}} {{Duration=1 Turn/Level}} {{Description=This spell allows the recipient to find the fastest route to a specific destination. The destination can be inside, outside, below ground, or within a Maze spell. Find the Path only functions relative to a specific location, and cannot find objects or creatures. The subject senses the appropriate path in order to arrive at the desired destination. The spell concludes upon arrival or when the duration expires. Find the Path will resolve a Maze spell in one round. The opposite of the spell, Get Lost, renders a touched target utterly unable to find its way.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell6_get_lost"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Get Lost†</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn/Level</span>
|
||
<span class="ds-prepred-spell-description">Target touched becomes utterly unable to find their way to a
|
||
specific
|
||
destination. Lasts until dispelled or effect ends.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Get Lost†}} {{Level=6}} {{Range=Touch}} {{Duration=1 Turn/Level}} {{Description=Target touched becomes utterly unable to find their way to a specific destination. Lasts until dispelled or effect ends.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell2_find_traps"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Find Traps</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">30 Feet</span>
|
||
<span class="ds-prepred-spell-duration">2 Turns</span>
|
||
<span class="ds-prepred-spell-description">This spell allows a cleric to locate traps or trapped areas within
|
||
range. Trapped objects or areas glow with a pale red light. The spell detects mundane, mechanical, and
|
||
magical
|
||
traps. This spell only determines the existence of a trap, not the means of deactivation. The spell is
|
||
centered on, and moves with, the caster. Once detected, spell adds +10% to a thief’s Remove Traps
|
||
attempt.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Find Traps}} {{Level=2}} {{Range=30 Feet}} {{Duration=2 Turns}} {{Description=This spell allows a cleric to locate traps or trapped areas within range. Trapped objects or areas glow with a pale red light. The spell detects mundane, mechanical, and magical traps. This spell only determines the existence of a trap, not the means of deactivation. The spell is centered on, and moves with, the caster. Once detected, spell adds +10% to a thief’s Remove Traps attempt.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell5_flame_strike"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Flame Strike</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">60 Feet</span>
|
||
<span class="ds-prepred-spell-duration">Instantaneous</span>
|
||
<span class="ds-prepred-spell-description">Through this spell a cleric calls forth a column of righteous flame
|
||
(30 feet high and 10 feet wide) upon a target. Flame Strike burns for 6d8 points of damage. A successful
|
||
save
|
||
(Spell) halves the damage. If cast outside, the column of flame roars down from the sky.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Flame Strike}} {{Level=5}} {{Range=60 Feet}} {{Duration=Instantaneous}} {{Description=Through this spell a cleric calls forth a column of righteous flame (30 feet high and 10 feet wide) upon a target. Flame Strike burns for 6d8 points of damage. A successful save (Spell) halves the damage. If cast outside, the column of flame roars down from the sky.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell4_flesh_of_fire"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Flesh of Fire</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">Self</span>
|
||
<span class="ds-prepred-spell-duration">3 Rounds/1 Round per Level</span>
|
||
<span class="ds-prepred-spell-description">This spell is a lesser variant of the magic-user spell Fire Shield.
|
||
By means of this spell the caster wreathes him or herself in flames.<br><br>The flames provide light to 15
|
||
feet
|
||
and
|
||
any creature that touches, or attacks the caster in melee, takes 1d4 points of damage. Ranged attacks are
|
||
unaffected. In addition, the spell provides a +2 on saving throws versus fire-based attacks, +1 on saving
|
||
throws against cold-based attacks, and -4 saves versus water-based attacks. The caster’s personal items
|
||
are
|
||
not subject to fire damage.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Flesh of Fire}} {{Level=4}} {{Range=Self}} {{Duration=3 Rounds/1 Round per Level}} {{Description=This spell is a lesser variant of the magic-user spell Fire Shield. By means of this spell the caster wreathes him or herself in flames.<br><br>The flames provide light to 15 feet and any creature that touches, or attacks the caster in melee, takes 1d4 points of damage. Ranged attacks are unaffected. In addition, the spell provides a +2 on saving throws versus fire-based attacks, +1 on saving throws against cold-based attacks, and -4 saves versus water-based attacks. The caster’s personal items are not subject to fire damage.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell7_gate"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Gate</span>
|
||
<span class="ds-prepred-spell-level">7</span>
|
||
<span class="ds-prepred-spell-range">30 Feet</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">A Gate creates an inter-dimensional portal between the wizard’s
|
||
plane
|
||
and another designated plane of existence. The Gate allows bilateral movement between the two planes. Once
|
||
the
|
||
portal is established, the caster can beckon a specific entity or being through the gate. The cleric or
|
||
magic-user must know the exact name of the entity summoned and authoritatively demand its presence. The
|
||
being
|
||
can be any fiendish, demonic, or otherworldly entity, or even a minor deity (or its representative). The
|
||
Maze
|
||
Controller determines if the entity is curious, angry, bored, or indifferent, subject to the situation (and
|
||
the result of the spell must be judiciously considered). Lawful evil or chaotic evil beings (if held in
|
||
servitude on their home plane) relish the freedom of the Prime Material Plane and will seek to break free of
|
||
the summoner. Entities are summoned into a constraining magical circle until information is exchanged or a
|
||
bargain struck for servitude (666 days).</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Gate}} {{Level=7}} {{Range=30 Feet}} {{Duration=See below}} {{Description=A Gate creates an inter-dimensional portal between the wizard’s plane and another designated plane of existence. The Gate allows bilateral movement between the two planes. Once the portal is established, the caster can beckon a specific entity or being through the gate. The cleric or magic-user must know the exact name of the entity summoned and authoritatively demand its presence. The being can be any fiendish, demonic, or otherworldly entity, or even a minor deity (or its representative). The Maze Controller determines if the entity is curious, angry, bored, or indifferent, subject to the situation (and the result of the spell must be judiciously considered). Lawful evil or chaotic evil beings (if held in servitude on their home plane) relish the freedom of the Prime Material Plane and will seek to break free of the summoner. Entities are summoned into a constraining magical circle until information is exchanged or a bargain struck for servitude (666 days).}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell3_glyph_of_warding"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Glyph of Warding</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">20 Feet</span>
|
||
<span class="ds-prepred-spell-duration">Permanent until Triggered</span>
|
||
<span class="ds-prepred-spell-description">A Glyph of Warding is a powerful magical rune that wards an item or
|
||
location from trespassers. When casting this spell, the cleric inscribes faintly glowing runes in a circle.
|
||
The Glyph is placed in the center. The circle can be expanded or contracted as required to inscribe a small
|
||
object or a 10x10 foot space (maximum). Upon completion, a Glyph of Warding is almost invisible (active 1-2
|
||
on
|
||
d6 to detect). At the close of the ritual spell, the caster sets a command word. All those who attempt to
|
||
touch the warded object or enter the protected area, and fail to speak the command word, activate the spell.
|
||
The spell has two iterations: a Blast Glyph or Spell Glyph. Blast Glyph : A Blast Glyph detonates for two
|
||
points of damage per level of the caster. The blast damage can be either fire or electrical, subject to the
|
||
cleric at the time of casting. Each affected target receives a save (Spell) to half the damage. Spell Glyph
|
||
:
|
||
A Spell Glyph imbues a glyph with a spell effect released on activation. Harmful effects include, but are
|
||
not
|
||
limited to Cause Light Wounds, Darkness, Hold Person, Blindness, Disease, or Curse. The cleric must be of
|
||
sufficient level to cast the spell. A saving throw (Spell) is allowed to negate the effect.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Glyph of Warding}} {{Level=3}} {{Range=20 Feet}} {{Duration=Permanent until Triggered}} {{Description=A Glyph of Warding is a powerful magical rune that wards an item or location from trespassers. When casting this spell, the cleric inscribes faintly glowing runes in a circle. The Glyph is placed in the center. The circle can be expanded or contracted as required to inscribe a small object or a 10x10 foot space (maximum). Upon completion, a Glyph of Warding is almost invisible (active 1-2 on d6 to detect). At the close of the ritual spell, the caster sets a command word. All those who attempt to touch the warded object or enter the protected area, and fail to speak the command word, activate the spell. The spell has two iterations: a Blast Glyph or Spell Glyph. Blast Glyph : A Blast Glyph detonates for two points of damage per level of the caster. The blast damage can be either fire or electrical, subject to the cleric at the time of casting. Each affected target receives a save (Spell) to half the damage. Spell Glyph : A Spell Glyph imbues a glyph with a spell effect released on activation. Harmful effects include, but are not limited to Cause Light Wounds, Darkness, Hold Person, Blindness, Disease, or Curse. The cleric must be of sufficient level to cast the spell. A saving throw (Spell) is allowed to negate the effect.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell6_heal"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Heal✦</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">Through the spell Heal , the caster cures all forms of blindness,
|
||
disease, exhaustion, feeblemindedness, and poison. The spell heals all damage except 1d4 hit points. The
|
||
reverse of the spell, Harm , reduces the target’s hit points to just 1d4 and inflicts disease as per the
|
||
spell
|
||
Cause Disease.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Heal✦}} {{Level=6}} {{Range=Touch}} {{Duration=Permanent}} {{Description=Through the spell Heal , the caster cures all forms of blindness, disease, exhaustion, feeblemindedness, and poison. The spell heals all damage except 1d4 hit points. The reverse of the spell, Harm , reduces the target’s hit points to just 1d4 and inflicts disease as per the spell Cause Disease.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell6_harm"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Harm†</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">Reduces target’s hit points to 1d4 and inflicts disease as per
|
||
Cause
|
||
Disease.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Harm†}} {{Level=6}} {{Range=Touch}} {{Duration=Permanent}} {{Description=Reduces target’s hit points to 1d4 and inflicts disease as per Cause Disease.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell2_hold_person"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Hold Person</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">20 Feet</span>
|
||
<span class="ds-prepred-spell-duration">4 Rounds/1 Round per Level</span>
|
||
<span class="ds-prepred-spell-description">By means of this spell the caster immobilizes one to three humanoid
|
||
targets. A saving throw modifier (Spell) is applied subject to the number of targets: 3 (no modifier), 2
|
||
(-1),
|
||
and 1 (-2). Undead are unaffected by the spell as well as those with immunity to mind- influencing
|
||
spells.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Hold Person}} {{Level=2}} {{Range=20 Feet}} {{Duration=4 Rounds/1 Round per Level}} {{Description=By means of this spell the caster immobilizes one to three humanoid targets. A saving throw modifier (Spell) is applied subject to the number of targets: 3 (no modifier), 2 (-1), and 1 (-2). Undead are unaffected by the spell as well as those with immunity to mind- influencing spells.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell3_holy_strike"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Holy Strike</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">3 Rounds/Level</span>
|
||
<span class="ds-prepred-spell-description">Through this spell the cleric enchants a blunt weapon to score an
|
||
additional 1d6 hit points of damage. In addition, the spell designates the weapon as magical for the purpose
|
||
of striking those only hit by magic weapons.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Holy Strike}} {{Level=3}} {{Range=Touch}} {{Duration=3 Rounds/Level}} {{Description=Through this spell the cleric enchants a blunt weapon to score an additional 1d6 hit points of damage. In addition, the spell designates the weapon as magical for the purpose of striking those only hit by magic weapons.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell7_holy_word"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Holy Word✦</span>
|
||
<span class="ds-prepred-spell-level">7</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">Upon speaking the Holy or Unholy Word , any good (or evil) entities
|
||
from other planes of existence (within 10 feet of the caster) suffer the following harmful
|
||
effects:<br><br>HD
|
||
Holy
|
||
Word Effects <4 Slain 4-7 Paralyzed for 1d4 turns 8-11 Stunned 2d4 rounds, -4 to hit, Move: –50% 12+
|
||
Deafened 1d4 rounds, -2 to hit, Move: –25%</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Holy Word✦}} {{Level=7}} {{Range=0}} {{Duration=See below}} {{Description=Upon speaking the Holy or Unholy Word , any good (or evil) entities from other planes of existence (within 10 feet of the caster) suffer the following harmful effects:<br><br>HD Holy Word Effects <4 Slain 4-7 Paralyzed for 1d4 turns 8-11 Stunned 2d4 rounds, -4 to hit, Move: –50% 12+ Deafened 1d4 rounds, -2 to hit, Move: –25%}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell7_unholy_word"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Unholy Word†</span>
|
||
<span class="ds-prepred-spell-level">7</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">Functions as Holy Word but affects good-aligned or good plane
|
||
creatures. Applies effects based on HD.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Unholy Word†}} {{Level=7}} {{Range=0}} {{Duration=See below}} {{Description=Functions as Holy Word but affects good-aligned or good plane creatures. Applies effects based on HD.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell5_insect_plague"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Insect Plague (Greater)</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">30 Feet</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell calls forth a plague of locusts (40x40x10 foot radius).
|
||
The swarm obscures vision and inflicts targets one hit point of damage per round. All those of two or fewer
|
||
hit dice automatically flee the swarm. All those<br><br>of three to five hit dice check morale or flee.
|
||
Fleeing
|
||
targets move at their fastest movement rate until they are 50 feet from the Insect Plague. The swarm may
|
||
be
|
||
neutralized by heavy smoke or fire. At the time of casting, the cleric or druid must designate the center
|
||
of
|
||
the stationary plague. Once the spell expires, the insects disperse. Although less effective, the spell
|
||
may
|
||
be cast underground (those of two or fewer hit dice are allowed a morale check).</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Insect Plague (Greater)}} {{Level=5}} {{Range=30 Feet}} {{Duration=1 Turn/Level}} {{Description=This spell calls forth a plague of locusts (40x40x10 foot radius). The swarm obscures vision and inflicts targets one hit point of damage per round. All those of two or fewer hit dice automatically flee the swarm. All those<br><br>of three to five hit dice check morale or flee. Fleeing targets move at their fastest movement rate until they are 50 feet from the Insect Plague. The swarm may be neutralized by heavy smoke or fire. At the time of casting, the cleric or druid must designate the center of the stationary plague. Once the spell expires, the insects disperse. Although less effective, the spell may be cast underground (those of two or fewer hit dice are allowed a morale check).}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell2_know_alignment"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Know Alignment</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">10 Feet</span>
|
||
<span class="ds-prepred-spell-duration">1 Round</span>
|
||
<span class="ds-prepred-spell-description">Through this spell the caster instantly discerns the alignment of a
|
||
being, monster, or creature, within the spell’s range. The spell also reveals the alignment of magic items
|
||
(if
|
||
applicable).</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Know Alignment}} {{Level=2}} {{Range=10 Feet}} {{Duration=1 Round}} {{Description=Through this spell the caster instantly discerns the alignment of a being, monster, or creature, within the spell’s range. The spell also reveals the alignment of magic items (if applicable).}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell1_light"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Light✦</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">12 Feet</span>
|
||
<span class="ds-prepred-spell-duration">6 Turns/1 per Level</span>
|
||
<span class="ds-prepred-spell-description">This spell imbues an object with the brightness of a torch and
|
||
sheds
|
||
light in a 20 foot radius. The spell is normally cast on a movable object (functions as a light source
|
||
impervious to drafts and gusts of wind). This spell may be cast on a being’s eyes. In this case the target
|
||
is
|
||
allowed a save (Spell) to negate. The target is blinded for the spell’s duration if a save is failed. The
|
||
reverse of the spell, Darkness , provides the opposite effect. The caster can also use Darkness to target
|
||
the
|
||
eyes (save applies).The two spells counter each other to return to normal lighting conditions.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Light✦}} {{Level=1}} {{Range=12 Feet}} {{Duration=6 Turns/1 per Level}} {{Description=This spell imbues an object with the brightness of a torch and sheds light in a 20 foot radius. The spell is normally cast on a movable object (functions as a light source impervious to drafts and gusts of wind). This spell may be cast on a being’s eyes. In this case the target is allowed a save (Spell) to negate. The target is blinded for the spell’s duration if a save is failed. The reverse of the spell, Darkness , provides the opposite effect. The caster can also use Darkness to target the eyes (save applies).The two spells counter each other to return to normal lighting conditions.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell1_darkness"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Darkness†</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">12 Feet</span>
|
||
<span class="ds-prepred-spell-duration">6 Turns/1 per Level</span>
|
||
<span class="ds-prepred-spell-description">Creates magical darkness in a 20-foot radius. Can blind a creature
|
||
if
|
||
cast at their eyes. Cancels Light.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Darkness†}} {{Level=1}} {{Range=12 Feet}} {{Duration=6 Turns/1 per Level}} {{Description=Creates magical darkness in a 20-foot radius. Can blind a creature if cast at their eyes. Cancels Light.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell3_locate_object"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Locate Object✦</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">5 Feet/5 Feet per Level</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">Through this spell, the caster senses the location of a familiar or
|
||
known object. A general search will result in finding the closest object of that type. A search for a
|
||
specific
|
||
item requires accurate firsthand knowledge. The reverse, Obscure Object , allows the caster to hide an item
|
||
from location by spell or similar magical scrying device (i.e., Crystal Ball ).</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Locate Object✦}} {{Level=3}} {{Range=5 Feet/5 Feet per Level}} {{Duration=1 Round/Level}} {{Description=Through this spell, the caster senses the location of a familiar or known object. A general search will result in finding the closest object of that type. A search for a specific item requires accurate firsthand knowledge. The reverse, Obscure Object , allows the caster to hide an item from location by spell or similar magical scrying device (i.e., Crystal Ball ).}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell3_obscure_object"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Obscure Object†</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">5 Feet/5 Feet per Level</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">Hides an object from magical detection or location spells like
|
||
Locate
|
||
Object or Crystal Ball.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Obscure Object†}} {{Level=3}} {{Range=5 Feet/5 Feet per Level}} {{Duration=1 Round/Level}} {{Description=Hides an object from magical detection or location spells like Locate Object or Crystal Ball.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell4_lower_water"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Lower Water</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">10 Feet/10 Feet per Level</span>
|
||
<span class="ds-prepred-spell-duration">5 Rounds/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell allows the caster to lower 11,000 square feet of water
|
||
per
|
||
level for the spell’s duration.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Lower Water}} {{Level=4}} {{Range=10 Feet/10 Feet per Level}} {{Duration=5 Rounds/Level}} {{Description=This spell allows the caster to lower 11,000 square feet of water per level for the spell’s duration.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell4_neutralize_poison"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Neutralize Poison✦</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">This spell neutralizes poison in a living being or poison placed on
|
||
an object. Neutralize Poison does not reverse the effects of poison (such as damage to hit points). The
|
||
caster
|
||
may also neutralize a poisonous creature (such as a snake) with a successful touch attack.<br><br>The
|
||
opposite of
|
||
the spell, Poison (useable by clerics, druids, and monks), requires a successful touch attack. If the
|
||
target
|
||
fails a save versus Death, it dies.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Neutralize Poison✦}} {{Level=4}} {{Range=Touch}} {{Duration=Permanent}} {{Description=This spell neutralizes poison in a living being or poison placed on an object. Neutralize Poison does not reverse the effects of poison (such as damage to hit points). The caster may also neutralize a poisonous creature (such as a snake) with a successful touch attack.<br><br>The opposite of the spell, Poison (useable by clerics, druids, and monks), requires a successful touch attack. If the target fails a save versus Death, it dies.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell4_poison"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Poison†</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">On a successful touch attack, kills the target unless they save
|
||
versus Death. Can also poison a creature or object.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Poison†}} {{Level=4}} {{Range=Touch}} {{Duration=Permanent}} {{Description=On a successful touch attack, kills the target unless they save versus Death. Can also poison a creature or object.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell6_part_water"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Part Water</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">20 Feet/Level</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell parts a body of water (river, lake, etc.) ten feet wide
|
||
to
|
||
a maximum length of 300 feet. The caster can end the spell at anytime prior to its full duration and destroy
|
||
pursuers following the spell’s path.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Part Water}} {{Level=6}} {{Range=20 Feet/Level}} {{Duration=1 Turn/Level}} {{Description=This spell parts a body of water (river, lake, etc.) ten feet wide to a maximum length of 300 feet. The caster can end the spell at anytime prior to its full duration and destroy pursuers following the spell’s path.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell5_plane_shift"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Plane Shift</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">Through this spell the caster can transport him/herself, or another
|
||
being, to an alternate plane of existence or dimension. The caster can transport up to eight beings if
|
||
gathered in a circle at the time of casting. Plane Shift instantly transports all beings but provides no
|
||
means
|
||
of return. An unwilling target receives a saving throw (Spell) to negate.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Plane Shift}} {{Level=5}} {{Range=Touch}} {{Duration=Permanent}} {{Description=Through this spell the caster can transport him/herself, or another being, to an alternate plane of existence or dimension. The caster can transport up to eight beings if gathered in a circle at the time of casting. Plane Shift instantly transports all beings but provides no means of return. An unwilling target receives a saving throw (Spell) to negate.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell3_prayer"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Prayer</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">10 Foot Radius</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">Prayer is a stronger version of the spell Sacred Chant. The spell
|
||
function is the same (+1 to allied attacks and saving throws and a -1 on opponent dice), except the cleric
|
||
need not concentrate to maintain the spell.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Prayer}} {{Level=3}} {{Range=10 Foot Radius}} {{Duration=1 Round/Level}} {{Description=Prayer is a stronger version of the spell Sacred Chant. The spell function is the same (+1 to allied attacks and saving throws and a -1 on opponent dice), except the cleric need not concentrate to maintain the spell.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell1_protection_from_evil"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Protection from Evil</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">3 Rounds/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell protects the caster from attacks by evil beings and
|
||
monsters. Specifically, the spell calls forth a magical barrier that wards against forms of mental control
|
||
as
|
||
well as contact with summoned creatures. The protection moves with the recipient.<br><br>The spell provides
|
||
two
|
||
protective bonuses: the recipient receives a +1 to saving throws and armor class. Next, the spell prevents
|
||
evil beings and summoned creatures from touching the recipient and causes them to recoil in fear.
|
||
<br><br>The spell does not preclude missile attacks. The protection from contact by summoned beings
|
||
terminates if
|
||
the subject of the spell makes a physical attack.
|
||
</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Protection from Evil}} {{Level=1}} {{Range=Touch}} {{Duration=3 Rounds/Level}} {{Description=This spell protects the caster from attacks by evil beings and monsters. Specifically, the spell calls forth a magical barrier that wards against forms of mental control as well as contact with summoned creatures. The protection moves with the recipient.<br><br>The spell provides two protective bonuses: the recipient receives a +1 to saving throws and armor class. Next, the spell prevents evil beings and summoned creatures from touching the recipient and causes them to recoil in fear.<br><br>The spell does not preclude missile attacks. The protection from contact by summoned beings terminates if the subject of the spell makes a physical attack.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell4_protection_from_evil_10ft"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Protection from Evil (10 Feet)</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">N/A</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell is identical to Protection from Evil , except that the
|
||
protection extends 10x10 feet around the caster and wards all those within the area of effect.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Protection from Evil (10 Feet)}} {{Level=4}} {{Range=N/A}} {{Duration=1 Turn/Level}} {{Description=This spell is identical to Protection from Evil , except that the protection extends 10x10 feet around the caster and wards all those within the area of effect.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell1_purify_food_drink"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Purify Food and Drink✦</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">10 Feet</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">Through this spell, a cleric decontaminates rotten, spoiled, or
|
||
poisonous food and water. The spell affects enough food and water for twelve medium-sized beings. This spell
|
||
does not preserve against natural decay. The reverse of this spell, Putrefy Food and Water , spoils a
|
||
similar
|
||
amount of food and water.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Purify Food and Drink✦}} {{Level=1}} {{Range=10 Feet}} {{Duration=Permanent}} {{Description=Through this spell, a cleric decontaminates rotten, spoiled, or poisonous food and water. The spell affects enough food and water for twelve medium-sized beings. This spell does not preserve against natural decay. The reverse of this spell, Putrefy Food and Water , spoils a similar amount of food and water.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell1_putrefy_food_water"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Putrefy Food and Water†</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">10 Feet</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">Renders enough food and water for 12 medium creatures rotten and
|
||
poisonous.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Putrefy Food and Water†}} {{Level=1}} {{Range=10 Feet}} {{Duration=Permanent}} {{Description=Renders enough food and water for 12 medium creatures rotten and poisonous.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell5_quest"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Quest✦</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">20 Feet</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">Through this spell a priest can compel a player character to
|
||
undertake a quest. The PC is allowed a saving throw (Spell) to negate. This quest may involve danger but the
|
||
priest cannot instruct the PC to harm him/herself. If the target of the spell resists the Quest, s/he will
|
||
be
|
||
affected by a curse, chosen by the Maze Controller. The PC must complete the quest to terminate the spell.
|
||
Alternatively, a priest may cast the spell in reverse, Remove Quest , to dispel an active Quest. Similar to
|
||
Dispel Magic , the cleric’s ability to Remove Quest is tied to the original caster’s level. For each level
|
||
below the original caster there is a cumulative 5% chance of failure.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Quest✦}} {{Level=5}} {{Range=20 Feet}} {{Duration=See below}} {{Description=Through this spell a priest can compel a player character to undertake a quest. The PC is allowed a saving throw (Spell) to negate. This quest may involve danger but the priest cannot instruct the PC to harm him/herself. If the target of the spell resists the Quest, s/he will be affected by a curse, chosen by the Maze Controller. The PC must complete the quest to terminate the spell. Alternatively, a priest may cast the spell in reverse, Remove Quest , to dispel an active Quest. Similar to Dispel Magic , the cleric’s ability to Remove Quest is tied to the original caster’s level. For each level below the original caster there is a cumulative 5% chance of failure.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell5_remove_quest"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Remove Quest†</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">20 Feet</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">Negates an ongoing Quest spell. May fail if caster’s level is
|
||
significantly lower than the original priest.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Remove Quest†}} {{Level=5}} {{Range=20 Feet}} {{Duration=See below}} {{Description=Negates an ongoing Quest spell. May fail if caster’s level is significantly lower than the original priest.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell5_raise_dead"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Raise Dead✦</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">This spell imbues life into the deceased body of a human or
|
||
demi-human. The caster can raise a deceased being only as many days as the cleric’s experience level plus
|
||
his/her Wisdom Modifier. The body of the deceased must be intact.<br><br>Returning from the dead is an
|
||
extraordinary trial of suffering. The recipient of the spell is raised with one hit point, and for three
|
||
weeks the player character’s movement is halved and s/he suffers from debilitating weakness. In addition,
|
||
the character cannot engage in combat, physical activity, or spell-casting. The three week period cannot
|
||
be
|
||
shortened. If the spell is cast on an undead creature, it must save (Spell) or die instantly.
|
||
<br><br>The reverse of the spell, Eternal Demise , prevents a deceased humanoid from being raised, short of
|
||
a
|
||
Wish.
|
||
</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Raise Dead✦}} {{Level=5}} {{Range=Touch}} {{Duration=Permanent}} {{Description=This spell imbues life into the deceased body of a human or demi-human. The caster can raise a deceased being only as many days as the cleric’s experience level plus his/her Wisdom Modifier. The body of the deceased must be intact.<br><br>Returning from the dead is an extraordinary trial of suffering. The recipient of the spell is raised with one hit point, and for three weeks the player character’s movement is halved and s/he suffers from debilitating weakness. In addition, the character cannot engage in combat, physical activity, or spell-casting. The three week period cannot be shortened. If the spell is cast on an undead creature, it must save (Spell) or die instantly.<br><br>The reverse of the spell, Eternal Demise , prevents a deceased humanoid from being raised, short of a Wish.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell5_eternal_demise"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Eternal Demise†</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">Prevents a humanoid corpse from being raised by anything short of a
|
||
Wish.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Eternal Demise†}} {{Level=5}} {{Range=Touch}} {{Duration=Permanent}} {{Description=Prevents a humanoid corpse from being raised by anything short of a Wish.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell1_read_magic"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Read Magic (Divine)</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">N/A</span>
|
||
<span class="ds-prepred-spell-duration">2 Rounds/Level</span>
|
||
<span class="ds-prepred-spell-description">By means of Read Magic (Divine) , a cleric, druid, or monk can
|
||
decipher unintelligible divine magical writing (on scrolls, books, weapons, etc.). The spell does not
|
||
activate
|
||
magic on an item, but it can if cursed. Once cast, the priest can read that specific item at-will without
|
||
further need for Read Magic (Divine).</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Read Magic (Divine)}} {{Level=1}} {{Range=N/A}} {{Duration=2 Rounds/Level}} {{Description=By means of Read Magic (Divine) , a cleric, druid, or monk can decipher unintelligible divine magical writing (on scrolls, books, weapons, etc.). The spell does not activate magic on an item, but it can if cursed. Once cast, the priest can read that specific item at-will without further need for Read Magic (Divine).}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell7_regenerate"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Regenerate✦</span>
|
||
<span class="ds-prepred-spell-level">7</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">This divine ritual regenerates a subject’s severed appendage (such
|
||
as
|
||
an arm, hand, tail, finger, leg, foot, or head, etc.).<br><br>The process of regeneration takes one round if
|
||
the
|
||
severed part is touching at the point of dismemberment. Otherwise, the incantation requires 2d4 turns.
|
||
<br><br>Necrosis (reverse of the spell) causes a body part to wither, turn black, and fall off in one round
|
||
(and
|
||
turn to dust in 2d4 rounds). The cleric must make a successful touch attack against the target. The Maze
|
||
Controller randomly determines the body part affected.
|
||
</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Regenerate✦}} {{Level=7}} {{Range=Touch}} {{Duration=Permanent}} {{Description=This divine ritual regenerates a subject’s severed appendage (such as an arm, hand, tail, finger, leg, foot, or head, etc.).<br><br>The process of regeneration takes one round if the severed part is touching at the point of dismemberment. Otherwise, the incantation requires 2d4 turns.<br><br>Necrosis (reverse of the spell) causes a body part to wither, turn black, and fall off in one round (and turn to dust in 2d4 rounds). The cleric must make a successful touch attack against the target. The Maze Controller randomly determines the body part affected.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell7_necrosis"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Necrosis†</span>
|
||
<span class="ds-prepred-spell-level">7</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">Withers a body part, causing it to fall off in one round and
|
||
disintegrate. Touch attack required.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Necrosis†}} {{Level=7}} {{Range=Touch}} {{Duration=Permanent}} {{Description=Withers a body part, causing it to fall off in one round and disintegrate. Touch attack required.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell3_remove_curse"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Remove Curse✦</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">This spell instantaneously removes a curse. The spell does not
|
||
remove
|
||
a curse from a weapon, item, or armor. Instead, the spell allows the afflicted being the ability to discard
|
||
it. Remove Curse counters and dispels Bestow Curse. The Maze Controller, in concert with the player,
|
||
determines the effect of Bestow Curse. Possibilities could include a saving throw penalty (maximum -2), a
|
||
to-hit penalty (maximum -4), or halving an ability score. A successful save (Spell) allows the target to
|
||
avoid
|
||
Bestow Curse.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Remove Curse✦}} {{Level=3}} {{Range=Touch}} {{Duration=Permanent}} {{Description=This spell instantaneously removes a curse. The spell does not remove a curse from a weapon, item, or armor. Instead, the spell allows the afflicted being the ability to discard it. Remove Curse counters and dispels Bestow Curse. The Maze Controller, in concert with the player, determines the effect of Bestow Curse. Possibilities could include a saving throw penalty (maximum -2), a to-hit penalty (maximum -4), or halving an ability score. A successful save (Spell) allows the target to avoid Bestow Curse.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell3_bestow_curse"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Bestow Curse†</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">Inflicts a harmful curse chosen by the DM, such as penalties to
|
||
saving throws, attacks, or halving an ability score.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Bestow Curse†}} {{Level=3}} {{Range=Touch}} {{Duration=Permanent}} {{Description=Inflicts a harmful curse chosen by the DM, such as penalties to saving throws, attacks, or halving an ability score.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell1_remove_fear"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Remove Fear✦</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">2 turns</span>
|
||
<span class="ds-prepred-spell-description">This spell removes magical Fear by inspiring courage in the
|
||
recipient. The spell provides a +4 bonus against magical fear for one turn. In the example of a failed save,
|
||
this spell provides a target with an additional saving throw opportunity to remove a fear effect. In this
|
||
instance, the recipient receives a save bonus of +1 per caster level. Remove Fear counters and dispels Cause
|
||
Fear. The spell requires the caster to touch the subject. Cause Fear will frighten a touched target to flee,
|
||
hysterically, at full movement rate for rounds equivalent to the level of the caster. Remove Paralysis Level
|
||
2
|
||
(Cleric) Duration: Permanent Range: Touch By touch, the caster removes all mundane and/or magical effects of
|
||
paralyzation (i.e., ghoul touch or Hold Person ). The cleric can free three subjects, but the spell requires
|
||
touch. Each paralyzed subject receives a new saving throw. If one subject, the save is +3. If two, the save
|
||
is
|
||
+2, and if 3, each receives a +1.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Remove Fear✦}} {{Level=1}} {{Range=Touch}} {{Duration=2 turns}} {{Description=This spell removes magical Fear by inspiring courage in the recipient. The spell provides a +4 bonus against magical fear for one turn. In the example of a failed save, this spell provides a target with an additional saving throw opportunity to remove a fear effect. In this instance, the recipient receives a save bonus of +1 per caster level. Remove Fear counters and dispels Cause Fear. The spell requires the caster to touch the subject. Cause Fear will frighten a touched target to flee, hysterically, at full movement rate for rounds equivalent to the level of the caster. Remove Paralysis Level 2 (Cleric) Duration: Permanent Range: Touch By touch, the caster removes all mundane and/or magical effects of paralyzation (i.e., ghoul touch or Hold Person ). The cleric can free three subjects, but the spell requires touch. Each paralyzed subject receives a new saving throw. If one subject, the save is +3. If two, the save is +2, and if 3, each receives a +1.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell1_cause_fear"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Cause Fear†</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">2 turns</span>
|
||
<span class="ds-prepred-spell-description">Instills magical fear in the target. Causes them to flee
|
||
hysterically
|
||
for rounds equal to the caster’s level.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Cause Fear†}} {{Level=1}} {{Range=Touch}} {{Duration=2 turns}} {{Description=Instills magical fear in the target. Causes them to flee hysterically for rounds equal to the caster’s level.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell1_resist_cold"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Resist Cold</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell grants immunity to non-magical cold. The spell also
|
||
grants
|
||
a saving throw bonus of +3 versus magical cold-based or cold breath attacks. Further, damage is halved if
|
||
the
|
||
saving throw is failed and quartered if successful. The bonus lasts for the duration of the spell.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Resist Cold}} {{Level=1}} {{Range=Touch}} {{Duration=1 Turn/Level}} {{Description=This spell grants immunity to non-magical cold. The spell also grants a saving throw bonus of +3 versus magical cold-based or cold breath attacks. Further, damage is halved if the saving throw is failed and quartered if successful. The bonus lasts for the duration of the spell.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell2_resist_fire"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Resist Fire</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell grants immunity to non-magical fire. The spell also
|
||
provides a +3 bonus to all saves versus magical fire or fire breath attacks. In addition, damage is halved
|
||
if
|
||
the save is failed and quartered if successful. The bonus lasts for the duration of the spell.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Resist Fire}} {{Level=2}} {{Range=Touch}} {{Duration=1 Turn/Level}} {{Description=This spell grants immunity to non-magical fire. The spell also provides a +3 bonus to all saves versus magical fire or fire breath attacks. In addition, damage is halved if the save is failed and quartered if successful. The bonus lasts for the duration of the spell.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell7_restoration"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Restoration</span>
|
||
<span class="ds-prepred-spell-level">7</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">Through this spell, a cleric restores one level of experience from
|
||
an
|
||
energy drain attack. The caster can only use the spell within a number of days equal to his/her level. The
|
||
spell restores experience points to the minimum number required to bring the recipient to their previous
|
||
level.<br><br>The reverse of the spell, Energy Drain absorbs one level of experience (or hit dice) away from
|
||
a
|
||
touched target.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Restoration}} {{Level=7}} {{Range=Touch}} {{Duration=Permanent}} {{Description=Through this spell, a cleric restores one level of experience from an energy drain attack. The caster can only use the spell within a number of days equal to his/her level. The spell restores experience points to the minimum number required to bring the recipient to their previous level.<br><br>The reverse of the spell, Energy Drain absorbs one level of experience (or hit dice) away from a touched target.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell7_resurrection"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Resurrection✦</span>
|
||
<span class="ds-prepred-spell-level">7</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">This spell raises the dead and restores the recipient to maximum
|
||
hit
|
||
points and health, including prepared spells (if applicable). The spell functions regardless of the
|
||
condition
|
||
of the deceased (to a maximum of 10 years per level of the caster). The spell requires bodily remains.
|
||
Destruction (reverse of Resurrection ) causes the target, through touch, to die and disintegrate into dust.
|
||
In
|
||
both cases the spell weakens the caster to bed-rest for one day/level of the resurrected character. During
|
||
the
|
||
recovery period, the caster cannot engage in combat or cast spells.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Resurrection✦}} {{Level=7}} {{Range=Touch}} {{Duration=Permanent}} {{Description=This spell raises the dead and restores the recipient to maximum hit points and health, including prepared spells (if applicable). The spell functions regardless of the condition of the deceased (to a maximum of 10 years per level of the caster). The spell requires bodily remains. Destruction (reverse of Resurrection ) causes the target, through touch, to die and disintegrate into dust. In both cases the spell weakens the caster to bed-rest for one day/level of the resurrected character. During the recovery period, the caster cannot engage in combat or cast spells.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell7_destruction"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Destruction†</span>
|
||
<span class="ds-prepred-spell-level">7</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">Permanent</span>
|
||
<span class="ds-prepred-spell-description">Kills the target instantly, reducing them to dust. Weakens the
|
||
caster
|
||
afterward.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Destruction†}} {{Level=7}} {{Range=Touch}} {{Duration=Permanent}} {{Description=Kills the target instantly, reducing them to dust. Weakens the caster afterward.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell2_sacred_chant"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Sacred Chant</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">N/A</span>
|
||
<span class="ds-prepred-spell-duration">Special</span>
|
||
<span class="ds-prepred-spell-description">By means of continuous chanting in Ancient Common (similar to
|
||
Latin),
|
||
a cleric invokes divine favor within a 30-foot radius. Allies within the area of effect receive a +1 to
|
||
attack, damage, and saving throws. Opponents receive a -1 to attack rolls within the established radius. As
|
||
long as the cleric remains motionless and concentrates solely on the Sacred Chant, the effect continues. If
|
||
the cleric takes damage, or is distracted, the spell ends. Silence negates the spell.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Sacred Chant}} {{Level=2}} {{Range=N/A}} {{Duration=Special}} {{Description=By means of continuous chanting in Ancient Common (similar to Latin), a cleric invokes divine favor within a 30-foot radius. Allies within the area of effect receive a +1 to attack, damage, and saving throws. Opponents receive a -1 to attack rolls within the established radius. As long as the cleric remains motionless and concentrates solely on the Sacred Chant, the effect continues. If the cleric takes damage, or is distracted, the spell ends. Silence negates the spell.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell1_sanctuary"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Sanctuary</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">2 Rounds/1 per Level</span>
|
||
<span class="ds-prepred-spell-description">This spell protects a single being. An enemy that physically
|
||
attacks
|
||
the recipient must save versus Spell or attack an alternative target (determined randomly by the Maze
|
||
Controller). If successful, the target is unaffected and may attack normally.<br><br>Note that the recipient
|
||
remains susceptible to area effect damage. The cleric cannot use offensive spells or attack, lest the
|
||
spell
|
||
be broken. This excludes non- offensive spell-casting.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Sanctuary}} {{Level=1}} {{Range=Touch}} {{Duration=2 Rounds/1 per Level}} {{Description=This spell protects a single being. An enemy that physically attacks the recipient must save versus Spell or attack an alternative target (determined randomly by the Maze Controller). If successful, the target is unaffected and may attack normally.<br><br>Note that the recipient remains susceptible to area effect damage. The cleric cannot use offensive spells or attack, lest the spell be broken. This excludes non- offensive spell-casting.}}"></button>
|
||
</div>
|
||
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell2_silence"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Silence (15 Feet)</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">40 Feet</span>
|
||
<span class="ds-prepred-spell-duration">2 Rounds/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell completely neutralizes all sound in a 30 foot radius
|
||
including voices, spells, etc. The spell may be cast on a specific location but the radius is fixed and
|
||
cannot
|
||
move. The spell can be used on an object and the radius will move with the item. The spell may be cast on a
|
||
being and the effect will move with it. Unwilling targets receive a save (Spell) to negate. If successful,
|
||
the
|
||
incantation takes effect at the target’s location but s/he may move outside radius of the spell.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Silence (15 Feet)}} {{Level=2}} {{Range=40 Feet}} {{Duration=2 Rounds/Level}} {{Description=This spell completely neutralizes all sound in a 30 foot radius including voices, spells, etc. The spell may be cast on a specific location but the radius is fixed and cannot move. The spell can be used on an object and the radius will move with the item. The spell may be cast on a being and the effect will move with it. Unwilling targets receive a save (Spell) to negate. If successful, the incantation takes effect at the target’s location but s/he may move outside radius of the spell.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell2_slow_poison"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Slow Poison</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">6 Turns/Level</span>
|
||
<span class="ds-prepred-spell-description">This prayer temporarily alleviates exposure to poison. If a
|
||
recipient
|
||
has been poisoned (or may be poisoned during the spell’s duration) the toxin does not take effect until the
|
||
spell expires. Unless the subject is cured before the end of the spell, saves and damage are rolled
|
||
normally.
|
||
The incantation does not cure damage previously incurred from poison. However, the spell can restore life (1
|
||
hit point) to a subject that died from poison (within one turn per caster level) for the duration of the
|
||
spell.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Slow Poison}} {{Level=2}} {{Range=Touch}} {{Duration=6 Turns/Level}} {{Description=This prayer temporarily alleviates exposure to poison. If a recipient has been poisoned (or may be poisoned during the spell’s duration) the toxin does not take effect until the spell expires. Unless the subject is cured before the end of the spell, saves and damage are rolled normally. The incantation does not cure damage previously incurred from poison. However, the spell can restore life (1 hit point) to a subject that died from poison (within one turn per caster level) for the duration of the spell.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell2_snake_charm"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Snake Charm</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">30 Feet</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">This spell makes snakes apathetic to the caster and his or her
|
||
companions. A cleric or druid influences a number of snakes equal to the caster’s level for 1d4+1 turns. A
|
||
Level 7 Cleric therefore affects seven hit dice (seven snakes of one hit die or two snakes of three hit
|
||
dice,
|
||
etc.). Snakes openly hostile to the caster are more difficult to influence. Hostile snakes, or those engaged
|
||
in combat, are charmed for only 1d4+1 rounds.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Snake Charm}} {{Level=2}} {{Range=30 Feet}} {{Duration=See below}} {{Description=This spell makes snakes apathetic to the caster and his or her companions. A cleric or druid influences a number of snakes equal to the caster’s level for 1d4+1 turns. A Level 7 Cleric therefore affects seven hit dice (seven snakes of one hit die or two snakes of three hit dice, etc.). Snakes openly hostile to the caster are more difficult to influence. Hostile snakes, or those engaged in combat, are charmed for only 1d4+1 rounds.}}"></button>
|
||
</div>
|
||
|
||
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Speak with Animals</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">30 Feet</span>
|
||
<span class="ds-prepred-spell-duration">2 Rounds/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell allows the caster to communicate with normal or giant
|
||
animals. The caster may query, and receive responses from, one specific animal type. The caster selects the
|
||
animal type when cast. The animal may, if the caster is friendly, offer a favor or service. If the animal is
|
||
unfriendly, it may demand help or food. The spell does not influence or make an animal more cooperative or
|
||
friendly.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Speak with Animals}} {{Level=2}} {{Range=30 Feet}} {{Duration=2 Rounds/Level}} {{Description=This spell allows the caster to communicate with normal or giant animals. The caster may query, and receive responses from, one specific animal type. The caster selects the animal type when cast. The animal may, if the caster is friendly, offer a favor or service. If the animal is unfriendly, it may demand help or food. The spell does not influence or make an animal more cooperative or friendly.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell3_speak_with_dead"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Speak with Dead</span>
|
||
<span class="ds-prepred-spell-level">3</span>
|
||
<span class="ds-prepred-spell-range">1 Foot</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">This spell calls on the soul of the deceased for information. The
|
||
spell duration is limited and is based on the level of the caster. The number of questions the cleric may
|
||
ask
|
||
of the dead is also limited (see below). The knowledge possessed by the deceased is restricted to its life
|
||
experience and the cleric must speak its language. If the duration of the spell expires, unasked questions
|
||
are
|
||
lost. Note that the deceased desire, above all else, to rest undisturbed. The dead never wish to return to
|
||
the
|
||
place of their death, re-inhabit their decayed remains, or answer questions of the living. The Maze
|
||
Controller
|
||
should role play Speak with Dead accordingly. The dead will attempt to delay, withhold, and/or obfuscate
|
||
their
|
||
responses - unless providing answers results in vengeance against their killer.<br><br>The caster, on the
|
||
other
|
||
hand, must role-play authoritatively through the duration of the spell, demand the soul return, and answer
|
||
questions:
|
||
<br><br>Experience Level Time Deceased Time Questioned # of Questions 7th or fewer 1 Week 1 Round 2 7th to
|
||
8th 1
|
||
Month 3 Rounds 3 9th to 12th 1 Year 1 Turn 4 13th to15th 10 Years 2 Turns 5 16th to 20th 100 Years 3 Turns
|
||
6
|
||
19th to 20th 150 Years 5 Turns 7 21st + 1,000+ 6 Turns 8
|
||
</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Speak with Dead}} {{Level=3}} {{Range=1 Foot}} {{Duration=See below}} {{Description=This spell calls on the soul of the deceased for information. The spell duration is limited and is based on the level of the caster. The number of questions the cleric may ask of the dead is also limited (see below). The knowledge possessed by the deceased is restricted to its life experience and the cleric must speak its language. If the duration of the spell expires, unasked questions are lost. Note that the deceased desire, above all else, to rest undisturbed. The dead never wish to return to the place of their death, re-inhabit their decayed remains, or answer questions of the living. The Maze Controller should role play Speak with Dead accordingly. The dead will attempt to delay, withhold, and/or obfuscate their responses - unless providing answers results in vengeance against their killer.<br><br>The caster, on the other hand, must role-play authoritatively through the duration of the spell, demand the soul return, and answer questions:<br><br>Experience Level Time Deceased Time Questioned # of Questions 7th or fewer 1 Week 1 Round 2 7th to 8th 1 Month 3 Rounds 3 9th to 12th 1 Year 1 Turn 4 13th to15th 10 Years 2 Turns 5 16th to 20th 100 Years 3 Turns 6 19th to 20th 150 Years 5 Turns 7 21st + 1,000+ 6 Turns 8}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell6_speak_with_monsters"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Speak with Monsters</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">30 Feet</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell is a more powerful iteration of Speak with Animals , but
|
||
the cleric may speak with any monster.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Speak with Monsters}} {{Level=6}} {{Range=30 Feet}} {{Duration=1 Round/Level}} {{Description=This spell is a more powerful iteration of Speak with Animals , but the cleric may speak with any monster.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell4_speak_with_plants"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Speak with Plants</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">30 Feet</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">Through Speak with Plants the caster may communicate, albeit
|
||
awkwardly and primitively, with plants, beings, or monsters, that are plant-based. The caster may ask
|
||
questions and receive answers. The caster can also ask plants to clear an overgrown path. The spell does not
|
||
predispose plants or plant creatures to the caster. If the caster presents a friendly disposition, and a
|
||
plant
|
||
creature desires aid, it may help or ask for a favor.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Speak with Plants}} {{Level=4}} {{Range=30 Feet}} {{Duration=1 Round/Level}} {{Description=Through Speak with Plants the caster may communicate, albeit awkwardly and primitively, with plants, beings, or monsters, that are plant-based. The caster may ask questions and receive answers. The caster can also ask plants to clear an overgrown path. The spell does not predispose plants or plant creatures to the caster. If the caster presents a friendly disposition, and a plant creature desires aid, it may help or ask for a favor.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell1_spiritual_armor"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Spiritual Armor</span>
|
||
<span class="ds-prepred-spell-level">1</span>
|
||
<span class="ds-prepred-spell-range">Caster</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell enhances the cleric’s mundane armor with a shimmering
|
||
blue
|
||
glow. For the spell’s duration the caster receives the blessing of their deity in the form of a +2 armor
|
||
class
|
||
bonus against undead. This bonus does not stack with other armor-related spells.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Spiritual Armor}} {{Level=1}} {{Range=Caster}} {{Duration=1 Round/Level}} {{Description=This spell enhances the cleric’s mundane armor with a shimmering blue glow. For the spell’s duration the caster receives the blessing of their deity in the form of a +2 armor class bonus against undead. This bonus does not stack with other armor-related spells.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell2_spiritual_hammer"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Spiritual Hammer</span>
|
||
<span class="ds-prepred-spell-level">2</span>
|
||
<span class="ds-prepred-spell-range">30 Feet</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">This prayer manifests a weapon of force to attack an opponent in
|
||
range. The weapon deals 1d6 points of damage (+1 to hit every three levels of experience). The weapon is not
|
||
magical and cannot hit creatures or beings only struck by magic weapons. The weapon appears as the deity’s
|
||
favored weapon or symbol (mace, hammer, etc.). The weapon attacks the cleric’s designated target. The weapon
|
||
employs the cleric’s to-hit value, just like any melee weapon. The weapon manifests until the caster breaks
|
||
concentration or takes damage, to its maximum duration.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Spiritual Hammer}} {{Level=2}} {{Range=30 Feet}} {{Duration=1 Round/Level}} {{Description=This prayer manifests a weapon of force to attack an opponent in range. The weapon deals 1d6 points of damage (+1 to hit every three levels of experience). The weapon is not magical and cannot hit creatures or beings only struck by magic weapons. The weapon appears as the deity’s favored weapon or symbol (mace, hammer, etc.). The weapon attacks the cleric’s designated target. The weapon employs the cleric’s to-hit value, just like any melee weapon. The weapon manifests until the caster breaks concentration or takes damage, to its maximum duration.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell4_sticks_to_snakes"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Sticks to Snakes</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">30 Feet</span>
|
||
<span class="ds-prepred-spell-duration">2 Rounds/Level</span>
|
||
<span class="ds-prepred-spell-description">This spell transforms as many mundane sticks to snakes as the
|
||
caster’s level of experience. The snakes then attack as commanded. There is a 1-2 on d6 chance that a snake
|
||
is
|
||
poisonous (save or die). When slain or at the conclusion of the spell, the snakes change back to sticks.
|
||
Snake
|
||
statistics are as follows: AL: N, MV: 20, AC: 7, HD: 1, #AT: 1, DMG: 1d3, SV: F1, ML: 7.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Sticks to Snakes}} {{Level=4}} {{Range=30 Feet}} {{Duration=2 Rounds/Level}} {{Description=This spell transforms as many mundane sticks to snakes as the caster’s level of experience. The snakes then attack as commanded. There is a 1-2 on d6 chance that a snake is poisonous (save or die). When slain or at the conclusion of the spell, the snakes change back to sticks. Snake statistics are as follows: AL: N, MV: 20, AC: 7, HD: 1, #AT: 1, DMG: 1d3, SV: F1, ML: 7.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell6_stone_tell"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Stone Tell</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn</span>
|
||
<span class="ds-prepred-spell-description">Stone Tell allows the caster to speak with stone. The stone can
|
||
communicate, albeit in basic garbled terms. The stone can reveal who or what it has seen, or who or what is
|
||
concealed near, under, or behind it. The stones can communicate descriptions, if asked. The caster can speak
|
||
with either worked or natural stone.<br><br>If a druid casts Stone Tell on a standing stone or henge stone,
|
||
s/he
|
||
can see images through the stone in addition to rudimentary communication.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Stone Tell}} {{Level=6}} {{Range=Touch}} {{Duration=1 Turn}} {{Description=Stone Tell allows the caster to speak with stone. The stone can communicate, albeit in basic garbled terms. The stone can reveal who or what it has seen, or who or what is concealed near, under, or behind it. The stones can communicate descriptions, if asked. The caster can speak with either worked or natural stone.<br><br>If a druid casts Stone Tell on a standing stone or henge stone, s/he can see images through the stone in addition to rudimentary communication.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell6_summon_aerial_servant"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Summon Aerial Servant</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">10 Feet</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">This spell summons an aerial servant (see monster entry). The
|
||
priest
|
||
first casts Protection from Evil followed by Summon Aerial Servant.<br><br>The caster may command it to
|
||
undertake
|
||
tasks, such as fetch an item or being. The creature is a non-combatant and will refuse orders to engage in
|
||
battle.
|
||
<br><br>If tasked to recover an object, the Aerial Servant will retrieve it even if the item is in another’s
|
||
possession. Under these circumstances, the creature will attack with complete surprise and gain four
|
||
rounds
|
||
of action unless means to detect invisibility are available or previously cast. The spell concludes upon
|
||
task completion, the caster dismisses the servant, or the cleric is slain.
|
||
</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Summon Aerial Servant}} {{Level=6}} {{Range=10 Feet}} {{Duration=See below}} {{Description=This spell summons an aerial servant (see monster entry). The priest first casts Protection from Evil followed by Summon Aerial Servant.<br><br>The caster may command it to undertake tasks, such as fetch an item or being. The creature is a non-combatant and will refuse orders to engage in battle.<br><br>If tasked to recover an object, the Aerial Servant will retrieve it even if the item is in another’s possession. Under these circumstances, the creature will attack with complete surprise and gain four rounds of action unless means to detect invisibility are available or previously cast. The spell concludes upon task completion, the caster dismisses the servant, or the cleric is slain.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell7_symbol"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Symbol</span>
|
||
<span class="ds-prepred-spell-level">7</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">See below</span>
|
||
<span class="ds-prepred-spell-description">This spell inscribes a powerful rune of protection on a surface.
|
||
Eight different symbols are possible and each possesses a unique effect. A symbol is activated when it is
|
||
read, touched, or through proximity. Proximity symbols are activated within 10 feet and have a 30x30 radius,
|
||
unless otherwise stated. Thus, passing under an archway would trigger the spell.<br><br>Symbol of Discord:
|
||
When
|
||
triggered, all those in the immediate area quarrel and bicker incessantly for 5d4 rounds. Those of opposed
|
||
alignment may (50%) battle for 2d4 rounds.
|
||
<br><br>Symbol of Death : When triggered, a Symbol of Death kills all beings with less than 80 hit points.
|
||
<br><br>Symbol of Despair : All those in the area must save (Spell) or wander away, utterly hopeless. The
|
||
effect
|
||
lasts for 3d4 turns. While under this effect, subjects refuse to fight and instead will cower and
|
||
surrender.
|
||
<br><br>Symbol of Fear : All those in the immediate area must save (Spell) at -4 or suffer Fear effects as
|
||
per
|
||
the
|
||
spell of the same name.
|
||
<br><br>Symbol of Insanity : All those with total hit points below 120 turn insane (as per the spell
|
||
Confusion ).
|
||
Only Heal , Restoration , or Wish can negate the effect.
|
||
<br><br>Symbol of Pain : All those in range are stricken by pain. The pain imposes a -2 to Dexterity and a
|
||
-4 on
|
||
all attack rolls (2d10 turns).
|
||
<br><br>Symbol of Sleep : Beings of eight or fewer hit dice fall into a magical sleep for 2d6+4 turns.
|
||
Unlike the
|
||
spell Sleep , slumbering beings cannot be wakened prior to spell expiration.
|
||
<br><br>Symbol of Stunning : A Symbol of Stunning causes all those within the area, with less than 160 hit
|
||
points,
|
||
to be stunned for 3d4 rounds. All hand-held items are dropped by stunned targets.
|
||
</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Symbol}} {{Level=7}} {{Range=Touch}} {{Duration=See below}} {{Description=This spell inscribes a powerful rune of protection on a surface. Eight different symbols are possible and each possesses a unique effect. A symbol is activated when it is read, touched, or through proximity. Proximity symbols are activated within 10 feet and have a 30x30 radius, unless otherwise stated. Thus, passing under an archway would trigger the spell.<br><br>Symbol of Discord: When triggered, all those in the immediate area quarrel and bicker incessantly for 5d4 rounds. Those of opposed alignment may (50%) battle for 2d4 rounds.<br><br>Symbol of Death : When triggered, a Symbol of Death kills all beings with less than 80 hit points.<br><br>Symbol of Despair : All those in the area must save (Spell) or wander away, utterly hopeless. The effect lasts for 3d4 turns. While under this effect, subjects refuse to fight and instead will cower and surrender.<br><br>Symbol of Fear : All those in the immediate area must save (Spell) at -4 or suffer Fear effects as per the spell of the same name.<br><br>Symbol of Insanity : All those with total hit points below 120 turn insane (as per the spell Confusion ). Only Heal , Restoration , or Wish can negate the effect.<br><br>Symbol of Pain : All those in range are stricken by pain. The pain imposes a -2 to Dexterity and a -4 on all attack rolls (2d10 turns).<br><br>Symbol of Sleep : Beings of eight or fewer hit dice fall into a magical sleep for 2d6+4 turns. Unlike the spell Sleep , slumbering beings cannot be wakened prior to spell expiration.<br><br>Symbol of Stunning : A Symbol of Stunning causes all those within the area, with less than 160 hit points, to be stunned for 3d4 rounds. All hand-held items are dropped by stunned targets.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell4_tongues"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Tongues✦</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn</span>
|
||
<span class="ds-prepred-spell-description">This incantation allows the caster to comprehend the language of
|
||
one
|
||
intelligent being for the spell’s duration. The reverse, Garble , will negate a Tongues spell. It can also
|
||
be
|
||
used, with touch, to make language incomprehensible. The spell does not provide a saving throw.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Tongues✦}} {{Level=4}} {{Range=Touch}} {{Duration=1 Turn}} {{Description=This incantation allows the caster to comprehend the language of one intelligent being for the spell’s duration. The reverse, Garble , will negate a Tongues spell. It can also be used, with touch, to make language incomprehensible. The spell does not provide a saving throw.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell4_garble"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Garble†</span>
|
||
<span class="ds-prepred-spell-level">4</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">1 Turn</span>
|
||
<span class="ds-prepred-spell-description">Negates Tongues or makes a target’s speech incomprehensible. No
|
||
save.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Garble†}} {{Level=4}} {{Range=Touch}} {{Duration=1 Turn}} {{Description=Negates Tongues or makes a target’s speech incomprehensible. No save.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell5_true_sight"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">True Sight✦</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">True Sight confers the ability to see the truth. The subject may
|
||
perceive all things in normal or magical darkness, see invisible beings and objects, see illusions or
|
||
displacements, notice secret doors, and can identify the true nature of transmutations, polymorphs, and
|
||
altered states. Further, the recipient can see astral or ethereal beings. False Sight makes things, beings,
|
||
and monsters appear the “opposite” to their true nature. A save versus Spell negates False Sight.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=True Sight✦}} {{Level=5}} {{Range=Touch}} {{Duration=1 Round/Level}} {{Description=True Sight confers the ability to see the truth. The subject may perceive all things in normal or magical darkness, see invisible beings and objects, see illusions or displacements, notice secret doors, and can identify the true nature of transmutations, polymorphs, and altered states. Further, the recipient can see astral or ethereal beings. False Sight makes things, beings, and monsters appear the “opposite” to their true nature. A save versus Spell negates False Sight.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell5_false_sight"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">False Sight†</span>
|
||
<span class="ds-prepred-spell-level">5</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">1 Round/Level</span>
|
||
<span class="ds-prepred-spell-description">Makes targets perceive things as their opposite nature (good looks
|
||
evil, treasure looks worthless, etc.). Save negates.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=False Sight†}} {{Level=5}} {{Range=Touch}} {{Duration=1 Round/Level}} {{Description=Makes targets perceive things as their opposite nature (good looks evil, treasure looks worthless, etc.). Save negates.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell7_wind_walk"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Wind Walk</span>
|
||
<span class="ds-prepred-spell-level">7</span>
|
||
<span class="ds-prepred-spell-range">Touch</span>
|
||
<span class="ds-prepred-spell-duration">6 Turns/Level</span>
|
||
<span class="ds-prepred-spell-description">Through this spell the caster alters his or her body to a
|
||
vapor-like
|
||
cloud and flies through the air at high speed. The caster can transform and carry additional beings (one per
|
||
eight levels of experience). A wind walker carries a flight speed of 60 feet per level per turn (to a
|
||
maximum
|
||
of 600 feet per turn). Subjects are near invisible and appear as a semi-translucent vapor. If completely
|
||
garbed in white, the subjects are likely to be confused for fog, clouds, or vapor.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Wind Walk}} {{Level=7}} {{Range=Touch}} {{Duration=6 Turns/Level}} {{Description=Through this spell the caster alters his or her body to a vapor-like cloud and flies through the air at high speed. The caster can transform and carry additional beings (one per eight levels of experience). A wind walker carries a flight speed of 60 feet per level per turn (to a maximum of 600 feet per turn). Subjects are near invisible and appear as a semi-translucent vapor. If completely garbed in white, the subjects are likely to be confused for fog, clouds, or vapor.}}"></button>
|
||
</div>
|
||
|
||
<input type="checkbox" class="ds-prepared-spell-checkbox" name="attr_cleric_spell6_word_of_recall"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-row">
|
||
<span class="ds-prepred-spell-name">Word of Recall</span>
|
||
<span class="ds-prepred-spell-level">6</span>
|
||
<span class="ds-prepred-spell-range">0</span>
|
||
<span class="ds-prepred-spell-duration">Instantaneous</span>
|
||
<span class="ds-prepred-spell-description">Upon utterance, a Word of Recall instantly teleports the caster
|
||
back
|
||
to his or her sanctuary. The caster must identify the specific sanctuary when casting the spell, and the
|
||
location must be familiar. The spell teleports across any distance and without error. Further, for each
|
||
experience level the cleric may teleport an additional 25 pounds.</span>
|
||
<button type="roll" class="ds-cast-spell-button"
|
||
value="&{template:default} {{name=@{character_name} Casts a spell}} {{Spell=Word of Recall}} {{Level=6}} {{Range=0}} {{Duration=Instantaneous}} {{Description=Upon utterance, a Word of Recall instantly teleports the caster back to his or her sanctuary. The caster must identify the specific sanctuary when casting the spell, and the location must be familiar. The spell teleports across any distance and without error. Further, for each experience level the cleric may teleport an additional 25 pounds.}}"></button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<input type="checkbox" id="prepare_spells_control" name="attr_show_prepare_spells" style="display: none;" />
|
||
<div class="ds-spell-levels" id="prepare-spells-section">
|
||
<button type="action" class="ds-done-preparing-button" name="act_done_preparing">Done Preparing</button>
|
||
<input type="checkbox" name="attr_show_magic_user_prepared_spells_control" class="ds-show-prepared-spells-control"
|
||
style="display: none;" />
|
||
|
||
<div class="ds-prepared-spells-magic-user">
|
||
|
||
<div class="ds-spell-level-row">
|
||
<input type="checkbox" name="attr_show_spell_level_1" class="ds-show-spell-level" />
|
||
<div class="ds-spell-level">
|
||
<h4>1st Level Spells</h4>
|
||
<div class="ds-spell-list">
|
||
<label><input type="checkbox" name="attr_magic_user_spell1_affect_normal_fires" /> Affect Normal
|
||
Fires</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell1_aztazibars_acrid_finger" /> Aztazibar's Acrid
|
||
Finger</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell1_baltrons_black_sheen" /> Baltron's Black
|
||
Sheen</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell1_burning_hands" /> Burning Hands</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell1_charm_person" /> Charm Person</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell1_comprehend_languages" /> Comprehend
|
||
Languages✦</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell1_dancing_lights" /> Dancing Lights</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell1_darkness" /> Darkness†</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell1_detect_magic" /> Detect Magic</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell1_enlarge" /> Enlarge✦</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell1_erase" /> Erase</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell1_feather_fall" /> Feather Fall</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell1_fennrils_exquisite_strangulation" /> Fennril's
|
||
Exquisite Strangulation</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell1_filangees_sycophantic_praise" /> Filangee's
|
||
Sycophantic Praise</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell1_find_familiar" /> Find Familiar</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell1_hitzemuns_blue_feet" /> Hitzemun's Blue
|
||
Feet</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell1_hold_portal" /> Hold Portal</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell1_identify" /> Identify</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell1_jump" /> Jump</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell1_light" /> Light✦</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell1_magic_missile" /> Magic Missile</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell1_mazakalas_glassy_facsimile" /> Mazakala's
|
||
Glassy
|
||
Facsimile</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell1_mazakalas_imperfect_panic" /> Mazakala's
|
||
Imperfect Panic</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell1_mazakalas_mucilaginous_effluvium" /> Mazakala's
|
||
Mucilaginous Effluvium</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell1_mending" /> Mending</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell1_message" /> Message</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell1_obfuscate_languages" /> Obfuscate
|
||
Languages†</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell1_protection_from_evil" /> Protection from
|
||
Evil</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell1_read_magic_arcane" /> Read Magic
|
||
(Arcane)</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell1_secumunds_phantasmal_steed" /> Secumund's
|
||
Phantasmal Steed</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell1_shield" /> Shield</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell1_shocking_grasp" /> Shocking Grasp</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell1_shrink" /> Shrink†</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell1_sleep" /> Sleep</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell1_spider_climb" /> Spider Climb</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell1_tenneals_expeditious_retreat" /> Tenneal's
|
||
Expeditious Retreat</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell1_tenneals_floating_disc" /> Tenneal's Floating
|
||
Disc</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell1_tenneals_magic_aura" /> Tenneal's Magic
|
||
Aura</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell1_unseen_servant" /> Unseen Servant</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell1_ventriloquism" /> Ventriloquism</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell1_wall_of_glass" /> Wall of Glass</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell1_write" /> Write</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell1_zupangs_protracting_eyeball" /> Zu-Pang's
|
||
Protracting Eyeball</label>
|
||
</div>
|
||
</div>
|
||
<input type="checkbox" name="attr_show_spell_level_2" class="ds-show-spell-level" />
|
||
<div class="ds-spell-level">
|
||
<h4>2nd Level Spells</h4>
|
||
<div class="ds-spell-list">
|
||
<label><input type="checkbox" name="attr_magic_user_spell2_ambasses_absent_lapse" /> Ambasse's Absent
|
||
Lapse</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell2_anttiliams_necromantic_drain" /> Anttiliam's
|
||
Necromantic Drain</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell2_audible_glamer" /> Audible Glamer</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell2_baltrons_effusive_bloodboil" /> Baltron's
|
||
Effusive Bloodboil</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell2_breath_of_the_dragon" /> Breath of the
|
||
Dragon</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell2_chandrakars_charm_of_disciplinary_jargon" />
|
||
Chandra-Kar's Charm of Disciplinary Jargon</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell2_continual_darkness" /> Continual
|
||
Darkness†</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell2_continual_light" /> Continual Light✦</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell2_cryotechnics" /> Cryotechnics†</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell2_darkness_15_feet" /> Darkness (15 Feet)</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell2_detect_evil" /> Detect Evil✦</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell2_detect_good" /> Detect Good†</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell2_detect_invisibility" /> Detect
|
||
Invisibility</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell2_djriixims_purple_haze" /> Djriixim's Purple
|
||
Haze</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell2_esp" /> ESP</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell2_flesh_of_fire" /> Flesh of Fire</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell2_fools_gold" /> Fool's Gold</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell2_forget" /> Forget</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell2_gartzees_incredulous_apostate" /> Gartzee's
|
||
Incredulous Apostate</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell2_grelfs_acidic_arrow" /> Grelf's Acidic
|
||
Arrow</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell2_invisibility" /> Invisibility</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell2_knock" /> Knock</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell2_koweewahs_shushing_hand" /> Koweewah's Shushing
|
||
Hand</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell2_levitate" /> Levitate</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell2_locate_object" /> Locate Object✦</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell2_magic_mouth" /> Magic Mouth</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell2_mikdaerrs_practical_tilt" /> Mikda-Err's
|
||
Practical Tilt</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell2_mirror_image" /> Mirror Image</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell2_obscure_object" /> Obscure Object†</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell2_pyrotechnics" /> Pyrotechnics✦</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell2_ray_of_enfeeblement" /> Ray of
|
||
Enfeeblement</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell2_rope_trick" /> Rope Trick</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell2_scare" /> Scare</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell2_secumunds_trap" /> Secumund's Trap</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell2_shatter" /> Shatter</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell2_stinking_cloud" /> Stinking Cloud</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell2_strength" /> Strength</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell2_vitharias_vengeful_visage" /> Vitharia's
|
||
Vengeful
|
||
Visage</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell2_web" /> Web</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell2_wizard_lock" /> Wizard Lock</label>
|
||
</div>
|
||
</div>
|
||
<input type="checkbox" name="attr_show_spell_level_3" class="ds-show-spell-level" />
|
||
<div class="ds-spell-level">
|
||
<h4>3rd Level Spells</h4>
|
||
<div class="ds-spell-list">
|
||
<label><input type="checkbox" name="attr_magic_user_spell3_baltrons_beguiling_birdseed" /> Baltron's
|
||
Beguiling Birdseed</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell3_blink" /> Blink</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell3_clairaudience" /> Clairaudience</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell3_clairvoyance" /> Clairvoyance</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell3_darkvision" /> Darkvision</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell3_demambalas_sepulchral_soup" /> Demambala's
|
||
Sepulchral Soup</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell3_dispel_magic" /> Dispel Magic</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell3_explosive_runes" /> Explosive Runes</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell3_feign_death" /> Feign Death</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell3_fireball" /> Fireball</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell3_flame_arrow" /> Flame Arrow</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell3_fly" /> Fly</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell3_galaxinas_gorgonic_glyph" /> Galaxina's
|
||
Gorgonic
|
||
Glyph</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell3_garble" /> Garble†</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell3_gregvards_green_tentacles" /> Gregvard's Green
|
||
Tentacles</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell3_gust_of_wind" /> Gust of Wind</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell3_haste" /> Haste✦</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell3_hold_person" /> Hold Person</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell3_invisibility_10_feet" /> Invisibility (10
|
||
Feet)</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell3_lightning_bolt" /> Lightning Bolt</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell3_ools_broiling_exhalation" /> Ool's Broiling
|
||
Exhalation</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell3_phantasmal_force" /> Phantasmal Force</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell3_protection_from_evil_10_feet" /> Protection
|
||
from
|
||
Evil (10 Feet)</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell3_protection_from_normal_missiles" /> Protection
|
||
from Normal Missiles</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell3_secumunds_tiny_hut" /> Secumund's Tiny
|
||
Hut</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell3_sepia_snake_sigil" /> Sepia Snake Sigil</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell3_slow" /> Slow†</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell3_suggestion" /> Suggestion</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell3_summon_monsters_i" /> Summon Monsters I</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell3_tongues" /> Tongues✦</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell3_water_breathing" /> Water Breathing</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell3_zozomirs_stentorian_shout" /> Zozomir's
|
||
Stentorian Shout</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell3_zurgosmels_heeded_echo" /> Zurgosmel's Heeded
|
||
Echo</label>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="ds-spell-level-row">
|
||
<input type="checkbox" name="attr_show_spell_level_4" class="ds-show-spell-level" />
|
||
<div class="ds-spell-level">
|
||
<h4>4th Level Spells</h4>
|
||
<div class="ds-spell-list">
|
||
<label><input type="checkbox" name="attr_magic_user_spell4_animate_statue" /> Animate Statue</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell4_charm_monster" /> Charm Monster</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell4_confusion" /> Confusion</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell4_dimension_door" /> Dimension Door</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell4_enchanted_weapon" /> Enchanted Weapon</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell4_extension_i" /> Extension I</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell4_fear" /> Fear</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell4_fire_shield" /> Fire Shield</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell4_fire_trap" /> Fire Trap</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell4_flame_charm" /> Flame Charm</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell4_fumble" /> Fumble</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell4_gaseous_form" /> Gaseous Form</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell4_globe_of_invulnerability_minor" /> Globe of
|
||
Invulnerability (Minor)</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell4_hallucinatory_forest" /> Hallucinatory
|
||
Forest</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell4_ice_storm" /> Ice Storm</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell4_massmorph" /> Massmorph</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell4_mnoricars_mnemonic_enhancer" /> Mnoricar's
|
||
Mnemonic Enhancer</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell4_mordrils_excavation" /> Mordril's
|
||
Excavation</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell4_plant_growth" /> Plant Growth</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell4_polymorph_other" /> Polymorph Other</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell4_polymorph_self" /> Polymorph Self</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell4_summon_monsters_ii" /> Summon Monsters
|
||
II</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell4_wall_of_fire" /> Wall of Fire</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell4_wall_of_ice" /> Wall of Ice</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell4_wizard_eye" /> Wizard Eye</label>
|
||
</div>
|
||
</div>
|
||
<input type="checkbox" name="attr_show_spell_level_5" class="ds-show-spell-level" />
|
||
<div class="ds-spell-level">
|
||
<h4>5th Level Spells</h4>
|
||
<div class="ds-spell-list">
|
||
<label><input type="checkbox" name="attr_magic_user_spell5_abners_faithful_hound" /> Abner's Faithful
|
||
Hound</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell5_airy_water" /> Airy Water</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell5_animate_dead" /> Animate Dead</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell5_cloudkill" /> Cloudkill</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell5_cone_of_cold" /> Cone of Cold</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell5_conjure_elemental" /> Conjure Elemental</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell5_contact_other_plane" /> Contact Other
|
||
Plane</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell5_extension_ii" /> Extension II</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell5_false_sight" /> False Sight†</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell5_feeblemind" /> Feeblemind</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell5_hold_monster" /> Hold Monster</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell5_koweewahs_interposing_hand" /> Koweewah's
|
||
Interposing Hand</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell5_magic_jar" /> Magic Jar</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell5_passwall" /> Passwall</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell5_secumunds_secret_chest" /> Secumund's Secret
|
||
Chest</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell5_stone_shape" /> Stone Shape</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell5_summon_monsters_iii" /> Summon Monsters
|
||
III</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell5_telekinesis" /> Telekinesis</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell5_teleport" /> Teleport</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell5_transmute_mud_to_rock" /> Transmute Mud to
|
||
Rock†</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell5_transmute_rock_to_mud" /> Transmute Rock to
|
||
Mud✦</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell5_true_sight" /> True Sight✦</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell5_wall_of_force" /> Wall of Force</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell5_wall_of_iron" /> Wall of Iron</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell5_wall_of_stone" /> Wall of Stone</label>
|
||
</div>
|
||
</div>
|
||
<input type="checkbox" name="attr_show_spell_level_6" class="ds-show-spell-level" />
|
||
<div class="ds-spell-level">
|
||
<h4>6th Level Spells</h4>
|
||
<div class="ds-spell-list">
|
||
<label><input type="checkbox" name="attr_magic_user_spell6_antimagic_shell" /> Anti-Magic Shell</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell6_control_weather" /> Control Weather</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell6_death_spell" /> Death Spell</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell6_disintegrate" /> Disintegrate</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell6_extension_iii" /> Extension III</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell6_flesh_to_stone" /> Flesh to Stone†</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell6_freeze_flesh" /> Freeze Flesh†</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell6_geas" /> Geas</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell6_globe_of_invulnerability" /> Globe of
|
||
Invulnerability</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell6_guards_and_wards" /> Guards and Wards</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell6_koweewahs_forceful_hand" /> Koweewah's Forceful
|
||
Hand</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell6_legend_lore" /> Legend Lore</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell6_lower_water" /> Lower Water</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell6_mordrils_mighty_excavation" /> Mordril's Mighty
|
||
Excavation</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell6_ools_freezing_sphere" /> Ool's Freezing
|
||
Sphere</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell6_part_water" /> Part Water</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell6_projected_image" /> Projected Image</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell6_reincarnate" /> Reincarnate</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell6_repulsion" /> Repulsion</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell6_spiritwrack" /> Spiritwrack</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell6_stone_to_flesh" /> Stone to Flesh✦</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell6_summon_invisible_stalker" /> Summon Invisible
|
||
Stalker</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell6_summon_monsters_iv" /> Summon Monsters
|
||
IV</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell6_summon_phantom_stalker" /> Summon Phantom
|
||
Stalker</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell6_transmute_ice_to_flesh" /> Transmute Ice to
|
||
Flesh✦</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell6_welnards_wizard_window" /> Welnard's Wizard
|
||
Window</label>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="ds-spell-level-row">
|
||
<input type="checkbox" name="attr_show_spell_level_7" class="ds-show-spell-level" />
|
||
<div class="ds-spell-level">
|
||
<h4>7th Level Spells</h4>
|
||
<div class="ds-spell-list">
|
||
<label><input type="checkbox" name="attr_magic_user_spell7_abners_magic_sword" /> Abner's Magic
|
||
Sword</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell7_charm_plants" /> Charm Plants</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell7_delayed_blast_fireball" /> Delayed Blast
|
||
Fireball</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell7_duodimension" /> Duo-Dimension</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell7_invisibility_mass" /> Invisibility
|
||
(Mass)</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell7_koweewahs_grasping_hand" /> Koweewah's Grasping
|
||
Hand</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell7_limited_wish" /> Limited Wish</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell7_phase_door" /> Phase Door</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell7_power_word_stun" /> Power Word (Stun)</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell7_reverse_gravity" /> Reverse Gravity</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell7_simulacrum" /> Simulacrum</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell7_statue" /> Statue</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell7_sueddahts_instant_summons" /> Sueddaht's
|
||
Instant
|
||
Summons</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell7_summon_cacodemon" /> Summon Cacodemon</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell7_summon_monsters_v" /> Summon Monsters V</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell7_vanish" /> Vanish</label>
|
||
</div>
|
||
</div>
|
||
<input type="checkbox" name="attr_show_spell_level_8" class="ds-show-spell-level" />
|
||
<div class="ds-spell-level">
|
||
<h4>8th Level Spells</h4>
|
||
<div class="ds-spell-list">
|
||
<label><input type="checkbox" name="attr_magic_user_spell8_antipathy" /> Antipathy✦</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell8_cindaars_spell_resistance" /> Cindaar's Spell
|
||
Resistance</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell8_clone" /> Clone</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell8_glassysteel" /> Glassysteel</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell8_incendiary_cloud" /> Incendiary Cloud</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell8_koweewahs_clenched_fist" /> Koweewah's Clenched
|
||
Fist</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell8_mass_charm" /> Mass Charm</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell8_maze" /> Maze</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell8_mind_blank" /> Mind Blank</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell8_ools_irresistible_safety_dance" /> Ool's
|
||
Irresistible Safety Dance</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell8_permanency" /> Permanency</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell8_polymorph_any_object" /> Polymorph Any
|
||
Object</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell8_power_word_blind" /> Power Word (Blind)</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell8_summon_monsters_vi" /> Summon Monsters
|
||
VI</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell8_symbol" /> Symbol</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell8_sympathy" /> Sympathy†</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell8_trap_the_soul" /> Trap the Soul</label>
|
||
</div>
|
||
</div>
|
||
<input type="checkbox" name="attr_show_spell_level_9" class="ds-show-spell-level" />
|
||
<div class="ds-spell-level">
|
||
<h4>9th Level Spells</h4>
|
||
<div class="ds-spell-list">
|
||
<label><input type="checkbox" name="attr_magic_user_spell9_astral_spell" /> Astral Spell</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell9_freedom" /> Freedom†</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell9_gate" /> Gate</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell9_imprisonment" /> Imprisonment✦</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell9_koweewahs_crushing_hand" /> Koweewah's Crushing
|
||
Hand</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell9_meteor_swarm" /> Meteor Swarm</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell9_power_word_kill" /> Power Word (Kill)</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell9_prismatic_sphere" /> Prismatic Sphere</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell9_shape_change" /> Shape Change</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell9_summon_monsters_vii" /> Summon Monsters
|
||
VII</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell9_temporal_stasis" /> Temporal Stasis</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell9_time_stop" /> Time Stop</label>
|
||
<label><input type="checkbox" name="attr_magic_user_spell9_wish" /> Wish</label>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<input type="checkbox" name="attr_show_illusionist_prepared_spells_control"
|
||
class="ds-show-prepared-spells-control" style="display: none;" />
|
||
<div class="ds-prepared-spells-illusionist">
|
||
<div class="ds-spell-level-row">
|
||
<input type="checkbox" name="attr_show_spell_level_1" class="ds-show-spell-level" />
|
||
<div class="ds-spell-level">
|
||
<h4>1st Level Spells</h4>
|
||
<div class="ds-spell-list">
|
||
<label><input type="checkbox" name="attr_illusionist_spell1_audible_glamer" /> Audible Glamer</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell1_color_spray" /> Color Spray</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell1_dancing_lights" /> Dancing Lights</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell1_darkness_15_feet" /> Darkness (15
|
||
Feet)</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell1_darkness" /> Darkness†</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell1_detect_illusion" /> Detect Illusion</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell1_detect_invisibility" /> Detect
|
||
Invisibility</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell1_detect_magic" /> Detect Magic</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell1_eaiggards_wizard_vizard" /> Eaiggard's Wizard
|
||
Vizard</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell1_find_familiar" /> Find Familiar</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell1_gaze_reflection" /> Gaze Reflection</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell1_hypnotism" /> Hypnotism</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell1_light" /> Light✦</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell1_mazakalas_imperfect_panic" /> Mazakala's
|
||
Imperfect Panic</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell1_phantasmal_force" /> Phantasmal Force</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell1_read_magic_arcane" /> Read Magic
|
||
(Arcane)</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell1_secumunds_phantasmal_steed" /> Secumund's
|
||
Phantasmal Steed</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell1_wall_of_fog" /> Wall of Fog</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell1_write" /> Write</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell1_zggygs_phantasmal_mancatcher" /> Zggyg's
|
||
Phantasmal Man-Catcher</label>
|
||
</div>
|
||
</div>
|
||
<input type="checkbox" name="attr_show_spell_level_2" class="ds-show-spell-level" />
|
||
<div class="ds-spell-level">
|
||
<h4>2nd Level Spells</h4>
|
||
<div class="ds-spell-list">
|
||
<label><input type="checkbox" name="attr_illusionist_spell2_blindness" /> Blindness</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell2_blur" /> Blur</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell2_breath_of_the_dragon" /> Breath of the
|
||
Dragon</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell2_deafness" /> Deafness</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell2_dragon_mist" /> Dragon Mist</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell2_fog_cloud" /> Fog Cloud</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell2_hypnotic_pattern" /> Hypnotic Pattern</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell2_invisibility" /> Invisibility</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell2_magic_mouth" /> Magic Mouth</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell2_mikdaerrs_practical_tilt" /> Mikda-Err's
|
||
Practical Tilt</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell2_mirror_image" /> Mirror Image</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell2_misdirection" /> Misdirection</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell2_phantasmal_force_advanced" /> Phantasmal Force
|
||
(Advanced)</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell2_sleep" /> Sleep</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell2_ventriloquism" /> Ventriloquism</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell2_vitharias_vengeful_visage" /> Vitharia's
|
||
Vengeful Visage</label>
|
||
</div>
|
||
</div>
|
||
<input type="checkbox" name="attr_show_spell_level_3" class="ds-show-spell-level" />
|
||
<div class="ds-spell-level">
|
||
<h4>3rd Level Spells</h4>
|
||
<div class="ds-spell-list">
|
||
<label><input type="checkbox" name="attr_illusionist_spell3_continual_darkness" /> Continual
|
||
Darkness†</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell3_continual_light" /> Continual Light✦</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell3_dispel_phantasmal_force" /> Dispel Phantasmal
|
||
Force</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell3_fear" /> Fear</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell3_hallucinatory_forest" /> Hallucinatory
|
||
Forest</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell3_invisibility_10_feet" /> Invisibility (10
|
||
Feet)</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell3_nondetection" /> Non-detection</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell3_paralyzation" /> Paralyzation</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell3_rope_trick" /> Rope Trick</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell3_spectral_force" /> Spectral Force</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell3_suggestion" /> Suggestion</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell3_zurgosmels_heeded_echo" /> Zurgosmel's Heeded
|
||
Echo</label>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="ds-spell-level-row">
|
||
<input type="checkbox" name="attr_show_spell_level_4" class="ds-show-spell-level" />
|
||
<div class="ds-spell-level">
|
||
<h4>4th Level Spells</h4>
|
||
<div class="ds-spell-list">
|
||
<label><input type="checkbox" name="attr_illusionist_spell4_confusion" /> Confusion</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell4_emotion" /> Emotion</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell4_invisibility_advanced" /> Invisibility
|
||
(Advanced)</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell4_massmorph" /> Massmorph</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell4_minor_creation" /> Minor Creation</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell4_phantasmal_killer" /> Phantasmal
|
||
Killer</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell4_shadow_monsters_i" /> Shadow Monsters
|
||
I</label>
|
||
</div>
|
||
</div>
|
||
<input type="checkbox" name="attr_show_spell_level_5" class="ds-show-spell-level" />
|
||
<div class="ds-spell-level">
|
||
<h4>5th Level Spells</h4>
|
||
<div class="ds-spell-list">
|
||
<label><input type="checkbox" name="attr_illusionist_spell5_confusion_advanced" /> Confusion
|
||
(Advanced)</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell5_major_creation" /> Major Creation</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell5_maze" /> Maze</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell5_projected_image" /> Projected Image</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell5_shadow_door" /> Shadow Door</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell5_shadow_magic" /> Shadow Magic</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell5_shadow_monsters_ii" /> Shadow Monsters
|
||
II</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell5_summon_shadow" /> Summon Shadow</label>
|
||
</div>
|
||
</div>
|
||
<input type="checkbox" name="attr_show_spell_level_6" class="ds-show-spell-level" />
|
||
<div class="ds-spell-level">
|
||
<h4>6th Level Spells</h4>
|
||
<div class="ds-spell-list">
|
||
<label><input type="checkbox" name="attr_illusionist_spell6_false_sight" /> False Sight†</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell6_shadow_magic_advanced" /> Shadow Magic
|
||
(Advanced)</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell6_shadow_monsters_iii" /> Shadow Monsters
|
||
III</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell6_suggestion_mass" /> Suggestion (Mass)</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell6_summon_phantom_stalker" /> Summon Phantom
|
||
Stalker</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell6_true_sight" /> True Sight✦</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell6_veil" /> Veil</label>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="ds-spell-level-row">
|
||
<input type="checkbox" name="attr_show_spell_level_7" class="ds-show-spell-level" />
|
||
<div class="ds-spell-level">
|
||
<h4>7th Level Spells</h4>
|
||
<div class="ds-spell-list">
|
||
<label><input type="checkbox" name="attr_illusionist_spell7_astral_spell" /> Astral Spell</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell7_invisibility_mass" /> Invisibility
|
||
(Mass)</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell7_limited_wish" /> Limited Wish</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell7_prismatic_spray" /> Prismatic Spray</label>
|
||
<label><input type="checkbox" name="attr_illusionist_spell7_vision" /> Vision</label>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<input type="checkbox" name="attr_show_druid_prepared_spells_control" class="ds-show-prepared-spells-control"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-druid">
|
||
<div class="ds-spell-level-row">
|
||
<input type="checkbox" name="attr_show_spell_level_1" class="ds-show-spell-level" />
|
||
<div class="ds-spell-level">
|
||
<h4>1st Level Spells</h4>
|
||
<div class="ds-spell-list">
|
||
<label><input type="checkbox" name="attr_druid_spell1_charm_person_or_mammal" /> Charm Person or
|
||
Mammal</label>
|
||
<label><input type="checkbox" name="attr_druid_spell1_contaminate_water" /> Contaminate Water†</label>
|
||
<label><input type="checkbox" name="attr_druid_spell1_detect_magic" /> Detect Magic</label>
|
||
<label><input type="checkbox" name="attr_druid_spell1_detect_pits_and_snares" /> Detect Pits and
|
||
Snares</label>
|
||
<label><input type="checkbox" name="attr_druid_spell1_entangle" /> Entangle</label>
|
||
<label><input type="checkbox" name="attr_druid_spell1_face_of_the_forest" /> Face of the Forest</label>
|
||
<label><input type="checkbox" name="attr_druid_spell1_faerie_fire" /> Faerie Fire</label>
|
||
<label><input type="checkbox" name="attr_druid_spell1_fistfang" /> Fistfang</label>
|
||
<label><input type="checkbox" name="attr_druid_spell1_hernes_blessing" /> Herne's Blessing</label>
|
||
<label><input type="checkbox" name="attr_druid_spell1_invisibility_animal" /> Invisibility
|
||
(Animal)</label>
|
||
<label><input type="checkbox" name="attr_druid_spell1_locate_animal" /> Locate Animal</label>
|
||
<label><input type="checkbox" name="attr_druid_spell1_pass_without_trace" /> Pass without Trace</label>
|
||
<label><input type="checkbox" name="attr_druid_spell1_predict_weather" /> Predict Weather</label>
|
||
<label><input type="checkbox" name="attr_druid_spell1_purify_water" /> Purify Water✦</label>
|
||
<label><input type="checkbox" name="attr_druid_spell1_read_magic_divine" /> Read Magic (Divine)</label>
|
||
<label><input type="checkbox" name="attr_druid_spell1_shillelagh" /> Shillelagh</label>
|
||
<label><input type="checkbox" name="attr_druid_spell1_speak_with_animals" /> Speak with Animals</label>
|
||
<label><input type="checkbox" name="attr_druid_spell1_warg_companion" /> Warg Companion</label>
|
||
</div>
|
||
</div>
|
||
<input type="checkbox" name="attr_show_spell_level_2" class="ds-show-spell-level" />
|
||
<div class="ds-spell-level">
|
||
<h4>2nd Level Spells</h4>
|
||
<div class="ds-spell-list">
|
||
<label><input type="checkbox" name="attr_druid_spell2_barkskin" /> Barkskin</label>
|
||
<label><input type="checkbox" name="attr_druid_spell2_cause_light_wounds" /> Cause Light Wounds†</label>
|
||
<label><input type="checkbox" name="attr_druid_spell2_create_water" /> Create Water✦</label>
|
||
<label><input type="checkbox" name="attr_druid_spell2_cure_light_wounds" /> Cure Light Wounds✦</label>
|
||
<label><input type="checkbox" name="attr_druid_spell2_darkvision" /> Darkvision</label>
|
||
<label><input type="checkbox" name="attr_druid_spell2_destroy_water" /> Destroy Water†</label>
|
||
<label><input type="checkbox" name="attr_druid_spell2_dragon_mist" /> Dragon Mist</label>
|
||
<label><input type="checkbox" name="attr_druid_spell2_elderberry" /> Elderberry✦</label>
|
||
<label><input type="checkbox" name="attr_druid_spell2_feign_death" /> Feign Death</label>
|
||
<label><input type="checkbox" name="attr_druid_spell2_find_plants" /> Find Plants</label>
|
||
<label><input type="checkbox" name="attr_druid_spell2_flame_blade" /> Flame Blade</label>
|
||
<label><input type="checkbox" name="attr_druid_spell2_freeze_metal" /> Freeze Metal†</label>
|
||
<label><input type="checkbox" name="attr_druid_spell2_fungus_shape" /> Fungus Shape</label>
|
||
<label><input type="checkbox" name="attr_druid_spell2_heat_metal" /> Heat Metal✦</label>
|
||
<label><input type="checkbox" name="attr_druid_spell2_mist_of_the_glen" /> Mist of the Glen</label>
|
||
<label><input type="checkbox" name="attr_druid_spell2_moldskin" /> Moldskin</label>
|
||
<label><input type="checkbox" name="attr_druid_spell2_poisonberry" /> Poisonberry†</label>
|
||
<label><input type="checkbox" name="attr_druid_spell2_produce_flame" /> Produce Flame</label>
|
||
<label><input type="checkbox" name="attr_druid_spell2_ray_of_decay" /> Ray of Decay</label>
|
||
<label><input type="checkbox" name="attr_druid_spell2_snake_charm" /> Snake Charm</label>
|
||
<label><input type="checkbox" name="attr_druid_spell2_spore_cloud" /> Spore Cloud</label>
|
||
<label><input type="checkbox" name="attr_druid_spell2_warp_wood" /> Warp Wood</label>
|
||
</div>
|
||
</div>
|
||
|
||
<input type="checkbox" name="attr_show_spell_level_3" class="ds-show-spell-level" />
|
||
<div class="ds-spell-level">
|
||
<h4>3rd Level Spells</h4>
|
||
<div class="ds-spell-list">
|
||
<label><input type="checkbox" name="attr_druid_spell3_animate_plantbased_dead" /> Animate Plant-Based
|
||
Dead</label>
|
||
<label><input type="checkbox" name="attr_druid_spell3_call_lightning" /> Call Lightning</label>
|
||
<label><input type="checkbox" name="attr_druid_spell3_cause_disease" /> Cause Disease†</label>
|
||
<label><input type="checkbox" name="attr_druid_spell3_cause_moderate_wounds" /> Cause Moderate
|
||
Wounds†</label>
|
||
<label><input type="checkbox" name="attr_druid_spell3_cryotechnics" /> Cryotechnics†</label>
|
||
<label><input type="checkbox" name="attr_druid_spell3_cure_disease" /> Cure Disease✦</label>
|
||
<label><input type="checkbox" name="attr_druid_spell3_cure_moderate_wounds" /> Cure Moderate
|
||
Wounds✦</label>
|
||
<label><input type="checkbox" name="attr_druid_spell3_fire_trap" /> Fire Trap</label>
|
||
<label><input type="checkbox" name="attr_druid_spell3_flame_charm" /> Flame Charm</label>
|
||
<label><input type="checkbox" name="attr_druid_spell3_hold_animals" /> Hold Animals</label>
|
||
<label><input type="checkbox" name="attr_druid_spell3_insect_plague_lesser" /> Insect Plague
|
||
(Lesser)</label>
|
||
<label><input type="checkbox" name="attr_druid_spell3_mold_to_moldmen" /> Mold to Moldmen</label>
|
||
<label><input type="checkbox" name="attr_druid_spell3_neutralize_poison" /> Neutralize Poison✦</label>
|
||
<label><input type="checkbox" name="attr_druid_spell3_plant_growth" /> Plant Growth</label>
|
||
<label><input type="checkbox" name="attr_druid_spell3_poison" /> Poison†</label>
|
||
<label><input type="checkbox" name="attr_druid_spell3_protection_from_fire" /> Protection from
|
||
Fire</label>
|
||
<label><input type="checkbox" name="attr_druid_spell3_pyrotechnics" /> Pyrotechnics✦</label>
|
||
<label><input type="checkbox" name="attr_druid_spell3_snare" /> Snare</label>
|
||
<label><input type="checkbox" name="attr_druid_spell3_stone_shape" /> Stone Shape</label>
|
||
<label><input type="checkbox" name="attr_druid_spell3_tree_shape" /> Tree Shape</label>
|
||
<label><input type="checkbox" name="attr_druid_spell3_water_breathing" /> Water Breathing</label>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="ds-spell-level-row">
|
||
<input type="checkbox" name="attr_show_spell_level_4" class="ds-show-spell-level" />
|
||
<div class="ds-spell-level">
|
||
<h4>4th Level Spells</h4>
|
||
<div class="ds-spell-list">
|
||
<label><input type="checkbox" name="attr_druid_spell4_cause_serious_wounds" /> Cause Serious
|
||
Wounds†</label>
|
||
<label><input type="checkbox" name="attr_druid_spell4_control_temperature" /> Control Temperature</label>
|
||
<label><input type="checkbox" name="attr_druid_spell4_cure_serious_wounds" /> Cure Serious Wounds✦</label>
|
||
<label><input type="checkbox" name="attr_druid_spell4_dispel_magic" /> Dispel Magic</label>
|
||
<label><input type="checkbox" name="attr_druid_spell4_flash_freeze" /> Flash Freeze†</label>
|
||
<label><input type="checkbox" name="attr_druid_spell4_flash_inferno" /> Flash Inferno✦</label>
|
||
<label><input type="checkbox" name="attr_druid_spell4_hallucinatory_forest" /> Hallucinatory
|
||
Forest</label>
|
||
<label><input type="checkbox" name="attr_druid_spell4_hold_plant" /> Hold Plant</label>
|
||
<label><input type="checkbox" name="attr_druid_spell4_ice_storm" /> Ice Storm</label>
|
||
<label><input type="checkbox" name="attr_druid_spell4_lower_water" /> Lower Water</label>
|
||
<label><input type="checkbox" name="attr_druid_spell4_protection_from_lightning" /> Protection from
|
||
Lightning</label>
|
||
<label><input type="checkbox" name="attr_druid_spell4_speak_with_plants" /> Speak with Plants</label>
|
||
<label><input type="checkbox" name="attr_druid_spell4_summon_animals_i" /> Summon Animals I</label>
|
||
<label><input type="checkbox" name="attr_druid_spell4_summon_plants_and_funguses" /> Summon Plants and
|
||
Funguses</label>
|
||
<label><input type="checkbox" name="attr_druid_spell4_summon_woodland_beings" /> Summon Woodland
|
||
Beings</label>
|
||
<label><input type="checkbox" name="attr_druid_spell4_wyrd_refuge" /> Wyrd Refuge</label>
|
||
</div>
|
||
</div>
|
||
<input type="checkbox" name="attr_show_spell_level_5" class="ds-show-spell-level" />
|
||
<div class="ds-spell-level">
|
||
<h4>5th Level Spells</h4>
|
||
<div class="ds-spell-list">
|
||
<label><input type="checkbox" name="attr_druid_spell5_animal_diminution" /> Animal Diminution†</label>
|
||
<label><input type="checkbox" name="attr_druid_spell5_animal_growth" /> Animal Growth✦</label>
|
||
<label><input type="checkbox" name="attr_druid_spell5_antiplant_shell" /> Anti-Plant Shell</label>
|
||
<label><input type="checkbox" name="attr_druid_spell5_cause_critical_wounds" /> Cause Critical
|
||
Wounds†</label>
|
||
<label><input type="checkbox" name="attr_druid_spell5_charm_plants" /> Charm Plants</label>
|
||
<label><input type="checkbox" name="attr_druid_spell5_commune_with_nature" /> Commune with Nature</label>
|
||
<label><input type="checkbox" name="attr_druid_spell5_control_winds" /> Control Winds</label>
|
||
<label><input type="checkbox" name="attr_druid_spell5_cure_critical_wounds" /> Cure Critical
|
||
Wounds✦</label>
|
||
<label><input type="checkbox" name="attr_druid_spell5_insect_plague_greater" /> Insect Plague
|
||
(Greater)</label>
|
||
<label><input type="checkbox" name="attr_druid_spell5_part_water" /> Part Water</label>
|
||
<label><input type="checkbox" name="attr_druid_spell5_sticks_to_snakes" /> Sticks to Snakes</label>
|
||
<label><input type="checkbox" name="attr_druid_spell5_stone_tell" /> Stone Tell</label>
|
||
<label><input type="checkbox" name="attr_druid_spell5_summon_animals_ii" /> Summon Animals II</label>
|
||
<label><input type="checkbox" name="attr_druid_spell5_transmute_mud_to_rock" /> Transmute Mud to
|
||
Rock†</label>
|
||
<label><input type="checkbox" name="attr_druid_spell5_transmute_rock_to_mud" /> Transmute Rock to
|
||
Mud✦</label>
|
||
<label><input type="checkbox" name="attr_druid_spell5_wall_of_fire" /> Wall of Fire</label>
|
||
</div>
|
||
</div>
|
||
<input type="checkbox" name="attr_show_spell_level_6" class="ds-show-spell-level" />
|
||
<div class="ds-spell-level">
|
||
<h4>6th Level Spells</h4>
|
||
<div class="ds-spell-list">
|
||
<label><input type="checkbox" name="attr_druid_spell6_antianimal_shell" /> Anti-Animal Shell</label>
|
||
<label><input type="checkbox" name="attr_druid_spell6_conjure_fire_elemental" /> Conjure Fire
|
||
Elemental</label>
|
||
<label><input type="checkbox" name="attr_druid_spell6_control_weather" /> Control Weather</label>
|
||
<label><input type="checkbox" name="attr_druid_spell6_feeblemind" /> Feeblemind</label>
|
||
<label><input type="checkbox" name="attr_druid_spell6_fire_seeds" /> Fire Seeds</label>
|
||
<label><input type="checkbox" name="attr_druid_spell6_shield_of_the_sylvan" /> Shield of the
|
||
Sylvan</label>
|
||
<label><input type="checkbox" name="attr_druid_spell6_summon_animals_iii" /> Summon Animals III</label>
|
||
<label><input type="checkbox" name="attr_druid_spell6_transport_via_plants" /> Transport via
|
||
Plants</label>
|
||
<label><input type="checkbox" name="attr_druid_spell6_wall_of_thorns" /> Wall of Thorns</label>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="ds-spell-level-row">
|
||
<input type="checkbox" name="attr_show_spell_level_7" class="ds-show-spell-level" />
|
||
<div class="ds-spell-level">
|
||
<h4>7th Level Spells</h4>
|
||
<div class="ds-spell-list">
|
||
<label><input type="checkbox" name="attr_druid_spell7_animate_rock" /> Animate Rock</label>
|
||
<label><input type="checkbox" name="attr_druid_spell7_chariot_of_fire" /> Chariot of Fire</label>
|
||
<label><input type="checkbox" name="attr_druid_spell7_confusion" /> Confusion</label>
|
||
<label><input type="checkbox" name="attr_druid_spell7_conjure_earth_elemental" /> Conjure Earth
|
||
Elemental</label>
|
||
<label><input type="checkbox" name="attr_druid_spell7_control_weather_advanced" /> Control Weather
|
||
(Advanced)</label>
|
||
<label><input type="checkbox" name="attr_druid_spell7_creeping_doom" /> Creeping Doom</label>
|
||
<label><input type="checkbox" name="attr_druid_spell7_finger_of_death" /> Finger of Death</label>
|
||
<label><input type="checkbox" name="attr_druid_spell7_fire_storm" /> Fire Storm✦</label>
|
||
<label><input type="checkbox" name="attr_druid_spell7_quench_fire" /> Quench Fire†</label>
|
||
<label><input type="checkbox" name="attr_druid_spell7_reincarnate" /> Reincarnate</label>
|
||
<label><input type="checkbox" name="attr_druid_spell7_summon_treant" /> Summon Treant</label>
|
||
<label><input type="checkbox" name="attr_druid_spell7_transmute_metal_to_wood" /> Transmute
|
||
Metal to Wood✦</label>
|
||
<label><input type="checkbox" name="attr_druid_spell7_transmute_wood_to_metal" /> Transmute
|
||
Wood to Metal†</label>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<input type="checkbox" name="attr_show_cleric_prepared_spells_control" class="ds-show-prepared-spells-control"
|
||
style="display: none;" />
|
||
<div class="ds-prepared-spells-cleric">
|
||
<div class="ds-spell-level-row">
|
||
<input type="checkbox" name="attr_show_spell_level_1" class="ds-show-spell-level" />
|
||
<div class="ds-spell-level">
|
||
<h4>1st Level Spells</h4>
|
||
<div class="ds-spell-list">
|
||
<label><input type="checkbox" name="attr_cleric_spell1_bless" /> Bless✦</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell1_blight" /> Blight†</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell1_cause_fear" /> Cause Fear†</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell1_cause_light_wounds" /> Cause Light Wounds†</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell1_command" /> Command</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell1_create_water" /> Create Water✦</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell1_cure_light_wounds" /> Cure Light Wounds✦</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell1_darkness" /> Darkness†</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell1_detect_evil" /> Detect Evil✦</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell1_detect_good" /> Detect Good†</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell1_detect_magic" /> Detect Magic</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell1_destroy_water" /> Destroy Water†</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell1_light" /> Light✦</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell1_protection_from_evil" /> Protection from
|
||
Evil✦</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell1_protection_from_good" /> Protection from
|
||
Good†</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell1_purify_food_drink" /> Purify Food & Drink✦</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell1_putrefy_food_water" /> Putrefy Food &
|
||
Water†</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell1_read_magic" /> Read Magic (Divine)</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell1_remove_fear" /> Remove Fear✦</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell1_resist_cold" /> Resist Cold</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell1_sanctuary" /> Sanctuary</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell1_spiritual_armor" /> Spiritual Armor</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell1_stonebeard" /> Stonebeard</label>
|
||
</div>
|
||
</div>
|
||
<input type="checkbox" name="attr_show_spell_level_2" class="ds-show-spell-level" />
|
||
<div class="ds-spell-level">
|
||
<h4>2nd Level Spells</h4>
|
||
<div class="ds-spell-list">
|
||
<label><input type="checkbox" name="attr_cleric_spell2_augury" /> Augury</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell2_cause_moderate_wounds" /> Cause Moderate
|
||
Wounds†</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell2_continual_flame" /> Continual Flame</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell2_cure_moderate_wounds" /> Cure Moderate
|
||
Wounds✦</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell2_detect_charm" /> Detect Charm</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell2_find_traps" /> Find Traps</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell2_hold_person" /> Hold Person</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell2_know_alignment" /> Know Alignment</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell2_remove_paralysis" /> Remove Paralysis</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell2_resist_fire" /> Resist Fire</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell2_sacred_chant" /> Sacred Chant</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell2_silence" /> Silence (15 Feet)</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell2_slow_poison" /> Slow Poison</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell2_snake_charm" /> Snake Charm</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell2_speak_with_animals" /> Speak with Animals</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell2_spiritual_hammer" /> Spiritual Hammer</label>
|
||
</div>
|
||
</div>
|
||
<input type="checkbox" name="attr_show_spell_level_3" class="ds-show-spell-level" />
|
||
<div class="ds-spell-level">
|
||
<h4>3rd Level Spells</h4>
|
||
<div class="ds-spell-list">
|
||
<label><input type="checkbox" name="attr_cleric_spell3_animate_dead" /> Animate Dead†</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell3_animate_statue" /> Animate Statue</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell3_bestow_curse" /> Bestow Curse†</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell3_cause_blindness" /> Cause Blindness†</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell3_cause_disease" /> Cause Disease†</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell3_cause_serious_wounds" /> Cause Serious
|
||
Wounds†</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell3_continual_darkness" /> Continual Darkness†</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell3_continual_light" /> Continual Light✦</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell3_create_food_water" /> Create Food & Water✦</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell3_cure_blindness" /> Cure Blindness✦</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell3_cure_disease" /> Cure Disease✦</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell3_cure_serious_wounds" /> Cure Serious
|
||
Wounds✦</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell3_destroy_food_water" /> Destroy Food &
|
||
Water†</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell3_dispel_magic" /> Dispel Magic</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell3_feign_death" /> Feign Death</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell3_glyph_of_warding" /> Glyph of Warding</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell3_holy_strike" /> Holy Strike</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell3_locate_object" /> Locate Object✦</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell3_obscure_object" /> Obscure Object†</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell3_prayer" /> Prayer</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell3_remove_curse" /> Remove Curse✦</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell3_speak_with_dead" /> Speak with Dead</label>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="ds-spell-level-row">
|
||
<input type="checkbox" name="attr_show_spell_level_4" class="ds-show-spell-level" />
|
||
<div class="ds-spell-level">
|
||
<h4>4th Level Spells</h4>
|
||
<div class="ds-spell-list">
|
||
<label><input type="checkbox" name="attr_cleric_spell4_cause_critical_wounds" /> Cause Critical
|
||
Wounds†</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell4_cure_critical_wounds" /> Cure Critical
|
||
Wounds✦</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell4_detect_lie" /> Detect Lie</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell4_divination" /> Divination</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell4_exorcise" /> Exorcise</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell4_flesh_of_fire" /> Flesh of Fire</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell4_garble" /> Garble†</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell4_imperceptible_lie" /> Imperceptible Lie†</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell4_lower_water" /> Lower Water</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell4_neutralize_poison" /> Neutralize Poison</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell4_protection_from_evil_10ft" /> Protection from Evil
|
||
(10 Ft)✦</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell4_protection_from_good_10ft" /> Protection from
|
||
Good (10 Ft)†</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell4_speak_with_plants" /> Speak with Plants</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell4_sticks_to_snakes" /> Sticks to Snakes</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell4_tongues" /> Tongues✦</label>
|
||
</div>
|
||
</div>
|
||
<input type="checkbox" name="attr_show_spell_level_5" class="ds-show-spell-level" />
|
||
<div class="ds-spell-level">
|
||
<h4>5th Level Spells</h4>
|
||
<div class="ds-spell-list">
|
||
<label><input type="checkbox" name="attr_cleric_spell5_atonement" /> Atonement</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell5_commune" /> Commune</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell5_dispel_evil" /> Dispel Evil✦</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell5_dispel_good" /> Dispel Good†</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell5_eternal_demise" /> Eternal Demise†</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell5_false_sight" /> False Sight†</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell5_flame_strike" /> Flame Strike</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell5_insect_plague" /> Insect Plague (Greater)</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell5_plane_shift" /> Plane Shift</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell5_quest" /> Quest✦</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell5_raise_dead" /> Raise Dead✦</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell5_remove_quest" /> Remove Quest†</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell5_true_sight" /> True Sight✦</label>
|
||
</div>
|
||
</div>
|
||
<input type="checkbox" name="attr_show_spell_level_6" class="ds-show-spell-level" />
|
||
<div class="ds-spell-level">
|
||
<h4>6th Level Spells</h4>
|
||
<div class="ds-spell-list">
|
||
<label><input type="checkbox" name="attr_cleric_spell6_animate_object" /> Animate Object</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell6_blade_barrier" /> Blade Barrier</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell6_conjure_animals" /> Conjure Animals</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell6_find_the_path" /> Find the Path✦</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell6_get_lost" /> Get Lost†</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell6_harm" /> Harm†</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell6_heal" /> Heal✦</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell6_part_water" /> Part Water</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell6_speak_with_monsters" /> Speak with Monsters</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell6_stone_tell" /> Stone Tell</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell6_summon_aerial_servant" /> Summon Aerial
|
||
Servant</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell6_word_of_recall" /> Word of Recall</label>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="ds-spell-level-row">
|
||
<input type="checkbox" name="attr_show_spell_level_7" class="ds-show-spell-level" />
|
||
<div class="ds-spell-level">
|
||
<h4>7th Level Spells</h4>
|
||
<div class="ds-spell-list">
|
||
<label><input type="checkbox" name="attr_cleric_spell7_astral_spell" /> Astral Spell</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell7_control_weather" /> Control Weather</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell7_destruction" /> Destruction†</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell7_earthquake" /> Earthquake</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell7_gate" /> Gate</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell7_holy_word" /> Holy Word✦</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell7_necrosis" /> Necrosis†</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell7_regenerate" /> Regenerate✦</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell7_restoration" /> Restoration</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell7_resurrection" /> Resurrection✦</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell7_symbol" /> Symbol</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell7_unholy_word" /> Unholy Word†</label>
|
||
<label><input type="checkbox" name="attr_cleric_spell7_wind_walk" /> Wind Walk</label>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<button type="action" class="ds-done-preparing-button" name="act_done_preparing">Done Preparing</button>
|
||
</div>
|
||
</div>
|
||
</template>
|
||
|
||
<script type="text/worker">
|
||
on("change:strength", function () {
|
||
getAttrs(["strength"], function (values) {
|
||
let str = parseInt(values.strength) || 0;
|
||
let strBonus = str < 4 ? -3 : str < 6 ? -2 : str < 9 ? -1 : str < 13 ? 0 : str < 16 ? 1 : str < 18 ? 2 : 3;
|
||
setAttrs({
|
||
"str_melee_mod": strBonus,
|
||
"str_force_door": strBonus
|
||
});
|
||
});
|
||
});
|
||
on("change:dexterity", function () {
|
||
getAttrs(["dexterity"], function (values) {
|
||
let dex = parseInt(values.dexterity) || 0;
|
||
let dexBonus = dex < 4 ? -3 : dex < 6 ? -2 : dex < 9 ? -1 : dex < 13 ? 0 : dex < 16 ? 1 : dex < 18 ? 2 : 3;
|
||
setAttrs({
|
||
"dex_missile": dexBonus,
|
||
"dex_armor": -dexBonus
|
||
});
|
||
});
|
||
});
|
||
on("change:constitution", function () {
|
||
getAttrs(["constitution"], function (values) {
|
||
let con = parseInt(values.constitution) || 0;
|
||
let conBonus = con < 4 ? -3 : con < 6 ? -2 : con < 9 ? -1 : con < 13 ? 0 : con < 16 ? 1 : con < 18 ? 2 : 3;
|
||
setAttrs({
|
||
"con_hp": conBonus
|
||
});
|
||
});
|
||
});
|
||
on("change:charisma", function () {
|
||
getAttrs(["charisma"], function (values) {
|
||
let cha = parseInt(values.charisma) || 0;
|
||
let henchmen = cha < 4 ? 0 : cha < 6 ? 1 : cha < 9 ? 2 : cha < 13 ? 3 : cha < 16 ? 4 : cha < 18 ? 5 : 6;
|
||
let morale = cha < 4 ? 4 : cha < 6 ? 5 : cha < 9 ? 6 : cha < 13 ? 7 : cha < 16 ? 8 : cha < 18 ? 9 : 10;
|
||
setAttrs({
|
||
"cha_henchmen": henchmen,
|
||
"cha_morale": morale
|
||
});
|
||
});
|
||
});
|
||
on("change:intelligence", function () {
|
||
getAttrs(["intelligence"], function (values) {
|
||
let int = parseInt(values.intelligence) || 0;
|
||
let languages = int < 4 ? -3 : int < 6 ? -2 : int < 9 ? -1 : int < 13 ? 0 : int < 16 ? 1 : int < 18 ? 2 : 3;
|
||
setAttrs({
|
||
"int_languages": languages
|
||
});
|
||
});
|
||
});
|
||
on("change:wisdom", function () {
|
||
getAttrs(["wisdom"], function (values) {
|
||
let wis = parseInt(values.wisdom) || 0;
|
||
let magicSave = wis < 4 ? -3 : wis < 6 ? -2 : wis < 9 ? -1 : wis < 13 ? 0 : wis < 16 ? 1 : wis < 18 ? 2 : 3;
|
||
setAttrs({
|
||
"wis_magic_save": magicSave
|
||
});
|
||
});
|
||
});
|
||
on("change:class change:level", function () {
|
||
getAttrs(["class", "level", "save_breath_race_bonus", "save_death_race_bonus", "save_stone_race_bonus", "save_wand_race_bonus", "save_spell_race_bonus"], function (values) {
|
||
let classType = values.class;
|
||
let level = parseInt(values.level) || 1;
|
||
let bab = 0;
|
||
let hd = "d8";
|
||
let titles = [];
|
||
let saves = [16, 14, 15, 16, 17];
|
||
let saveRaceMods = [
|
||
parseInt(values.save_breath_race_bonus) || 0,
|
||
parseInt(values.save_death_race_bonus) || 0,
|
||
parseInt(values.save_stone_race_bonus) || 0,
|
||
parseInt(values.save_wand_race_bonus) || 0,
|
||
parseInt(values.save_spell_race_bonus) || 0
|
||
];
|
||
if (classType === "Cleric" || classType === "Druid" || classType == "Monk") {
|
||
bab = level < 4 ? 0 : level < 5 ? 1 : level < 7 ? 2 : level < 10 ? 3 : 4;
|
||
hd = "d8";
|
||
saves = level < 4 ? [16, 10, 13, 14, 15] : level < 7 ? [15, 9, 12, 13, 14] : level < 10 ? [13, 7, 10, 11, 12] : level < 13 ? [12, 6, 9, 10, 11] : level < 16 ? [11, 5, 8, 9, 10] : level < 19 ? [10, 4, 7, 8, 9] : [8, 2, 5, 6, 7];
|
||
if (classType === "Cleric") {
|
||
titles = ["Acolyte", "Acolyte", "Devotee", "Holy Man", "Zealot", "Priest", "Crusader", "Templar", "Ecclesiarch", "Bishop", "High Priest"];
|
||
} else if (classType === "Druid") {
|
||
titles = ["Soothsayer", "Soothsayer", "Ovate of Spring", "Ovate of Summer", "Ovate of Autumn", "Ovate of Winter", "Ovate of Nature", "Voice of Nature", "Hand of Nature", "Wrath of Nature", "Archdruid"];
|
||
} else if (classType === "Monk") {
|
||
titles = ["Postulant", "Postulant", "Mendicant", "Brother", "Pilgrim", "Friar", "Monastic", "Cenobite", "Ascetic", "Prelate", "Abbot"];
|
||
}
|
||
} else if (classType === "Fighter" || classType === "Paladin" || classType === "Ranger" || classType === "Barbarian") {
|
||
bab = Math.max(0, level - 2);
|
||
hd = "d10";
|
||
saves = level < 1 ? [17, 16, 17, 18, 19] : level < 3 ? [16, 14, 15, 16, 17] : level < 5 ? [15, 13, 14, 15, 16] : level < 7 ? [13, 11, 12, 13, 14] : level < 9 ? [12, 10, 11, 12, 13] : level < 11 ? [11, 9, 10, 11, 12] : level < 13 ? [8, 7, 8, 9, 10] : level < 15 ? [5, 5, 6, 7, 8] : level < 17 ? [4, 4, 5, 6, 7] : [4, 3, 4, 5, 6];
|
||
if (classType === "Fighter") {
|
||
titles = ["Swordsman", "Swordsman", "Freebooter", "Sellsword", "Veteran", "Warrior", "Myrmidon", "Axe Master", "Battle Master", "Champion", "Warlord"];
|
||
} else if (classType === "Barbarian") {
|
||
titles = ["Brawler", "Brawler", "Pillager", "Marauder", "Reaver", "Berserker", "Ravager", "Axe Master", "Battle Master", "Battle Lord", "Barbarian King"];
|
||
// Barbarians get save bonuses
|
||
let barbSaveMods = [2, 4, 3, 3, 2];
|
||
saves = saves.map((save, index) => save - barbSaveMods[index]);
|
||
} else if (classType === "Paladin") {
|
||
titles = ["Squire", "Squire", "Cavalier", "Knight-Errant", "Knight-Vigilant", "Knight-Banneret", "Knight-Gallant", "Knight-Crusader", "Knight-Templar", "Knight-Protector", "Knight of the Rose"];
|
||
// Paladins get +2 to all saves
|
||
saves = saves.map(save => save - 2);
|
||
} else if (classType === "Ranger") {
|
||
titles = ["Hunter", "Hunter", "Wanderer", "Rover", "Scout", "Gadabout", "Strider", "Master Scout", "Outrider", "Pathfinder", "Ranger Lord"];
|
||
}
|
||
} else if (classType === "Magic-User" || classType === "Illusionist") {
|
||
bab = level < 4 ? 0 : level < 8 ? 1 : 2;
|
||
hd = "d4";
|
||
saves = level < 6 ? [15, 14, 13, 11, 12] : level < 11 ? [13, 13, 11, 9, 10] : level < 16 ? [11, 11, 9, 7, 8] : level < 21 ? [9, 10, 7, 5, 6] : [7, 8, 5, 3, 4];
|
||
if (classType === "Magic-User") {
|
||
titles = ["Channeler", "Channeler", "Spellweaver", "Magician", "Enchanter", "Mage", "Summoner", "Magister", "Warlock", "Archmage", "Grand Mage"];
|
||
} else if (classType === "Illusionist") {
|
||
titles = ["Prestidigitator", "Prestidigitator", "Charmer", "Dazzler", "Glamourer", "Hypnotist", "Illusioneer", "Beguiler", "Phantasmalist", "Thaumaturge", "Arch Beguiler"];
|
||
}
|
||
} else if (classType === "Thief" || classType === "Assassin") {
|
||
bab = level < 4 ? 0 : level < 6 ? 1 : level < 8 ? 2 : level < 10 ? 3 : 4;
|
||
hd = "d6";
|
||
saves = level < 5 ? [16, 13, 12, 14, 15] : level < 9 ? [15, 12, 11, 12, 13] : level < 13 ? [14, 11, 10, 10, 11] : level < 17 ? [12, 10, 9, 8, 9] : [11,9,8,6,7];
|
||
if (classType === "Thief") {
|
||
titles = ["Thug", "Thug", "Knave", "Purse-Cutter", "Charlatan", "Blackguard", "Vagabond", "Sneak-Thief", "Burglar", "Master Thief", "Guildmaster"];
|
||
} else if (classType === "Assassin") {
|
||
titles = ["Throat-Cutter", "Throat-Cutter", "Garotteur", "Murderer", "Backbiter", "Master Garotteur", "Silent Killer", "Death Dealer", "Slayer", "Assassin", "Guildmaster"];
|
||
}
|
||
}
|
||
setAttrs({
|
||
"attack_bonus": bab,
|
||
"hit_die": hd,
|
||
"title": titles[Math.min(level, 10)] || "",
|
||
"save_breath": saves[0] - saveRaceMods[0],
|
||
"save_death": saves[1] - saveRaceMods[1],
|
||
"save_stone": saves[2] - saveRaceMods[2],
|
||
"save_wand": saves[3] - saveRaceMods[3],
|
||
"save_spell": saves[4] - saveRaceMods[4]
|
||
});
|
||
});
|
||
});
|
||
on("change:class change:strength change:intelligence change:wisdom change:dexterity change:constitution change:charisma", function () {
|
||
getAttrs(["class", "strength", "intelligence", "wisdom", "dexterity", "constitution", "charisma"], function (values) {
|
||
const classType = values.class;
|
||
|
||
// Determine prime attribute based on class
|
||
let primeAttributes = [];
|
||
|
||
switch (classType) {
|
||
case "Cleric":
|
||
primeAttributes = ["wisdom"];
|
||
break;
|
||
case "Druid":
|
||
primeAttributes = ["wisdom", "charisma"];
|
||
break;
|
||
case "Monk":
|
||
primeAttributes = ["wisdom", "intelligence"];
|
||
break;
|
||
case "Fighter":
|
||
primeAttributes = ["strength"];
|
||
break;
|
||
case "Barbarian":
|
||
primeAttributes = ["strength", "constitution"];
|
||
break;
|
||
case "Paladin":
|
||
primeAttributes = ["strength", "charisma"];
|
||
break;
|
||
case "Ranger":
|
||
primeAttributes = ["strength", "intelligence", "wisdom"];
|
||
break;
|
||
case "Magic-User":
|
||
primeAttributes = ["intelligence"];
|
||
break;
|
||
case "Illusionist":
|
||
primeAttributes = ["intelligence"];
|
||
break;
|
||
case "Thief":
|
||
primeAttributes = ["dexterity"];
|
||
break;
|
||
case "Assassin":
|
||
primeAttributes = ["dexterity", "intelligence"];
|
||
break;
|
||
default:
|
||
primeAttributes = [];
|
||
}
|
||
|
||
// Calculate XP bonus based on prime attribute scores
|
||
let compoundXP = 1.0;
|
||
primeAttributes.forEach(primeAttribute => {
|
||
const primeScore = parseInt(values[primeAttribute]) || 0;
|
||
if (primeScore >= 16) {
|
||
compoundXP *= 1.1;
|
||
} else if (primeScore >= 13) {
|
||
compoundXP *= 1.05;
|
||
} else if (primeScore <= 8) {
|
||
compoundXP *= 0.95;
|
||
} else if (primeScore <= 5) {
|
||
compoundXP *= 0.9;
|
||
}
|
||
});
|
||
setAttrs({
|
||
"xp_bonus": Math.round(Number.parseFloat(Number.parseFloat((compoundXP - 1) * 100).toFixed(1)))
|
||
});
|
||
});
|
||
});
|
||
on("change:race", function (eventInfo) {
|
||
getAttrs(["race", "save_breath", "save_death", "save_spell", "save_stone", "save_wand", "save_breath_race_bonus", "save_death_race_bonus", "save_spell_race_bonus", "save_stone_race_bonus", "save_wand_race_bonus"], function (values) {
|
||
let moveRate = 40; // Default human move rate
|
||
let missileMod = 0;
|
||
let breathBonus = parseInt(values.save_breath_race_bonus) || 0;
|
||
let deathBonus = parseInt(values.save_death_race_bonus) || 0;
|
||
let stoneBonus = parseInt(values.save_stone_race_bonus) || 0;
|
||
let wandBonus = parseInt(values.save_wand_race_bonus) || 0;
|
||
let spellBonus = parseInt(values.save_spell_race_bonus) || 0;
|
||
let breath = (parseInt(values.save_breath) || 0) + breathBonus;
|
||
let death = (parseInt(values.save_death) || 0) + deathBonus;
|
||
let stone = (parseInt(values.save_stone) || 0) + stoneBonus;
|
||
let wand = (parseInt(values.save_wand) || 0) + wandBonus;
|
||
let spell = (parseInt(values.save_spell) || 0) + spellBonus;
|
||
breathBonus = 0;
|
||
deathBonus = 0;
|
||
stoneBonus = 0;
|
||
wandBonus = 0;
|
||
spellBonus = 0;
|
||
const race = values.race;
|
||
// Set move rate and bonuses based on race
|
||
switch (race) {
|
||
case "Human":
|
||
moveRate = 40;
|
||
break;
|
||
case "Cyclopsman":
|
||
moveRate = 40;
|
||
missileMod = -2;
|
||
break;
|
||
case "Dwarf":
|
||
moveRate = 20;
|
||
breathBonus = 2;
|
||
deathBonus = 4;
|
||
stoneBonus = 4;
|
||
wandBonus = 3;
|
||
spellBonus = 4;
|
||
break;
|
||
case "Elf":
|
||
moveRate = 40;
|
||
break;
|
||
case "Gnome":
|
||
moveRate = 20;
|
||
breathBonus = 2;
|
||
deathBonus = 4;
|
||
stoneBonus = 4;
|
||
wandBonus = 1;
|
||
spellBonus = 2;
|
||
break;
|
||
case "Halfling":
|
||
moveRate = 20;
|
||
breathBonus = 2;
|
||
deathBonus = 4;
|
||
stoneBonus = 4;
|
||
wandBonus = 3;
|
||
spellBonus = 4;
|
||
break;
|
||
case "Half-Elf":
|
||
moveRate = 40;
|
||
break;
|
||
case "Half-Orc":
|
||
moveRate = 40;
|
||
break;
|
||
default:
|
||
moveRate = 40; // Default to human move rate
|
||
}
|
||
setAttrs({
|
||
"move": moveRate,
|
||
"missile_race_mod": missileMod,
|
||
"save_breath": breath - breathBonus,
|
||
"save_breath_race_bonus": breathBonus,
|
||
"save_death": death - deathBonus,
|
||
"save_death_race_bonus": deathBonus,
|
||
"save_stone": stone - stoneBonus,
|
||
"save_stone_race_bonus": stoneBonus,
|
||
"save_wand": wand - wandBonus,
|
||
"save_wand_race_bonus": wandBonus,
|
||
"save_spell": spell - spellBonus,
|
||
"save_spell_race_bonus": spellBonus
|
||
});
|
||
});
|
||
});
|
||
on("change:class change:level", function () {
|
||
getAttrs(["class", "level"], function (values) {
|
||
const classType = values.class;
|
||
const level = parseInt(values.level) || 1;
|
||
|
||
// Show thief skills only for Thief and Assassin classes (Assassin at 3+)
|
||
const showThiefSkills = classType === "Thief" || (classType === "Assassin" && level >= 3);
|
||
|
||
// Calculate effective thief level for skill lookup
|
||
let effectiveLevel = 0;
|
||
if (classType === "Thief") {
|
||
effectiveLevel = level;
|
||
} else if (classType === "Assassin" && level >= 3) {
|
||
effectiveLevel = Math.max(1, level - 2); // Assassins are 2 levels behind
|
||
}
|
||
|
||
// Lookup tables for thief skills
|
||
const skillLevels = {
|
||
pick_pockets: [35, 40, 45, 50, 55, 60, 65, 70, 80, 90, 99, 99, 99, 99, 99],
|
||
open_locks: [35, 40, 45, 50, 55, 60, 65, 70, 75, 80, 85, 90, 95, 99, 99],
|
||
find_remove_traps: [35, 37, 40, 45, 50, 55, 60, 65, 70, 75, 80, 85, 90, 95, 99],
|
||
move_silently: [33, 37, 40, 43, 50, 60, 70, 80, 90, 99, 99, 99, 99, 99, 99],
|
||
hide_shadows: [25, 27, 30, 35, 37, 40, 50, 60, 70, 80, 90, 99, 99, 99, 99],
|
||
climb_walls: [85, 86, 87, 88, 90, 92, 94, 96, 98, 99, 99, 99, 99, 99, 99],
|
||
hear_noise: [2, 2, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5],
|
||
appraise: [2, 2, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5]
|
||
};
|
||
|
||
// If showing thief skills, set the values
|
||
if (showThiefSkills) {
|
||
const idx = Math.min(effectiveLevel - 1, 14); // Array is 0-based, cap at 15th level
|
||
const updates = {
|
||
"show_thief_skills": "on",
|
||
"base_pick_pockets": skillLevels.pick_pockets[idx],
|
||
"base_open_locks": skillLevels.open_locks[idx],
|
||
"base_find_remove_traps": skillLevels.find_remove_traps[idx],
|
||
"base_move_silently": skillLevels.move_silently[idx],
|
||
"base_hide_shadows": skillLevels.hide_shadows[idx],
|
||
"base_climb_walls": skillLevels.climb_walls[idx],
|
||
"base_hear_noise": skillLevels.hear_noise[idx],
|
||
"base_appraise": skillLevels.appraise[idx]
|
||
};
|
||
setAttrs(updates);
|
||
} else {
|
||
// Hide thief skills section
|
||
setAttrs({
|
||
"show_thief_skills": "0"
|
||
});
|
||
}
|
||
|
||
// Show turn undead only for Clerics
|
||
const showTurnUndead = classType === "Cleric" ||
|
||
((classType === "Paladin" || classType === "Monk") && level >= 3);
|
||
|
||
setAttrs({
|
||
"show_thief_skills": showThiefSkills ? "on" : "0",
|
||
"show_turn_undead": showTurnUndead ? "on" : "0"
|
||
});
|
||
|
||
// Show prepared spells and spell prep based on class
|
||
switch (classType) {
|
||
case "Cleric":
|
||
case "Paladin":
|
||
case "Monk":
|
||
setAttrs({
|
||
"show_cleric_prepared_spells_control": "on",
|
||
"show_druid_prepared_spells_control": "0",
|
||
"show_magic_user_prepared_spells_control": "0",
|
||
"show_illusionist_prepared_spells_control": "0"
|
||
});
|
||
break;
|
||
case "Druid":
|
||
case "Ranger":
|
||
setAttrs({
|
||
"show_druid_prepared_spells_control": "on",
|
||
"show_cleric_prepared_spells_control": "0",
|
||
"show_magic_user_prepared_spells_control": "0",
|
||
"show_illusionist_prepared_spells_control": "0"
|
||
});
|
||
break;
|
||
case "Magic-User":
|
||
setAttrs({
|
||
"show_magic_user_prepared_spells_control": "on",
|
||
"show_cleric_prepared_spells_control": "0",
|
||
"show_druid_prepared_spells_control": "0",
|
||
"show_illusionist_prepared_spells_control": "0"
|
||
});
|
||
break;
|
||
case "Illusionist":
|
||
setAttrs({
|
||
"show_illusionist_prepared_spells_control": "on",
|
||
"show_cleric_prepared_spells_control": "0",
|
||
"show_druid_prepared_spells_control": "0",
|
||
"show_magic_user_prepared_spells_control": "0"
|
||
});
|
||
break;
|
||
default:
|
||
setAttrs({
|
||
"show_cleric_prepared_spells_control": "0",
|
||
"show_druid_prepared_spells_control": "0",
|
||
"show_magic_user_prepared_spells_control": "0",
|
||
"show_illusionist_prepared_spells_control": "0"
|
||
});
|
||
break;
|
||
}
|
||
});
|
||
});
|
||
on("change:race change:base_pick_pockets change:base_open_locks change:base_find_remove_traps change:base_move_silently change:base_hide_shadows change:base_climb_walls change:base_hear_noise change:base_appraise", function() {
|
||
getAttrs(["race"], function(values) {
|
||
const race = values.race;
|
||
let updates = {
|
||
// Initialize all racial bonuses to 0
|
||
"racial_pick_pockets": 0,
|
||
"racial_open_locks": 0,
|
||
"racial_find_remove_traps": 0,
|
||
"racial_move_silently": 0,
|
||
"racial_hide_shadows": 0,
|
||
"racial_climb_walls": 0,
|
||
"racial_hear_noise": 0,
|
||
"racial_appraise": 0
|
||
};
|
||
|
||
// Set racial bonuses based on race
|
||
switch (race) {
|
||
case "Dwarf":
|
||
updates.racial_pick_pockets = 7;
|
||
updates.racial_find_remove_traps = 10;
|
||
updates.racial_climb_walls = -10;
|
||
break;
|
||
case "Elf":
|
||
updates.racial_pick_pockets = 5;
|
||
updates.racial_open_locks = -5;
|
||
updates.racial_move_silently = 7;
|
||
updates.racial_hide_shadows = 10;
|
||
updates.racial_hear_noise = 1;
|
||
break;
|
||
case "Gnome":
|
||
updates.racial_open_locks = 5;
|
||
updates.racial_find_remove_traps = 7;
|
||
updates.racial_move_silently = 5;
|
||
updates.racial_hide_shadows = 5;
|
||
updates.racial_climb_walls = -15;
|
||
break;
|
||
case "Halfling":
|
||
updates.racial_pick_pockets = 5;
|
||
updates.racial_open_locks = 5;
|
||
updates.racial_find_remove_traps = 5;
|
||
updates.racial_move_silently = 10;
|
||
updates.racial_hide_shadows = 10;
|
||
updates.racial_climb_walls = -15;
|
||
break;
|
||
case "Half-Elf":
|
||
updates.racial_pick_pockets = 10;
|
||
updates.racial_hide_shadows = 5;
|
||
break;
|
||
case "Half-Orc":
|
||
updates.racial_pick_pockets = -5;
|
||
updates.racial_open_locks = 5;
|
||
updates.racial_find_remove_traps = 5;
|
||
updates.racial_climb_walls = 5;
|
||
break;
|
||
}
|
||
|
||
// Set the racial bonus values
|
||
setAttrs(updates, {}, () => {
|
||
// After setting racial bonuses, trigger recalculation of final values
|
||
getAttrs([
|
||
"base_pick_pockets", "racial_pick_pockets",
|
||
"base_open_locks", "racial_open_locks",
|
||
"base_find_remove_traps", "racial_find_remove_traps",
|
||
"base_move_silently", "racial_move_silently",
|
||
"base_hide_shadows", "racial_hide_shadows",
|
||
"base_climb_walls", "racial_climb_walls",
|
||
"base_hear_noise", "racial_hear_noise",
|
||
"base_appraise", "racial_appraise"
|
||
], function(v) {
|
||
// Calculate final values
|
||
const finalUpdates = {
|
||
"pick_pockets": parseInt(v.base_pick_pockets || 0) + parseInt(v.racial_pick_pockets || 0),
|
||
"open_locks": parseInt(v.base_open_locks || 0) + parseInt(v.racial_open_locks || 0),
|
||
"find_remove_traps": parseInt(v.base_find_remove_traps || 0) + parseInt(v.racial_find_remove_traps || 0),
|
||
"move_silently": parseInt(v.base_move_silently || 0) + parseInt(v.racial_move_silently || 0),
|
||
"hide_shadows": parseInt(v.base_hide_shadows || 0) + parseInt(v.racial_hide_shadows || 0),
|
||
"climb_walls": parseInt(v.base_climb_walls || 0) + parseInt(v.racial_climb_walls || 0),
|
||
"hear_noise": parseInt(v.base_hear_noise || 0) + parseInt(v.racial_hear_noise || 0),
|
||
"appraise": parseInt(v.base_appraise || 0) + parseInt(v.racial_appraise || 0)
|
||
};
|
||
setAttrs(finalUpdates);
|
||
});
|
||
});
|
||
});
|
||
});
|
||
|
||
on("change:level change:class", function() {
|
||
getAttrs(["level", "class"], function(values) {
|
||
const level = parseInt(values.level) || 1;
|
||
const classType = values.class;
|
||
|
||
// Only show turn undead for Clerics
|
||
const showTurnUndead = classType === "Cleric" ||
|
||
((classType === "Paladin" || classType === "Monk") && level >= 3);
|
||
|
||
setAttrs({
|
||
"show_turn_undead": showTurnUndead ? "on" : "0"
|
||
});
|
||
});
|
||
});
|
||
|
||
on("clicked:prepare_spells", function() {
|
||
setAttrs({
|
||
"show_prepare_spells": "on",
|
||
"show_prepared_spells": "0"
|
||
});
|
||
});
|
||
|
||
on("clicked:done_preparing", function() {
|
||
setAttrs({
|
||
"show_prepare_spells": "0",
|
||
"show_prepared_spells": "on"
|
||
});
|
||
});
|
||
|
||
// Custom Roll Parsing for Turn Undead
|
||
on("clicked:turn_undead", function(info) {
|
||
getAttrs(["turn_undead_charges", "level", "class"], function(values) {
|
||
const charges = parseInt(values.turn_undead_charges, 10) || 0;
|
||
if (charges > 0) { setAttrs({"turn_undead_charges": charges - 1}); }
|
||
startRoll("&{template:ds-turn} {{title=Turn Undead}} {{charges=@{turn_undead_charges}}} {{subtitle=for @{character_name}}} {{level=@{level}}} {{turncount=[[2d4+1]]}} {{roll=[[1d20 - (3 - " + charges + ") + (?{Roleplaying Bonus?|0})]]}}", function(results) {
|
||
const TURN_UNDEAD_TABLE = {
|
||
1: [11, 14, 17, 19, 20, null, null, null, null, null],
|
||
2: [8, 11, 14, 17, 19, 20, null, null, null, null],
|
||
3: [5, 8, 11, 14, 17, 19, 20, null, null, null],
|
||
4: ["T", "T", 5, 8, 11, 14, 17, 20, null, null],
|
||
5: ["T", "T", "T", 5, 8, 11, 14, 17, 20, null],
|
||
6: ["D", "D", "T", "T", 5, 8, 11, 14, 17, 20],
|
||
7: ["D", "D", "D", "T", "T", 5, 8, 11, 14, 17],
|
||
8: ["D", "D", "D", "D", "T", "T", 5, 8, 11, 14],
|
||
9: ["D", "D", "D", "D", "D", "T", "T", 5, 8, 11],
|
||
10:["D", "D", "D", "D", "D", "D", "T", "T", 5, 8]
|
||
};
|
||
|
||
const classType = values.class;
|
||
const level = classType === "Cleric" ? (parseInt(values.level) || 1) : (parseInt(values.level) || 3) - 2;
|
||
const clampedLevel = Math.min(Math.max(level, 1), 10);
|
||
const tableRow = TURN_UNDEAD_TABLE[clampedLevel];
|
||
const d20Roll = results.results.roll.result;
|
||
const charges = parseInt(values.turn_undead_charges, 10) || 0;
|
||
|
||
const convertEntry = (entry) => {
|
||
if (entry === null) return Number.MAX_SAFE_INTEGER;
|
||
if (entry === "D" || entry === "T") return Number.MIN_SAFE_INTEGER;
|
||
return entry;
|
||
};
|
||
|
||
let maxHD = 0;
|
||
let maxDestroy = 0;
|
||
|
||
for (let i = 0; i < tableRow.length; i++) {
|
||
const value = convertEntry(tableRow[i]);
|
||
if (tableRow[i] === "D") {
|
||
maxDestroy = i + 1;
|
||
} else if (d20Roll >= value) {
|
||
maxHD = i + 1;
|
||
}
|
||
}
|
||
|
||
const turnResult = charges <= 0 ? "No turn charges left" : maxHD === 0 ? "Failed to turn any undead" :
|
||
maxHD === 10 ? "Turns undead of any HD" :
|
||
`Maximum HD of turned creature: ${maxHD}`;
|
||
const turnDestroy = charges <= 0 ? "" : maxDestroy > 0 ? `${maxDestroy} HD undead and lower are completely obliterated!` : "";
|
||
|
||
finishRoll(results.rollId, {
|
||
roll: turnResult,
|
||
turncount: turnDestroy
|
||
});
|
||
});
|
||
});
|
||
});
|
||
|
||
on("change:turn_undead_charges", function() {
|
||
getAttrs(["turn_undead_charges"], function(values) {
|
||
const charges = parseInt(values.turn_undead_charges, 10) || 0;
|
||
setAttrs({
|
||
"turn_undead_charges_greyed": charges <= 0 ? "1" : "0"
|
||
});
|
||
});
|
||
})
|
||
|
||
on("change:level change:class change:wisdom change:intelligence", function() {
|
||
getAttrs(["class", "level", "wisdom", "intelligence"], function(values) {
|
||
const classType = values.class;
|
||
const level = parseInt(values.level) || 0;
|
||
const isSpellcaster = ["Magic-User", "Illusionist", "Cleric", "Druid"].includes(classType) || (classType === "Monk" && level >= 3) || (classType === "Paladin" && level >= 9) || (classType === "Ranger" && level >= 9);
|
||
const updates = {
|
||
"show_spells": isSpellcaster ? "on" : "0"
|
||
};
|
||
let spellLevels = {};
|
||
if (classType === "Cleric") {
|
||
spellLevels = {
|
||
1: 1,
|
||
3: 2,
|
||
5: 3,
|
||
7: 4,
|
||
9: 5,
|
||
11: 6,
|
||
16: 7
|
||
};
|
||
} else if (classType === "Druid") {
|
||
spellLevels = {
|
||
1: 1,
|
||
2: 2,
|
||
3: 3,
|
||
6: 4,
|
||
9: 5,
|
||
11: 6,
|
||
12: 7
|
||
}
|
||
} else if (classType === "Monk") {
|
||
spellLevels = {
|
||
3: 1,
|
||
5: 2,
|
||
7: 3,
|
||
9: 4,
|
||
11: 5,
|
||
13: 6,
|
||
18: 7
|
||
}
|
||
} else if (classType === "Paladin") {
|
||
spellLevels = {
|
||
9: 1,
|
||
11: 2,
|
||
13: 3,
|
||
15: 4,
|
||
}
|
||
} else if (classType === "Ranger") {
|
||
spellLevels = {
|
||
9: 1,
|
||
10: 2,
|
||
11: 3,
|
||
14: 4
|
||
}
|
||
} else if (classType === "Magic-User") {
|
||
spellLevels = {
|
||
1: 1,
|
||
3: 2,
|
||
5: 3,
|
||
7: 4,
|
||
9: 5,
|
||
12: 6,
|
||
14: 7,
|
||
16: 8,
|
||
18: 9
|
||
}
|
||
} else if (classType === "Illusionist") {
|
||
spellLevels = {
|
||
1: 1,
|
||
3: 2,
|
||
5: 3,
|
||
8: 4,
|
||
10: 5,
|
||
12: 6,
|
||
14: 7
|
||
}
|
||
}
|
||
let maxSpellLevel = 0;
|
||
for (const [lvl, spellLvl] of Object.entries(spellLevels)) {
|
||
if (level >= parseInt(lvl)) {
|
||
maxSpellLevel = parseInt(spellLvl);
|
||
}
|
||
}
|
||
for (let i = 1; i <= 9; i++) {
|
||
updates[`show_spell_level_${i}`] = i <= maxSpellLevel ? "on" : "0";
|
||
}
|
||
// Define spell progression for Cleric
|
||
const clericSpellProgression = {
|
||
0: [0, 0, 0, 0, 0, 0, 0],
|
||
1: [1, 0, 0, 0, 0, 0, 0],
|
||
2: [2, 0, 0, 0, 0, 0, 0],
|
||
3: [2, 1, 0, 0, 0, 0, 0],
|
||
4: [3, 2, 0, 0, 0, 0, 0],
|
||
5: [3, 3, 1, 0, 0, 0, 0],
|
||
6: [3, 3, 2, 0, 0, 0, 0],
|
||
7: [3, 3, 2, 1, 0, 0, 0],
|
||
8: [3, 3, 3, 2, 0, 0, 0],
|
||
9: [4, 4, 3, 2, 1, 0, 0],
|
||
10: [4, 4, 3, 3, 2, 0, 0],
|
||
11: [5, 4, 4, 3, 2, 1, 0],
|
||
12: [6, 5, 5, 3, 2, 2, 0],
|
||
13: [6, 6, 6, 4, 2, 2, 0],
|
||
14: [6, 6, 6, 5, 3, 2, 0],
|
||
15: [7, 7, 7, 5, 4, 2, 0],
|
||
16: [7, 7, 7, 6, 5, 3, 1],
|
||
17: [8, 8, 8, 6, 5, 3, 1],
|
||
18: [8, 8, 8, 7, 6, 4, 1],
|
||
19: [9, 9, 9, 7, 6, 4, 2],
|
||
20: [9, 9, 9, 8, 7, 5, 2]
|
||
};
|
||
|
||
const druidSpellProgression = {
|
||
0: [0, 0, 0, 0, 0, 0, 0],
|
||
1: [2, 0, 0, 0, 0, 0, 0],
|
||
2: [2, 1, 0, 0, 0, 0, 0],
|
||
3: [3, 2, 1, 0, 0, 0, 0],
|
||
4: [4, 2, 2, 0, 0, 0, 0],
|
||
5: [4, 3, 2, 0, 0, 0, 0],
|
||
6: [4, 3, 2, 1, 0, 0, 0],
|
||
7: [4, 4, 3, 1, 0, 0, 0],
|
||
8: [4, 4, 3, 2, 0, 0, 0],
|
||
9: [5, 4, 3, 2, 1, 0, 0],
|
||
10: [5, 4, 3, 3, 2, 0, 0],
|
||
11: [5, 5, 3, 3, 2, 1, 0],
|
||
12: [5, 5, 4, 4, 3, 2, 1],
|
||
13: [6, 5, 5, 5, 4, 3, 2],
|
||
14: [6, 6, 6, 6, 5, 4, 3],
|
||
15: [7, 7, 7, 6, 6, 4, 3],
|
||
16: [7, 7, 7, 7, 6, 5, 4],
|
||
17: [8, 8, 8, 8, 6, 5, 4],
|
||
18: [8, 8, 8, 8, 7, 6, 4],
|
||
19: [9, 9, 9, 9, 7, 6, 5],
|
||
20: [9, 9, 9, 9, 8, 7, 5]
|
||
};
|
||
|
||
const monkSpellProgression = {
|
||
0: [0, 0, 0, 0, 0, 0, 0],
|
||
1: [0, 0, 0, 0, 0, 0, 0],
|
||
2: [0, 0, 0, 0, 0, 0, 0],
|
||
3: [1, 0, 0, 0, 0, 0, 0],
|
||
4: [2, 0, 0, 0, 0, 0, 0],
|
||
5: [2, 1, 0, 0, 0, 0, 0],
|
||
6: [3, 2, 0, 0, 0, 0, 0],
|
||
7: [3, 3, 1, 0, 0, 0, 0],
|
||
8: [3, 3, 2, 0, 0, 0, 0],
|
||
9: [3, 3, 2, 1, 0, 0, 0],
|
||
10: [3, 3, 3, 2, 0, 0, 0],
|
||
11: [4, 4, 3, 2, 1, 0, 0],
|
||
12: [4, 4, 3, 3, 2, 0, 0],
|
||
13: [5, 4, 4, 3, 2, 1, 0],
|
||
14: [6, 5, 5, 3, 2, 2, 0],
|
||
15: [6, 6, 6, 4, 2, 2, 0],
|
||
16: [6, 6, 6, 5, 3, 2, 0],
|
||
17: [7, 7, 7, 5, 4, 2, 0],
|
||
18: [7, 7, 7, 6, 5, 3, 1],
|
||
19: [8, 8, 8, 6, 5, 3, 1],
|
||
20: [8, 8, 8, 7, 6, 4, 1]
|
||
};
|
||
|
||
const paladinSpellProgression = {
|
||
0: [0, 0, 0, 0],
|
||
1: [0, 0, 0, 0],
|
||
2: [0, 0, 0, 0],
|
||
3: [0, 0, 0, 0],
|
||
4: [0, 0, 0, 0],
|
||
5: [0, 0, 0, 0],
|
||
6: [0, 0, 0, 0],
|
||
7: [0, 0, 0, 0],
|
||
8: [0, 0, 0, 0],
|
||
9: [1, 0, 0, 0],
|
||
10: [2, 0, 0, 0],
|
||
11: [2, 1, 0, 0],
|
||
12: [2, 2, 0, 0],
|
||
13: [2, 2, 1, 0],
|
||
14: [2, 2, 1, 0],
|
||
15: [3, 2, 1, 1],
|
||
16: [3, 3, 1, 1],
|
||
17: [3, 3, 2, 1],
|
||
18: [3, 3, 3, 1],
|
||
19: [3, 3, 3, 2],
|
||
20: [3, 3, 3, 3]
|
||
};
|
||
|
||
const rangerSpellProgression = {
|
||
0: [0, 0, 0, 0],
|
||
1: [0, 0, 0, 0],
|
||
2: [0, 0, 0, 0],
|
||
3: [0, 0, 0, 0],
|
||
4: [0, 0, 0, 0],
|
||
5: [0, 0, 0, 0],
|
||
6: [0, 0, 0, 0],
|
||
7: [0, 0, 0, 0],
|
||
8: [0, 0, 0, 0],
|
||
9: [2, 0, 0, 0],
|
||
10: [2, 1, 0, 0],
|
||
11: [3, 2, 1, 0],
|
||
12: [4, 2, 2, 0],
|
||
13: [4, 3, 2, 0],
|
||
14: [4, 3, 2, 1],
|
||
15: [4, 4, 3, 1],
|
||
16: [4, 4, 3, 2],
|
||
17: [5, 4, 3, 2],
|
||
18: [5, 4, 3, 3],
|
||
19: [5, 5, 3, 3],
|
||
20: [5, 5, 4, 4]
|
||
};
|
||
|
||
const magicUserSpellProgression = {
|
||
0: [0, 0, 0, 0, 0, 0, 0, 0, 0],
|
||
1: [1, 0, 0, 0, 0, 0, 0, 0, 0],
|
||
2: [2, 0, 0, 0, 0, 0, 0, 0, 0],
|
||
3: [2, 1, 0, 0, 0, 0, 0, 0, 0],
|
||
4: [3, 2, 0, 0, 0, 0, 0, 0, 0],
|
||
5: [4, 2, 1, 0, 0, 0, 0, 0, 0],
|
||
6: [4, 2, 2, 0, 0, 0, 0, 0, 0],
|
||
7: [4, 3, 2, 1, 0, 0, 0, 0, 0],
|
||
8: [4, 3, 3, 2, 0, 0, 0, 0, 0],
|
||
9: [4, 3, 3, 2, 1, 0, 0, 0, 0],
|
||
10: [4, 4, 3, 2, 2, 0, 0, 0, 0],
|
||
11: [4, 4, 4, 3, 3, 0, 0, 0, 0],
|
||
12: [4, 4, 4, 4, 4, 1, 0, 0, 0],
|
||
13: [5, 5, 5, 4, 4, 2, 0, 0, 0],
|
||
14: [5, 5, 5, 4, 4, 2, 1, 0, 0],
|
||
15: [5, 5, 5, 5, 5, 2, 1, 0, 0],
|
||
16: [5, 5, 5, 5, 5, 3, 2, 1, 0],
|
||
17: [5, 5, 5, 5, 5, 3, 3, 2, 0],
|
||
18: [5, 5, 5, 5, 5, 3, 3, 2, 1],
|
||
19: [5, 5, 5, 5, 5, 3, 3, 3, 1],
|
||
20: [5, 5, 5, 5, 5, 4, 3, 3, 2]
|
||
};
|
||
|
||
const illusionistSpellProgression = {
|
||
0: [0, 0, 0, 0, 0, 0, 0],
|
||
1: [1, 0, 0, 0, 0, 0, 0],
|
||
2: [2, 0, 0, 0, 0, 0, 0],
|
||
3: [2, 1, 0, 0, 0, 0, 0],
|
||
4: [3, 2, 0, 0, 0, 0, 0],
|
||
5: [4, 2, 1, 0, 0, 0, 0],
|
||
6: [4, 3, 1, 0, 0, 0, 0],
|
||
7: [4, 3, 2, 0, 0, 0, 0],
|
||
8: [4, 3, 2, 1, 0, 0, 0],
|
||
9: [5, 3, 3, 2, 0, 0, 0],
|
||
10: [5, 4, 3, 2, 1, 0, 0],
|
||
11: [5, 4, 3, 3, 2, 0, 0],
|
||
12: [5, 5, 4, 3, 2, 1, 0],
|
||
13: [5, 5, 4, 3, 2, 2, 0],
|
||
14: [5, 5, 4, 3, 2, 2, 1],
|
||
15: [5, 5, 4, 4, 2, 2, 1],
|
||
16: [5, 5, 5, 4, 3, 2, 2],
|
||
17: [5, 5, 5, 5, 3, 2, 2],
|
||
18: [5, 5, 5, 5, 3, 3, 2],
|
||
19: [5, 5, 5, 5, 4, 3, 2],
|
||
20: [5, 5, 5, 5, 4, 3, 3]
|
||
};
|
||
|
||
let spellProgression = [];
|
||
const wis = parseInt(values.wisdom) || 0;
|
||
const int = parseInt(values.intelligence) || 0;
|
||
|
||
switch (classType) {
|
||
case "Cleric":
|
||
spellProgression = clericSpellProgression[level] || clericSpellProgression[20];
|
||
if (wis >= 15) {
|
||
spellProgression[0] += 1;
|
||
if (spellProgression[1] > 0) { spellProgression[1] += 1; }
|
||
}
|
||
break;
|
||
case "Druid":
|
||
spellProgression = druidSpellProgression[level] || druidSpellProgression[20];
|
||
if (wis >= 15) {
|
||
spellProgression[0] += 1;
|
||
if (spellProgression[1] > 0) { spellProgression[1] += 1; }
|
||
}
|
||
break;
|
||
case "Monk":
|
||
spellProgression = monkSpellProgression[level] || monkSpellProgression[20];
|
||
break;
|
||
case "Paladin":
|
||
spellProgression = paladinSpellProgression[level] || paladinSpellProgression[20];
|
||
break;
|
||
case "Ranger":
|
||
spellProgression = rangerSpellProgression[level] || rangerSpellProgression[20];
|
||
break;
|
||
case "Magic-User":
|
||
spellProgression = magicUserSpellProgression[level] || magicUserSpellProgression[20];
|
||
if (int >= 15) {
|
||
spellProgression[0] += 1;
|
||
if (spellProgression[1] > 0) { spellProgression[1] += 1; }
|
||
}
|
||
break;
|
||
case "Illusionist":
|
||
spellProgression = illusionistSpellProgression[level] || illusionistSpellProgression[20];
|
||
if (int >= 15) {
|
||
spellProgression[0] += 1;
|
||
if (spellProgression[1] > 0) { spellProgression[1] += 1; }
|
||
}
|
||
break;
|
||
default:
|
||
spellProgression = [0, 0, 0, 0, 0, 0, 0];
|
||
}
|
||
|
||
spellProgression.forEach((spells, index) => {
|
||
updates[`spells_${index + 1}`] = spells;
|
||
});
|
||
setAttrs(updates);
|
||
});
|
||
})
|
||
|
||
on("clicked:character_tab", function() {
|
||
setAttrs({
|
||
"show_character": "on",
|
||
"show_notes": "0",
|
||
"show_spells_tab": "0"
|
||
});
|
||
});
|
||
|
||
on("clicked:notes_tab", function() {
|
||
setAttrs({
|
||
"show_character": "0",
|
||
"show_notes": "on",
|
||
"show_spells_tab": "0"
|
||
});
|
||
});
|
||
|
||
on("clicked:spells_tab", function() {
|
||
setAttrs({
|
||
"show_character": "0",
|
||
"show_notes": "0",
|
||
"show_spells_tab": "on"
|
||
});
|
||
});
|
||
</script>
|
||
|
||
<rolltemplate class="sheet-rolltemplate-ds-turn">
|
||
<div class="sheet-template-container">
|
||
<div class="sheet-template-head">
|
||
<div class="sheet-template-head-row">
|
||
{{#title}}<div class="sheet-turn-title">{{title}}</div>{{/title}}
|
||
{{#subtitle}}<div class="sheet-turn-subtitle">{{subtitle}}</div>{{/subtitle}}
|
||
</div>
|
||
</div>
|
||
<div class="sheet-template-body">
|
||
<div class="sheet-template-body-row">
|
||
<span class="sheet-turn-total">Total HD Turned: {{turncount}}</span>
|
||
</div>
|
||
<div class="sheet-template-body-row">
|
||
<span class="sheet-turn-check">Turn Check: {{roll}}</span>
|
||
</div>
|
||
<div class="sheet-template-body-row">
|
||
<span class="sheet-turn-check">{{computed::roll}}</span>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</rolltemplate>
|
||
|
||
<rolltemplate class="sheet-rolltemplate-ds-save">
|
||
<div class="sheet-saving-throw-container">
|
||
<div class="sheet-saving-throw-header">
|
||
<div class="sheet-saving-throw-header-row">
|
||
{{#title}}
|
||
<div class="sheet-saving-throw-header-cell">{{title}}</div>
|
||
{{/title}}
|
||
{{^title}}
|
||
<div class="sheet-saving-throw-header-cell">Save vs. {{savevs}}</div>
|
||
{{/title}}
|
||
{{#subtitle}}
|
||
<div class="sheet-saving-throw-header-cell">{{subtitle}}</div>
|
||
{{/subtitle}}
|
||
{{^subtitle}}
|
||
{{#character}}
|
||
<div class="sheet-saving-throw-header-cell">for {{character}}</div>
|
||
{{/character}}
|
||
{{/subtitle}}
|
||
</div>
|
||
</div>
|
||
<div class="sheet-saving-throw-content">
|
||
<div class="sheet-saving-throw-content-row">
|
||
<span class="sheet-check-label">Roll</span>
|
||
<span class="sheet-check-label"></span>
|
||
<span class="sheet-check-label">Target</span>
|
||
</div>
|
||
<div class="sheet-saving-throw-content-row">
|
||
<span class="sheet-check-value">{{saveroll}}</span>
|
||
<span class="sheet-check-value">≥</span>
|
||
<span class="sheet-check-value">{{savetarget}}</span>
|
||
</div>
|
||
{{#rollTotal() saveroll savetarget}}
|
||
{{#rollWasFumble() saveroll}}
|
||
<div class="sheet-template-result sheet-template-failure">
|
||
CRITICAL FAILURE!
|
||
{{#fumble}}
|
||
<br>
|
||
<span class="sheet-template-result-description">{{fumble}}</span>
|
||
{{/fumble}}
|
||
</div>
|
||
{{/rollWasFumble() saveroll}}
|
||
|
||
{{#^rollWasFumble() saveroll}}
|
||
<div class="sheet-template-result sheet-template-success">
|
||
Success!
|
||
{{#success}}
|
||
<br>
|
||
<span class="sheet-template-result-description">{{success}}</span>
|
||
{{/success}}
|
||
</div>
|
||
{{/^rollWasFumble() saveroll}}
|
||
{{/rollTotal() saveroll savetarget}}
|
||
|
||
{{#rollGreater() saveroll savetarget}}
|
||
{{#rollWasFumble() saveroll}}
|
||
<div class="sheet-template-result sheet-template-failure">
|
||
CRITICAL FAILURE!
|
||
{{#fumble}}
|
||
<br>
|
||
<span class="sheet-template-result-description">{{fumble}}</span>
|
||
{{/fumble}}
|
||
</div>
|
||
{{/rollWasFumble() saveroll}}
|
||
|
||
{{#^rollWasFumble() saveroll}}
|
||
<div class="sheet-template-result sheet-template-success">
|
||
Success!
|
||
{{#success}}
|
||
<br>
|
||
<span class="sheet-template-result-description">{{success}}</span>
|
||
{{/success}}
|
||
</div>
|
||
{{/^rollWasFumble() saveroll}}
|
||
{{/rollGreater() saveroll savetarget}}
|
||
|
||
{{#rollLess() saveroll savetarget}}
|
||
{{#rollWasFumble() saveroll}}
|
||
<div class="sheet-template-result sheet-template-failure">
|
||
CRITICAL FAILURE!
|
||
{{#fail}}
|
||
<br>
|
||
<span class="sheet-template-result-description">{{fail}}</span>
|
||
{{/fail}}
|
||
</div>
|
||
{{/rollWasFumble() saveroll}}
|
||
|
||
{{#^rollWasFumble() saveroll}}
|
||
<div class="sheet-template-result sheet-template-failure">
|
||
Failed!
|
||
{{#fail}}
|
||
<br>
|
||
<span class="sheet-template-result-description">{{fail}}</span>
|
||
{{/fail}}
|
||
</div>
|
||
{{/^rollWasFumble() saveroll}}
|
||
{{/rollLess() saveroll savetarget}}
|
||
</div>
|
||
</div>
|
||
</rolltemplate>
|
||
|
||
<!-- Roll Templates -->
|
||
<rolltemplate class="sheet-rolltemplate-ds-attack">
|
||
<div class="sheet-template-container">
|
||
<div class="sheet-template-head {{color}}">
|
||
<div class="sheet-template-head-row">
|
||
<div class="sheet-template-head-cell">{{title}}</div>
|
||
{{#subtitle}}
|
||
<div class="sheet-template-head-cell">{{subtitle}}</div>
|
||
{{/subtitle}}
|
||
</div>
|
||
</div>
|
||
<div class="sheet-template-body">
|
||
<div class="sheet-template-body-row">
|
||
<span class="sheet-template-body-label"><b>Damage</b></span>
|
||
<span class="sheet-template-body-label"><b>AC Hit</b></span>
|
||
</div>
|
||
<div class="sheet-template-body-row">
|
||
<span class="sheet-template-attack-image sheet-template-attack-dmg">
|
||
{{#^rollWasCrit() ac_hit}}
|
||
{{damage}}
|
||
{{/^rollWasCrit() ac_hit}}
|
||
{{#rollWasCrit() ac_hit}}
|
||
{{#crit_dmg}}{{crit_dmg}}{{/crit_dmg}}
|
||
{{^crit_dmg}}{{damage}}{{/crit_dmg}}
|
||
{{/rollWasCrit() ac_hit}}
|
||
</span>
|
||
<span class="sheet-template-attack-image sheet-template-attack-ac">{{ac_hit}}</span>
|
||
</div>
|
||
{{#rollWasCrit() ac_hit}}
|
||
<div class="sheet-template-result sheet-template-success">
|
||
CRITICAL HIT!
|
||
{{#crit}}
|
||
<br>
|
||
<span class="sheet-template-result-description">{{crit}}</span>
|
||
{{/crit}}
|
||
</div>
|
||
{{/rollWasCrit() ac_hit}}
|
||
|
||
{{#rollWasFumble() ac_hit}}
|
||
<div class="sheet-template-result sheet-template-failure">
|
||
FUMBLE!
|
||
{{#fumble}}
|
||
<br>
|
||
<span class="sheet-template-result-description">{{fumble}}</span>
|
||
{{/fumble}}
|
||
</div>
|
||
{{/rollWasFumble() ac_hit}}
|
||
</div>
|
||
</div>
|
||
</rolltemplate> |