Update frame options in card creator to include stat values for clarity

This commit is contained in:
w 2025-07-20 00:49:46 -03:00
parent 01df661b60
commit 7ae5c8f62a

View file

@ -55,11 +55,11 @@
<input type="text" id="artistInput" placeholder="Artist Name" style="width: 100%; margin-bottom: 0.5rem;"><br> <input type="text" id="artistInput" placeholder="Artist Name" style="width: 100%; margin-bottom: 0.5rem;"><br>
<input type="file" id="uploadArt" style="margin-bottom: 0.5rem;"><br> <input type="file" id="uploadArt" style="margin-bottom: 0.5rem;"><br>
<select id="frameSelect" style="width: 100%; margin-bottom: 0.5rem;"> <select id="frameSelect" style="width: 100%; margin-bottom: 0.5rem;">
<option value="v1_common.png" selected>Common</option> <option value="v1_common.png" selected>Common (100)</option>
<option value="v1_uncommon.png">Uncommon</option> <option value="v1_uncommon.png">Uncommon (140)</option>
<option value="v1_rare.png">Rare</option> <option value="v1_rare.png">Rare (180)</option>
<option value="v1_epic.png">Epic</option> <option value="v1_epic.png">Epic (220)</option>
<option value="v1_legendary.png">Legendary</option> <option value="v1_legendary.png">Legendary (250)</option>
</select> </select>
<button id="downloadBtn" onclick="generateCard()">✨ Create Card</button> <button id="downloadBtn" onclick="generateCard()">✨ Create Card</button>
<p>All the processing is done in your browser, no data is sent to the server.</p> <p>All the processing is done in your browser, no data is sent to the server.</p>