<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Fantasy Characters</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>

<!-- Character Sheet for Gigachad -->
<div class="character-sheet">
    <h1>Gigachad - Human Paladin</h1>

    <!-- Character Picture -->
    <div class="character-picture">
        <img src="../assets/gigachad.png" alt="Gigachad">
    </div>

    <!-- Basic Information Section -->
    <div class="section">
        <h2>Basic Information</h2>
        <ul>
            <li><strong>Race:</strong> Human</li>
            <li><strong>Class:</strong> Paladin (Level 20)</li>
        </ul>
    </div>

    <!-- Stats Section -->
    <div class="section">
        <h2>Stats</h2>
        <ul>
            <li><strong>STR:</strong> 20 (+5)</li>
            <li><strong>DEX:</strong> 14 (+2)</li>
            <li><strong>CON:</strong> 18 (+4)</li>
            <li><strong>INT:</strong> 10 (+0)</li>
            <li><strong>WIS:</strong> 14 (+2)</li>
            <li><strong>CHA:</strong> 20 (+5)</li>
        </ul>
    </div>

    <!-- Proficiencies Section -->
    <div class="section">
        <h2>Proficiencies</h2>
        <p>Athletics, Intimidation, Persuasion, Religion</p>
    </div>

    <!-- Movement and Actions Section -->
    <div class="section">
        <h2>Movement and Actions</h2>
        <ul>
            <li><strong>Movement:</strong> 30 ft</li>
            <li><strong>Action:</strong> Attack with Greatsword (see weapon list)</li>
            <li><strong>Bonus-action:</strong>
                <ul>
                    <li>Divine Smite: Expend a spell slot to deal extra radiant damage</li>
                    <li>Shield of Faith: +2 AC for 10 minutes</li>
                    <li>Lay on Hands: Heal up to 100 HP (pool: level x 5)</li>
                </ul>
            </li>
            <li><strong>Reaction:</strong>
                <ul>
                    <li>Divine Sense: Detect celestial, fiend, or undead within 60 feet</li>
                    <li>Aura of Protection: Allies within 10 feet add +CHA to saving throws</li>
                </ul>
            </li>
        </ul>
    </div>

    <!-- Race Features Section -->
    <div class="section">
        <h2>Race Feature</h2>
        <ul>
            <li><strong>Human Determination:</strong> Gain proficiency in one additional skill</li>
            <li><strong>Versatility:</strong> Gain one extra feat at Level 1</li>
            <li><strong>Resilience:</strong> Advantage on saving throws against being frightened</li>
        </ul>
    </div>

    <!-- Feats Section -->
    <div class="section">
        <h2>Feats</h2>
        <ul>
            <li><strong>Great Weapon Master:</strong> Bonus attack on critical hit or kill, and can take a -5 penalty to hit for +10 damage</li>
            <li><strong>Tough:</strong> +2 HP per level</li>
            <li><strong>Inspiring Leader:</strong> Can spend 10 minutes inspiring allies, granting temporary HP equal to level + CHA modifier</li>
        </ul>
    </div>

    <!-- Class Features Section -->
    <div class="section">
        <h2>Class Features</h2>
        <ul>
            <li><strong>Divine Health:</strong> Immune to disease</li>
            <li><strong>Aura of Courage:</strong> Allies within 10 feet are immune to being frightened</li>
            <li><strong>Aura of Devotion:</strong> Allies within 10 feet are immune to being charmed</li>
            <li><strong>Cleansing Touch:</strong> End one spell on yourself or an ally within touch range (5 times per long rest)</li>
            <li><strong>Improved Divine Smite:</strong> +1d8 radiant damage on melee attacks</li>
            <li><strong>Lay on Hands:</strong> Heal up to 100 HP per long rest</li>
        </ul>
    </div>

    <!-- Spell Slots Section -->
    <div class="section">
        <h2>Spell Slots</h2>
        <ul>
            <li>4x 1st-level spells per long rest</li>
            <li>3x 2nd-level spells per long rest</li>
            <li>3x 3rd-level spells per long rest</li>
            <li>3x 4th-level spells per long rest</li>
            <li>2x 5th-level spells per long rest</li>
        </ul>
    </div>

    <!-- Spell List Section -->
    <div class="section">
        <h2>Spell List</h2>

        <!-- Level 1 Spells -->
        <h3>Level 1 Spells</h3>
        <table>
            <tr>
                <th>Name</th>
                <th>Save</th>
                <th>Effect</th>
                <th>Range</th>
            </tr>
            <tr>
                <td>Radiant Strike</td>
                <td>-</td>
                <td>1d8+CHA radiant damage</td>
                <td>Melee</td>
            </tr>
            <tr>
                <td>Vow of the Ancients</td>
                <td>-</td>
                <td>Gain temporary HP equal to 1d8 + CHA</td>
                <td>Self</td>
            </tr>
        </table>

        <!-- Level 2 Spells -->
        <h3>Level 2 Spells</h3>
        <table>
            <tr>
                <th>Name</th>
                <th>Save</th>
                <th>Effect</th>
                <th>Range</th>
            </tr>
            <tr>
                <td>Sunburst</td>
                <td>-</td>
                <td>2d6 radiant damage; blinds enemies</td>
                <td>60 feet / 10-foot radius</td>
            </tr>
            <tr>
                <td>Divine Resilience</td>
                <td>-</td>
                <td>Reduce damage by 2d8</td>
                <td>Self</td>
            </tr>
        </table>

        <!-- Level 3 Spells -->
        <h3>Level 3 Spells</h3>
        <table>
            <tr>
                <th>Name</th>
                <th>Save</th>
                <th>Effect</th>
                <th>Range</th>
            </tr>
            <tr>
                <td>Holy Vengeance</td>
                <td>-</td>
                <td>3d8 radiant damage</td>
                <td>Melee</td>
            </tr>
            <tr>
                <td>Celestial Ward</td>
                <td>-</td>
                <td>Gain resistance to all damage for 1 minute</td>
                <td>Self</td>
            </tr>
        </table>

        <!-- Level 4 Spells -->
        <h3>Level 4 Spells</h3>
        <table>
            <tr>
                <th>Name</th>
                <th>Save</th>
                <th>Effect</th>
                <th>Range</th>
            </tr>
            <tr>
                <td>Wrath of the Gods</td>
                <td>-</td>
                <td>4d8 radiant damage</td>
                <td>30 feet / 15-foot radius</td>
            </tr>
            <tr>
                <td>Divine Intervention</td>
                <td>-</td>
                <td>Heal 4d8 HP</td>
                <td>60 feet</td>
            </tr>
        </table>

        <!-- Level 5 Spells -->
        <h3>Level 5 Spells</h3>
        <table>
            <tr>
                <th>Name</th>
                <th>Save</th>
                <th>Effect</th>
                <th>Range</th>
            </tr>
            <tr>
                <td>Judgement</td>
                <td>-</td>
                <td>5d8 radiant damage</td>
                <td>60 feet</td>
            </tr>
            <tr>
                <td>Ascended Form</td>
                <td>-</td>
                <td>Gain immunity to all damage for 1 minute</td>
                <td>Self</td>
            </tr>
        </table>
    </div>

    <!-- Weapon List Section -->
    <div class="section">
        <h2>Weapon List</h2>
        <table>
            <tr>
                <th>Name</th>
                <th>Attack Bonus</th>
                <th>Damage</th>
                <th>Properties</th>
            </tr>
            <tr>
                <td>Greatsword</td>
                <td>+5 (STR + Prof)</td>
                <td>2d6 + 5 slashing</td>
                <td>Two-handed</td>
            </tr>
            <tr>
                <td>Warhammer</td>
                <td>+5 (STR + Prof)</td>
                <td>1d8 + 5 bludgeoning</td>
                <td>Versatile (1d10)</td>
            </tr>
            <tr>
                <td>Javelin</td>
                <td>+5 (STR + Prof)</td>
                <td>1d6 + 5 piercing</td>
                <td>Range 30/120 feet</td>
            </tr>
        </table>
    </div>

    <!-- End of Character Sheet -->
</div>

</body>
</html>