{% extends "base.html" %} {% block content %} {% if not shop %}

NPC Shops

Browse by category. Shops give the economy its baseline price floor and ceiling.

{% for entry in shops %}

{{ entry.label }}

{{ entry.count }} items stocked.

Enter Shop
{% endfor %}
{% else %}

{{ shop.label }}

Wallet cash buys stock instantly.

Back to Shops
{% for item in items %}

{{ item.name }}

{{ item.description }}

Buy ${{ item.buy_price }} • Sell ${{ item.sell_price }}

{% if item.weapon_damage_max %}

Damage {{ item.weapon_damage_min }}-{{ item.weapon_damage_max }}

{% endif %} {% if item.armor_reduction %}

Armor reduction {{ item.armor_reduction }}

{% endif %} {% if item.home_life_bonus %}

Home life bonus +{{ item.home_life_bonus }}

{% endif %}
{% endfor %}
{% endif %} {% endblock %}