{% extends "base.html" %} {% block title %}{{ character.name }} - Code of Conquest{% endblock %} {% block content %}

{{ character.name }}

Level {{ character.level }} {{ character.player_class.name }}

Character Information

Class: {{ character.player_class.name }}
Origin: {{ character.origin_name }}
Level: {{ character.level }}
Experience: {{ character.experience }} XP
Gold: {{ character.gold }} 💰
Skill Points: {{ character.available_skill_points }}

Base Statistics

STR {{ character.base_stats.strength }}
DEX {{ character.base_stats.dexterity }}
CON {{ character.base_stats.constitution }}
INT {{ character.base_stats.intelligence }}
WIS {{ character.base_stats.wisdom }}
CHA {{ character.base_stats.charisma }}

Derived Statistics

Hit Points: {{ character.current_hp }} / {{ character.max_hp }}
Mana Points: {{ character.base_stats.mana_points }}
Defense: {{ character.base_stats.defense }}
Resistance: {{ character.base_stats.resistance }}

Unlocked Skills

{% if character.unlocked_skills %}
{% for skill_id in character.unlocked_skills %}
{{ skill_id }}
{% endfor %}
{% else %}

No skills unlocked yet.

{% endif %} Manage Skills

Equipment

{% if character.equipped %}
{% for slot, item in character.equipped.items() %}
{{ slot|title }}: {{ item.name }}
{% endfor %}
{% else %}

No equipment equipped.

{% endif %}

Inventory

{% if character.inventory %}
{% for item in character.inventory %}
{{ item.name }} {{ item.item_type }}
{% endfor %}
{% else %}

Inventory is empty.

{% endif %}

Active Quests

{% if character.active_quests %}
{% for quest_id in character.active_quests %}
{{ quest_id }}
{% endfor %}
{% else %}

No active quests.

{% endif %}

Origin: {{ character.origin.name }}

{{ character.origin.description }}

Starting Location

{{ character.origin.starting_location.name }} ({{ character.origin.starting_location.region }})

{{ character.origin.starting_location.description }}

{% endblock %}