initial commit of symbiote files

This commit is contained in:
CPTN Cosmo 2025-05-10 01:47:53 +02:00 committed by GitHub
parent f68347fb48
commit b4c05b8e84
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 278 additions and 0 deletions

28
roll.html Normal file
View file

@ -0,0 +1,28 @@
<!DOCTYPE html>
<html>
<head>
<title>Daggerheart Dice Roller</title>
<link rel="stylesheet" href="roll.css">
<script src="roll.js"></script>
</head>
<body>
<h1 style="margin-top: 0">Duality Dice Roll</h1>
<div class="content-row">
<label class="field-title" for="modifier">Modifier</label>
<input id="modifier" type="number" placeholder="0"></input>
</div>
<div class="content-row">
<label class="field-title" for="adv-disadv">Advantage/Disadvantage</label>
<select id="adv-disadv" size="1">
<option value="none">None</option>
<option value="advantage">Advantage</option>
<option value="disadvantage">Disadvantage</option>
</select>
</div>
<div class="content-row">
<span class="spacer"></span>
<button id="roll-duality" onclick="rollDualityDice()">Roll Duality Dice</button>
</div>
</body>
</html>