{% extends "base.html" %} {% set active_page = "npcparty" %} {% block title %}NPC Party Generation{% endblock %} {% block content %}

Adventurer Conqueror KingNPC Party Generator


{% if party %}

NPC Party of Size {{ party | length }}

Roll20 Export
{% for npc in party %}

{{ npc.name }}

{{ npc.guild.name }}
Level
{{ npc.level }}
HP
{{ npc.hp }}
AC
{{ npc.armour.ac_mod }}
{{ npc.str }}
Str
{{ npc.int }}
Int
{{ npc.wis }}
Wis
{{ npc.dex }}
Dex
{{ npc.con }}
Con
{{ npc.chr }}
Chr

{{ npc.save_pp }}
P & P
{{ npc.save_pd }}
P & D
{{ npc.save_bb }}
B & B
{{ npc.save_sw }}
S & W
{{ npc.save_sp }}
Spells
  • {% if npc.ranged %} {% endif %}
    NameWorthThrDmg
    {{ npc.melee.name }} {{ npc.melee.gp_value }}gp {{ npc.attack_throw }} {{ npc.melee.damage_die }}
    {{ npc.ranged.name }} {{ npc.ranged.gp_value }}gp {{ npc.attack_throw }} {{ npc.ranged.damage_die }}
    {{ npc.armour.name }} {{ npc.armour.gp_value }}gp
  • {% for level in npc.spell_list() %} {% for spell in npc.spell_list()[level] %} {% endfor %} {% endfor %}
    NameRangeDurationLevel
    {{ spell.name }} {{ spell.range }} {{ spell.duration }} {{ spell.level_for(npc) }}
{% endfor %}
{% endif %}

{Spell Title}

  • Range: {Spell Range}
  • Duration: {Spell Duration}
  • {Spell School}

{Spell Description}

Roll20 Export

Characters to Export:
{% if party %} {% for npc in party %} {% endfor %} {% endif %}

{% endblock %}