initial commit
This commit is contained in:
@@ -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;
|
||||
}
|
||||
table {
|
||||
border-collapse: collapse; /* Ensure that borders are not double */
|
||||
width: 100%; /* Optional: makes the table take up the full width */
|
||||
}
|
||||
|
||||
th, td {
|
||||
border: 1px solid black; /* Adds a 1px solid black border around each cell */
|
||||
text-align: left; /* Optional: aligns text to the left */
|
||||
padding: 2px;
|
||||
}
|
||||
</style>
|
||||
<title>Potion of Resistance</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Potion of Resistance</h1>
|
||||
<ul>
|
||||
<li><strong>Rarity:</strong> uncommon</li>
|
||||
<li><strong>Type:</strong> Potion</li>
|
||||
<li><strong>Attunement:</strong> No</li>
|
||||
<li><strong>Source:</strong> 5.1 SRD (D&D 2014)</li>
|
||||
</ul>
|
||||
<p>When you drink this potion, you gain resistance to one type of damage for 1 hour. The GM chooses the type or determines it randomly from the options below.</p>
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>d10</th>
|
||||
<th>Damage Type</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>1</td>
|
||||
<td>Acid</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>2</td>
|
||||
<td>Cold</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>3</td>
|
||||
<td>Fire</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>4</td>
|
||||
<td>Force</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>5</td>
|
||||
<td>Lightning</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>6</td>
|
||||
<td>Necrotic</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>7</td>
|
||||
<td>Poison</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>8</td>
|
||||
<td>Psychic</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>9</td>
|
||||
<td>Radiant</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>10</td>
|
||||
<td>Thunder</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<p><a href="../../../licensing.html">Licensing</a> – <a href="../../md/5.1_srd_(d&d_2014)/potion-of-resistance.md">Markdown Format</a></p>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user