Skip to content

Latest commit

Β 

History

History
119 lines (94 loc) Β· 3.6 KB

File metadata and controls

119 lines (94 loc) Β· 3.6 KB
layout default
title Characters
permalink /characters/

Characters of the Chronicle

The players in our tale, as they have been revealed.

{% assign has_characters = false %}

{% if site.data.story_state.characters.protagonists.size > 0 %} {% assign has_characters = true %} {% endif %} {% if site.data.story_state.characters.antagonists.size > 0 %} {% assign has_characters = true %} {% endif %} {% if site.data.story_state.characters.supporting.size > 0 %} {% assign has_characters = true %} {% endif %}

{% if has_characters %}

{% if site.data.story_state.characters.protagonists.size > 0 %}

Protagonists

{% for char in site.data.story_state.characters.protagonists %}

{{ char.name }}

{{ char.role }}

{{ char.description | strip_newlines | truncate: 300 }}

{% if char.status == 'alive' %}🟒 Active{% elsif char.status == 'dead' %}πŸ’€ Deceased{% else %}❓ Unknown{% endif %} {% if char.first_appeared %} Β· First appeared: Chapter {{ char.first_appeared }}{% endif %}

{% endfor %}
{% endif %}

{% if site.data.story_state.characters.antagonists.size > 0 %}

Antagonists

{% for char in site.data.story_state.characters.antagonists %}

{{ char.name }}

{{ char.role }}

{{ char.description | strip_newlines | truncate: 300 }}

{% if char.status == 'alive' %}🟒 Active{% elsif char.status == 'dead' %}πŸ’€ Deceased{% else %}❓ Unknown{% endif %} {% if char.first_appeared %} Β· First appeared: Chapter {{ char.first_appeared }}{% endif %}

{% endfor %}
{% endif %}

{% if site.data.story_state.characters.supporting.size > 0 %}

Supporting Characters

{% for char in site.data.story_state.characters.supporting %}

{{ char.name }}

{{ char.role }}

{{ char.description | strip_newlines | truncate: 300 }}

{% if char.status == 'alive' %}🟒 Active{% elsif char.status == 'dead' %}πŸ’€ Deceased{% else %}❓ Unknown{% endif %} {% if char.first_appeared %} Β· First appeared: Chapter {{ char.first_appeared }}{% endif %}

{% endfor %}
{% endif %}

{% else %}

No characters have been introduced yet. The story awaits its first scene...

{% endif %}


The World

{% if site.data.story_state.world.name %} {{ site.data.story_state.world.name }} Β· {{ site.data.story_state.world.era }}

{{ site.data.story_state.world.description | strip_newlines }}

{% if site.data.story_state.world.locations.size > 0 %}

Known Locations

{% for loc in site.data.story_state.world.locations %}

{{ loc.name }}

{{ loc.description }}

{% endfor %}
{% endif %}

{% if site.data.story_state.magic_system %}

Magic System: {{ site.data.story_state.magic_system.name }}

{{ site.data.story_state.magic_system.description | strip_newlines }}

Costs: {{ site.data.story_state.magic_system.costs }}

Limits: {{ site.data.story_state.magic_system.limits }} {% endif %}

{% endif %}