ttrpg/calc.md

64 lines
1.9 KiB
Markdown
Raw Normal View History

2022-09-14 18:44:58 -05:00
% TES TTRPG
<link href="/css/tes.css" rel="stylesheet">
<link href="/resources/favicon.png" rel="icon">
[Main](main.html)
---
### Alchemy Calculator
<label for="alc-skill">Alchemy Skill:</label>
<input type="number" id="alc-skill" name="alc-skill">
<label for="alc-int">Intelligence Value:</label>
<input type="number" id="alc-int" name="alc-int">
<label for="alc-mortar">Mortar & Pestle:</label>
<input type="number" id="alc-mortar" name="alc-mortar">
<label for="alc-alembic">Alembic:</label>
<input type="number" id="alc-alembic" name="alc-alembic">
<label for="alc-calcinator">Calcinator:</label>
<input type="number" id="alc-calcinator" name="alc-calcinator">
<label for="alc-retort">Retort:</label>
<input type="number" id="alc-retort" name="alc-retort">
<label for="alc-potency">Ingredient Potency:</label>
<input type="number" id="alc-potency" name="alc-potency">
<label for="alc-cost">Effect Base Cost:</label>
<input type="number" id="alc-cost" name="alc-cost">
<span id="alc-output">Magnitude: <b>0</b> Duration: <b>0</b></span>
<input type="button" id="alc-submit" name="alc-submit" onclick="alcCalc()" value="Calculate">
### Spell Cost Calculator
<label for="spell-magnitude">Magnitude:</label>
<input type="number" id="spell-magnitude" name="spell-magnitude">
<label for="spell-duration">Duration:</label>
<input type="number" id="spell-duration" name="spell-duration">
<label for="spell-area">Area:</label>
<input type="number" id="spell-area" name="spell-area">
<label for="spell-ranged">Ranged:</label>
<input type="checkbox" id="spell-ranged" name="spell-ranged">
<label for="spell-cost">Effect Base Cost:</label>
<input type="number" id="spell-cost" name="spell-cost">
<span id="spell-output">Cost: <b>0</b> Difficulty: <b>0</b></span>
<input type="button" id="spell-submit" name="spell-submit" onclick="spellCalc()" value="Calculate">
<script src="test.js"></script>