{% extends "base.html" %} {% set active_page = "spells" %} {% block title %}Spell List{% endblock %} {% block content %}

Adventurer Conqueror KingSpell Reference


{% if spells %}
{% for spell in spells %}

{{ spell.name }}

  • Arcane: {{ spell.arcane }}
  • Divine: {{ spell.divine }}
  • Duration: {{ spell.duration }}
  • Range: {{ spell.range }}
{{ spell.description }}
{% endfor %}
{% endif %} {% endblock %}