2024-06-29 19:25:55 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<title>Gamma World Physical Attack Roll</title>
|
2024-07-16 22:44:46 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="../assets/css/styles.css">
|
|
|
|
<script src="../assets/js/config.js"></script>
|
|
|
|
<script src="../assets/js/physicalattack.js" defer></script>
|
2024-06-29 19:25:55 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<h2>Attempt A Physical Attack</h2>
|
|
|
|
|
|
|
|
<div class="content-container">
|
2024-07-01 15:03:40 +00:00
|
|
|
<p><b>Only supply a number required for the type of attack. If you are making a weapon attack, only fill in
|
|
|
|
the Attacker Weapon Class. If you are making a non-weapon attack, only fill in the Attacker Hit
|
|
|
|
Dice.
|
|
|
|
</b></p>
|
2024-06-29 19:25:55 +00:00
|
|
|
<form id="physicalAttackForm">
|
|
|
|
<div class="form-row">
|
|
|
|
<div class="form-field">
|
2024-07-01 15:03:40 +00:00
|
|
|
<label for="awc">Attacker WC:</label>
|
|
|
|
<input type="number" name="awc" id="awc" min="1" max="16"style="margin-right: 5px">
|
2024-06-29 19:25:55 +00:00
|
|
|
</div>
|
|
|
|
<div class="form-field">
|
2024-07-01 15:03:40 +00:00
|
|
|
<label for="ahd">Attacker HD:</label>
|
|
|
|
<input type="number" name="ahd" id="ahd" min="1" max="16" style="margin-right: 5px">
|
2024-06-29 19:25:55 +00:00
|
|
|
</div>
|
|
|
|
<div class="form-field">
|
2024-07-01 15:03:40 +00:00
|
|
|
<label for="dac">Defender AC:</label>
|
|
|
|
<input type="number" name="dac" id="dac" min="1" max="10" value="5" style="margin-right: 5px">
|
2024-06-29 19:25:55 +00:00
|
|
|
</div>
|
2024-07-01 15:03:40 +00:00
|
|
|
</div>
|
2024-06-29 19:25:55 +00:00
|
|
|
<div class="form-row">
|
|
|
|
<div class="form-field">
|
|
|
|
<label for="modifier">Modifier:</label>
|
2024-07-01 15:03:40 +00:00
|
|
|
<input type="number" name="modifier" id="modifier" min="-100" max="100" value="0" style="margin-right: 10px">
|
2024-06-29 19:25:55 +00:00
|
|
|
</div>
|
|
|
|
<div class="form-field">
|
|
|
|
<button type="submit">Attack!</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<hr/>
|
|
|
|
<div id="results"></div>
|
|
|
|
</body>
|
|
|
|
</html>
|