initial commit
This commit is contained in:
91
spells/html/deep_magic_5e/dragon-breath.html
Normal file
91
spells/html/deep_magic_5e/dragon-breath.html
Normal file
@@ -0,0 +1,91 @@
|
||||
|
||||
<!DOCTYPE html>
|
||||
<head>
|
||||
<meta name="viewport" content="user-scalable=yes, width=device-width">
|
||||
<meta charset="UTF-8">
|
||||
<style>
|
||||
body {
|
||||
max-width: 700px;
|
||||
margin: auto;
|
||||
font-size: 18px;
|
||||
font-family: sans-serif;
|
||||
padding: 10px;
|
||||
}
|
||||
p, li {
|
||||
line-height: 1.5em;
|
||||
}
|
||||
ul, ol {
|
||||
padding-left: 20px;
|
||||
margin-left: 0;
|
||||
}
|
||||
li {
|
||||
margin-left: 0; /* Remove margin from li */
|
||||
}
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
}
|
||||
th, td {
|
||||
border: 1px solid black;
|
||||
padding: 5px;
|
||||
text-align: left;
|
||||
}
|
||||
#monsterTable td:nth-child(4),
|
||||
#monsterTable th:nth-child(4) {
|
||||
white-space: nowrap;
|
||||
}
|
||||
</style>
|
||||
<title>Dragon Breath</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Dragon Breath</h1>
|
||||
<ul>
|
||||
<li><strong>Level</strong>: 5 evocation</li>
|
||||
<li><strong>Classes</strong>: Sorcerer, Warlock, Wizard</li>
|
||||
<li><strong>Casting Time</strong>: 1 action</li>
|
||||
<li><strong>Range</strong>: Self (15-foot cone or 30-foot line)</li>
|
||||
<li><strong>Components</strong>: V, S, M (a piece of a dragon’s tooth)</li>
|
||||
<li><strong>Duration</strong>: Concentration, up to 1 minute</li>
|
||||
<li><strong>Source</strong>: Deep Magic 5e</li>
|
||||
</ul>
|
||||
<p>You summon draconic power to gain a breath weapon. When you cast dragon breath, you can immediately exhale a cone or line of elemental energy, depending on the type of dragon you select. While the spell remains active, roll a d6 at the start of your turn. On a roll of 5 or 6, you can take a bonus action that turn to use the breath weapon again.</p>
|
||||
<p>When you cast the spell, choose one of the dragon types listed below. Your choice determines the affected area and the damage of the breath attack for the spell’s duration.</p>
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Dragon Type</th>
|
||||
<th>Area</th>
|
||||
<th>Damage</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Black</td>
|
||||
<td>30-foot line, 5 feet wide</td>
|
||||
<td>6d6 acid damage</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Blue</td>
|
||||
<td>30-foot line, 5 feet wide</td>
|
||||
<td>6d6 lightning damage</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Green</td>
|
||||
<td>15-foot cone</td>
|
||||
<td>6d6 poison damage</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Red</td>
|
||||
<td>15-foot cone</td>
|
||||
<td>6d6 fire damage</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>White</td>
|
||||
<td>15-foot cone</td>
|
||||
<td>6d6 cold damage</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<p><strong>Using a Higher-Level Spell Slot.</strong> When you cast this spell using a spell slot of 6th level or higher, the damage increases by 2d6 for each slot level above 5th.</p>
|
||||
<p><a href="../../../licensing.html">Licensing</a> – <a href="../../md/deep_magic_5e/dragon-breath.md">Markdown Format</a></p>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user