Initial commit

This commit is contained in:
Joey Kimsey
2024-08-04 21:15:59 -04:00
parent c9d1fb983f
commit 0d469501ee
695 changed files with 70184 additions and 71 deletions

View File

@ -0,0 +1,9 @@
<div class="form-group">
<label for="hpType" class="col-lg-3 control-label">Hitpoint Type</label>
<div class="col-lg-3 select-container" id="colorContainer">
<select id="hpType" name="hpType" class="form-control custom-select" value="{hpType}">
<option value="fixed">Fixed</option>
<option value="manual">Manual</option>
</select>
</div>
</div>

View File

@ -0,0 +1,10 @@
<div class="form-group">
<label for="type" class="col-lg-3 control-label">Language Type</label>
<div class="col-lg-3 select-container" id="colorContainer">
<select id="type" name="type" class="form-control custom-select" value="{type}">
<option value="exotic">Exotic</option>
<option value="standard">Standard</option>
<option value="other">Other</option>
</select>
</div>
</div>

View File

@ -0,0 +1,10 @@
<div class="form-group">
<label for="morality" class="col-lg-3 control-label">Morality</label>
<div class="col-lg-3 select-container" id="colorContainer">
<select id="morality" name="morality" class="form-control custom-select" value="{morality}">
<option value="Good">Good</option>
<option value="Neutral">Neutral</option>
<option value="Evil">Evil</option>
</select>
</div>
</div>

View File

@ -0,0 +1,10 @@
<div class="form-group">
<label for="order" class="col-lg-3 control-label">Order</label>
<div class="col-lg-3 select-container" id="colorContainer">
<select id="order" name="order" class="form-control custom-select" value="{order}">
<option value="Lawful">Lawful</option>
<option value="Neutral">Neutral</option>
<option value="Chaotic">Chaotic</option>
</select>
</div>
</div>

View File

@ -0,0 +1,9 @@
<div class="form-group">
<label for="privacy" class="col-lg-3 control-label">Privacy</label>
<div class="col-lg-3 select-container" id="colorContainer">
<select id="privacy" name="privacy" class="form-control custom-select" value="{privacy}">
<option value="private">Private</option>
<option value="public">Public</option>
</select>
</div>
</div>

View File

@ -0,0 +1,13 @@
<div class="form-group">
<label for="size" class="col-lg-3 control-label">Size</label>
<div class="col-lg-3 select-container" id="colorContainer">
<select id="size" name="size" class="form-control custom-select" value="{size}">
<option value="Tiny">Tiny</option>
<option value="Small">Small</option>
<option value="Medium">Medium</option>
<option value="Large">Large</option>
<option value="Huge">Huge</option>
<option value="Gargantuan">Gargantuan</option>
</select>
</div>
</div>

View File

@ -0,0 +1,30 @@
<div class="form-group">
<label for="climbing_speed" class="col-lg-3 control-label">Climbing Speed</label>
<div class="col-lg-3">
<input type="text" class="form-control" name="climbing_speed" id="climbing_speed" value="{climbing_speed}">
</div>
</div>
<div class="form-group">
<label for="swimming_speed" class="col-lg-3 control-label">Swimming Speed</label>
<div class="col-lg-3">
<input type="text" class="form-control" name="swimming_speed" id="swimming_speed" value="{swimming_speed}">
</div>
</div>
<div class="form-group">
<label for="burrowing_speed" class="col-lg-3 control-label">Burrowing Speed</label>
<div class="col-lg-3">
<input type="text" class="form-control" name="burrowing_speed" id="burrowing_speed" value="{burrowing_speed}">
</div>
</div>
<div class="form-group">
<label for="flying_speed" class="col-lg-3 control-label">Flying Speed</label>
<div class="col-lg-3">
<input type="text" class="form-control" name="flying_speed" id="flying_speed" value="{flying_speed}">
</div>
</div>
<div class="form-group">
<label for="walking_speed" class="col-lg-3 control-label">Walking Speed</label>
<div class="col-lg-3">
<input type="text" class="form-control" name="walking_speed" id="walking_speed" value="{walking_speed}">
</div>
</div>

View File

@ -0,0 +1,30 @@
- tag: cantrip
name: Cantrip
title: Cantrips
- tag: level1
name: Level 1
title: Level 1
- tag: level2
name: Level 2
title: Level 2
- tag: level3
name: Level 3
title: Level 3
- tag: level4
name: Level 4
title: Level 4
- tag: level5
name: Level 5
title: Level 5
- tag: level6
name: Level 6
title: Level 6
- tag: level7
name: Level 7
title: Level 7
- tag: level8
name: Level 8
title: Level 8
- tag: level9
name: Level 9
title: Level 9

View File

@ -0,0 +1,16 @@
- name: Abjuration
tag: abjuration
- name: Conjuration
tag: conjuration
- name: Divination
tag: divination
- name: Enchantment
tag: enchantment
- name: Evocation
tag: evocation
- name: Illusion
tag: illusion
- name: Necromancy
tag: necromancy
- name: Transmutation
tag: transmutation

View File

@ -0,0 +1,12 @@
<div class="form-group">
<label for="version" class="col-lg-3 control-label">Edition / Version</label>
<div class="col-lg-3 select-container" id="colorContainer">
<select id="version" name="version" class="form-control custom-select" value="{version}">
<option value="2">2</option>
<option value="3">3</option>
<option value="3.5">3.5</option>
<option value="4">4</option>
<option value="5">5</option>
</select>
</div>
</div>