48 lines
2.9 KiB
HTML
48 lines
2.9 KiB
HTML
{% set locations = articles | selectattr('category', 'in', ['locations']) | list | sort(attribute=date) %}
|
|
<div class='box curled'>
|
|
<h2>A Hopper's Guide To<br>The Dewa Q'Asos</h2>
|
|
<h3>Cites, Towns, and Settlements</h3>
|
|
<div class='thumbnail'><a href='/images/overland/dewa_qasos.png'><img src='/images/overland/dewa_qasos_thumb.png' alt="A hand-drawn map of the Dewa Q'Asos region" /></a></div>
|
|
<span class="summary">
|
|
The Dewa Q'Asos region between the Hoard's Vault mountain range in the north and the great scar of Tano's Edge
|
|
to the south is home to a managerie of peoples. Settlements range from lawless frontier towns to the
|
|
mighty city-state of Gazach Noch. Traveling the roads may be inherently less risky than the open desert, but
|
|
danger and intrigue await even the hardiest of traveller. Mind your manners, and keep your spells to yourself;
|
|
the law is mostly whatever you can get away with.
|
|
<br>
|
|
<p>
|
|
Besides these settlements, as your adventure progresses you may also encounter the settlements of those who call the Sahwat Desert their
|
|
home; those locations are also included below.
|
|
</p>
|
|
</span>
|
|
{% for location in locations if 'region' not in location.tags %}
|
|
<div class='location' onclick="window.location.href='{{ SITEURL }}/{{ location.url }}'">
|
|
<h5><a class='title' href="{{ SITEURL }}/{{ location.url }}" rel="bookmark" title="{{location.title|striptags}}">{{ location.title }}</a></h5>
|
|
<span class="summary"> {{ location.summary }} </span>
|
|
</div>
|
|
{% endfor %}
|
|
<br>
|
|
<h3>The Sahwat Desert</h3>
|
|
<div class='thumbnail'><a href='/images/overland/sahwat_desert_region_map_occluded.png'><img src='/images/overland/sahwat_occluded_thumb.png' alt="The known regions of the Sawhat Desert" /></a></div>
|
|
<span class='summary'>
|
|
The Sahwat Desert is a vast expanse covering thousands of miles of the Dewa Q'Asos region in southwestern Vosh, from
|
|
Tano's Edge to the Golden Sea. It is comprised of a multitude of regions each with its own geography, weather,
|
|
and secrets, ranging from inhospitable to deadly. At the heart of the desert lies an impenetrable whirlwind called
|
|
the Heartstorm, through which no one has passed and which is the subject of wild speculation.
|
|
<p>
|
|
<br>
|
|
Travel in the Sahwat is governed by <a href='/mechanics/desert-travel-rules'>the rules for overland travel.</a> Mind how you step, Hopper.
|
|
</p>
|
|
</span>
|
|
|
|
{% for location in locations if 'region' in location.tags %}
|
|
<div class='location' onclick="window.location.href='{{ SITEURL }}/{{ location.url }}'">
|
|
<h5><a class='title' href="{{ SITEURL }}/{{ location.url }}" rel="bookmark" title="{{location.title|striptags}}">{{ location.title }}</a></h5>
|
|
<span class="summary"> {{ location.summary }} </span>
|
|
</div>
|
|
{% endfor %}
|
|
|
|
</div>
|
|
<hr>
|
|
</div>
|