bug: Update rare weapons tables

This commit is contained in:
2026-06-08 22:13:31 +00:00
parent 41d89cb632
commit f7574aee21
12 changed files with 3654 additions and 1486 deletions

View File

@@ -1,98 +1,189 @@
<h1>WEAPON INDEX</h1>
<section aria-labelledby="weapon-list">
<h2>Weapon Stats Summary</h2>
<!-- This section acts as a header for the list that follows -->
<p><strong>Category:</strong> WEAPONS</p>
<p><strong>Stats Overview:</strong> COST | ACCURACY | DAMAGE</p>
<article class="weapon-item">
<h3>Zweihänder</h3>
<p><strong>Stats:</strong> E 400 z 【DEX + MIG】 +1 【HR + 14】 physical</p>
<p><strong>Type:</strong> Two-handed w Melee w No Quality.</p>
</article>
<article class="weapon-item">
<h3>Falling Rain</h3>
<p><strong>Stats:</strong> E 450 z 【DEX + DEX】 +1 【HR + 10】 ice</p>
<p>
<strong>Type:</strong> Two-handed w Melee w Attacks with this weapon
target Magic Defense.
</p>
</article>
<article class="weapon-item">
<h3>Flamberge</h3>
<p><strong>Stats:</strong> E 500 z 【DEX + MIG】 +1 【HR + 10】 fire</p>
<p><strong>Type:</strong> One-handed w Melee w No Quality.</p>
</article>
<article class="weapon-item">
<h3>Elegant Edge</h3>
<p><strong>Stats:</strong> E 700 z 【DEX + INS】 +1 【HR + 6】 physical</p>
<p>
<strong>Type:</strong> One-handed w Melee w You are immune to enraged.
</p>
</article>
<article class="weapon-item">
<h3>Joyeuse</h3>
<p><strong>Stats:</strong> E 900 z 【MIG + WLP】 +1 【HR + 10】 physical</p>
<p><strong>Type:</strong> One-handed w Melee w You are immune to shaken.</p>
</article>
<article class="weapon-item">
<h3>Deathblade</h3>
<p><strong>Stats:</strong> E 1000 z 【DEX + MIG】 +1 【HR + 6】 dark</p>
<p>
<strong>Type:</strong> One-handed w Melee w Deals 5 extra damage if you
are in Crisis.
</p>
</article>
<article class="weapon-item">
<h3>Gunsword</h3>
<p>
<strong>Stats:</strong> E 1000 z 【DEX + MIG】 +1 【HR + 10】 physical
</p>
<p>
<strong>Type:</strong> Two-handed w Melee w This weapon can target flying
creatures.
</p>
</article>
<article class="weapon-item">
<h3>Main Gauche</h3>
<p><strong>Stats:</strong> E 1000 z 【DEX + MIG】 +1 【HR + 6】 physical</p>
<p>
<strong>Type:</strong> One-handed w Melee w You gain a +1 bonus to
Defense.
</p>
</article>
<article class="weapon-item">
<h3>The Rikizo</h3>
<p>
<strong>Stats:</strong> E 1200 z 【DEX + INS】 +1 【HR + 10】 physical
</p>
<p>
<strong>Type:</strong> Two-handed w Melee w Deals 2 extra damage for each
Class you have mastered.
</p>
</article>
<article class="weapon-item">
<h3>Flesh Eater</h3>
<p><strong>Stats:</strong> E 1300 z 【MIG + MIG】 【HR + 10】 poison</p>
<p>
<strong>Type:</strong> One-handed w Melee w Deals 5 extra damage to weak
targets.
</p>
</article>
<article class="weapon-item">
<h3>Kusanagi</h3>
<p><strong>Stats:</strong> E 1500 z 【DEX + MIG】 +1 【HR + 14】 air</p>
<p>
<strong>Type:</strong> Two-handed w Melee w Attacks with this weapon have
multi (2).
</p>
</article>
<article class="weapon-item">
<h3>Excalibur</h3>
<p><strong>Stats:</strong> E 2300 z 【MIG + WLP】 +1 【HR + 10】 light</p>
<p>
<strong>Type:</strong> Two-handed w Melee w You are immune to all status
effects.
</p>
</article>
</section>
<footer></footer>
<h1>Sample Rare Sword Weapons</h1>
<style>
table {
border-collapse: collapse;
width: 100%;
}
th {
/* background-color: #2d5a4e;
color: white; */
padding: 8px 12px;
text-align: left;
}
td {
padding: 6px 12px;
vertical-align: top;
}
tr.desc td {
/* background-color: #f0f4f0; */
font-size: 0.95em;
}
tr.main td {
border-top: 1px solid #ccc;
}
.icon {
width: 48px;
text-align: center;
}
.rare {
color: #c0392b;
}
h2 {
font-family: sans-serif;
letter-spacing: 2px;
}
</style>
<table>
<thead>
<tr>
<th colspan="2">WEAPON</th>
<th>COST</th>
<th>ACCURACY</th>
<th>DAMAGE</th>
</tr>
</thead>
<tbody>
<tr class="main">
<td class="icon" rowspan="2">🗡️</td>
<td><b>Zweihänder</b> <span class="rare"></span></td>
<td>400 z</td>
<td>【DEX + MIG】+1</td>
<td>【HR + 14】physical</td>
</tr>
<tr class="desc">
<td colspan="4">Two-handed ◆ Melee ◆ No Quality.</td>
</tr>
<tr class="main">
<td class="icon" rowspan="2">🗡️</td>
<td><b>Falling Rain</b> <span class="rare"></span></td>
<td>450 z</td>
<td>【DEX + DEX】+1</td>
<td>【HR + 10】ice</td>
</tr>
<tr class="desc">
<td colspan="4">Two-handed ◆ Melee ◆ Attacks with this weapon target Magic Defense.</td>
</tr>
<tr class="main">
<td class="icon" rowspan="2">🗡️</td>
<td><b>Flamberge</b> <span class="rare"></span></td>
<td>500 z</td>
<td>【DEX + MIG】+1</td>
<td>【HR + 10】fire</td>
</tr>
<tr class="desc">
<td colspan="4">One-handed ◆ Melee ◆ No Quality.</td>
</tr>
<tr class="main">
<td class="icon" rowspan="2">🗡️</td>
<td><b>Elegant Edge</b> <span class="rare"></span></td>
<td>700 z</td>
<td>【DEX + INS】+1</td>
<td>【HR + 6】physical</td>
</tr>
<tr class="desc">
<td colspan="4">One-handed ◆ Melee ◆ You are immune to <b>enraged</b>.</td>
</tr>
<tr class="main">
<td class="icon" rowspan="2">🗡️</td>
<td><b>Joyeuse</b> <span class="rare"></span></td>
<td>900 z</td>
<td>【MIG + WLP】+1</td>
<td>【HR + 10】physical</td>
</tr>
<tr class="desc">
<td colspan="4">One-handed ◆ Melee ◆ You are immune to <b>shaken</b>.</td>
</tr>
<tr class="main">
<td class="icon" rowspan="2">🗡️</td>
<td><b>Deathblade</b> <span class="rare"></span></td>
<td>1000 z</td>
<td>【DEX + MIG】+1</td>
<td>【HR + 6】dark</td>
</tr>
<tr class="desc">
<td colspan="4">One-handed ◆ Melee ◆ Deals 5 extra damage if you are in <b>Crisis</b>.</td>
</tr>
<tr class="main">
<td class="icon" rowspan="2">🗡️</td>
<td><b>Gunsword</b> <span class="rare"></span></td>
<td>1000 z</td>
<td>【DEX + MIG】+1</td>
<td>【HR + 10】physical</td>
</tr>
<tr class="desc">
<td colspan="4">Two-handed ◆ Melee ◆ This weapon can target <b>flying</b> creatures.</td>
</tr>
<tr class="main">
<td class="icon" rowspan="2">🗡️</td>
<td><b>Main Gauche</b> <span class="rare"></span></td>
<td>1000 z</td>
<td>【DEX + MIG】+1</td>
<td>【HR + 6】physical</td>
</tr>
<tr class="desc">
<td colspan="4">One-handed ◆ Melee ◆ You gain a +1 bonus to Defense.</td>
</tr>
<tr class="main">
<td class="icon" rowspan="2">🗡️</td>
<td><b>The Rikizo</b> <span class="rare"></span></td>
<td>1200 z</td>
<td>【DEX + INS】+1</td>
<td>【HR + 10】physical</td>
</tr>
<tr class="desc">
<td colspan="4">Two-handed ◆ Melee ◆ Deals 2 extra damage for each <b>Class</b> you have mastered.</td>
</tr>
<tr class="main">
<td class="icon" rowspan="2">🗡️</td>
<td><b>Flesh Eater</b> <span class="rare"></span></td>
<td>1300 z</td>
<td>【MIG + MIG】</td>
<td>【HR + 10】poison</td>
</tr>
<tr class="desc">
<td colspan="4">One-handed ◆ Melee ◆ Deals 5 extra damage to <b>weak</b> targets.</td>
</tr>
<tr class="main">
<td class="icon" rowspan="2">🗡️</td>
<td><b>Kusanagi</b> <span class="rare"></span></td>
<td>1500 z</td>
<td>【DEX + MIG】+1</td>
<td>【HR + 14】air</td>
</tr>
<tr class="desc">
<td colspan="4">Two-handed ◆ Melee ◆ Attacks with this weapon have <b>multi (2)</b>.</td>
</tr>
<tr class="main">
<td class="icon" rowspan="2">🗡️</td>
<td><b>Excalibur</b> <span class="rare"></span></td>
<td>2300 z</td>
<td>【MIG + WLP】+1</td>
<td>【HR + 10】light</td>
</tr>
<tr class="desc">
<td colspan="4">Two-handed ◆ Melee ◆ You are immune to all status effects.</td>
</tr>
</tbody>
</table>