ttrpg/calc.md

87 lines
2.2 KiB
Markdown
Raw Permalink Normal View History

2023-06-27 22:02:37 -05:00
{::nomarkdown}
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2023-07-04 03:54:09 -05:00
<link rel="icon" href="/favicon.ico">
2023-06-27 22:02:37 -05:00
<link href="tes.css" rel="stylesheet">
<title>TES TTRPG</title>
</head>
<body>
{:/nomarkdown}
<header markdown="1">
# TES TTRPG
</header>
2022-09-14 18:44:58 -05:00
[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>
2023-06-26 03:41:37 -05:00
---
[License Info](license.html)
---
2023-06-27 22:02:37 -05:00
{::nomarkdown}
</body>
</html>
{:/nomarkdown}