Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
jdnewland authored Jul 7, 2024
1 parent 23c3007 commit 49265c4
Showing 1 changed file with 11 additions and 16 deletions.
27 changes: 11 additions & 16 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,29 +9,24 @@
<body>
<div class="about">
<h2>About</h2>
<p>Adventure Artisan is a web tool designed to help Dungeon Masters quickly generate engaging D&D adventure prompts. Select a prompt style from the dropdown menu and click "Generate Adventure" to create a new scenario.</p>
<p>Adventure Artisan is a web tool designed to help Dungeon Masters quickly generate engaging D&D adventure prompts. Mix and match character, goal, location, obstacle, and twist cards to create unique adventure scenarios.</p>
<h3>Prompt Styles</h3>
<ul> <li><strong>Quest for Glory:</strong> Simple adventure prompts.</li>
<li><strong>Wheel of Destiny:</strong> Complex prompts involving multiple elements.</li>
<li><strong>Battle of Minds:</strong> Conflicting goals leading to the same obstacle.</li>
<li><strong>Fractured Soul:</strong> Internal conflict with a forced choice.</li>
<ul>
<li><strong>Quest for Glory:</strong> A straightforward prompt with one of each card type.</li>
<li><strong>Wheel of Destiny:</strong> A complex prompt with multiple goals, obstacles, and characters.</li>
<li><strong>Battle of Minds:</strong> Conflicting goals from two characters leading to the same obstacle.</li>
<li><strong>Fractured Soul:</strong> A character facing a choice between two goals with a significant obstacle.</li>
</ul>
</div>
<div class="container">
<h1>Adventure Artisan</h1>
<select id="prompt-style">
<option value="simple">Quest for Glory</option>
<option value="complex">Wheel of Destiny</option>
<option value="conflict">Battle of Minds</option>
<option value="soul">Fractured Soul</option>
</select>
<button id="generate-btn">Generate Adventure</button>
<div class="card-container" id="card-container">
<div class="card" id="character-card"></div>
<div class="card" id="goal-card"></div>
<div class="card" id="location-card"></div>
<div class="card" id="obstacle-card"></div>
<div class="card" id="twist-card"></div>
<div class="card character-card" id="character-card"></div>
<div class="card goal-card" id="goal-card"></div>
<div class="card location-card" id="location-card"></div>
<div class="card obstacle-card" id="obstacle-card"></div>
<div class="card twist-card" id="twist-card"></div>
</div>
</div>
<script type="module" src="scripts.js"></script>
Expand Down

0 comments on commit 49265c4

Please sign in to comment.