{% extends "base.html" %} {% block title %}{{ article.title|capitalize }} - {{SITENAME}}{% endblock title %} {% block content %} {% set r = article.metadata.region %}

{{ article.title }}

{% import 'translations.html' as translations with context %} {{ translations.translations_for(article) }}
{% if article.description %}
{{ article.description }}
{% endif %} {{ article.content }}

{{ article.title }}

{{ r.description }}
Size {{ r.size }} sq. miles
Terrain {{ r.terrain }}
Encounters On {{ r.encounters }}
Challenge Rating {{ r.cr }}
Regional Effects
    {% for e in r.regional_effects %}
  • {{ e }}
  • {% endfor %}

Weather

RollEffect
d1{{ r.weather.d1 }}
d2{{ r.weather.d2 }}
d3{{ r.weather.d3 }}
d4{{ r.weather.d4 }}
d5{{ r.weather.d5 }}
d6{{ r.weather.d6 }}
d7{{ r.weather.d7 }}
d8{{ r.weather.d8 }}

Activities

{% for (k, v) in [ ('Travel', r.travel), ('Forage', r.forage), ('Track', r.track), ('Evade', r.evade), ('Survey', r.survey) ] %} {% endfor %}
  DC Resources Notes
{{ k }} {{ v.dc or ""}} {{ v.resources or ""}} {% if v.critical_success %}crit. success = {{ v.critical_success }}
{% endif %} {% if v.critical_failure %}crit. failure = {{ v.critical_failure }}
{% endif %}

{% include "bottom-nav.html" %}
{% endblock %}