{% extends "base.html" %} {% block content %}

Your Results

{% if results['selected_playbooks']|length > 1 %}

Your Playbooks are:

{% else%}

Your Playbook is:

{% endif %} {%for playbook in results['selected_playbooks'] -%}

The {{ playbook[0]|upper }}{{ playbook[1:] }}

{% if playbook == 'joined' %}
You have duplicated The {{ results['joined_cloned'][0]|upper }}{{ results['joined_cloned'][1:] }}
{% endif %}

{{ playbooks[playbook]['flavour']|safe }}

{% set source = sources[playbooks[playbook]['source']] %}

From the {{ source['title'] }} {{ source['type'] }} by {{ source['author'] }}, published by {{ source['publisher'] }} in {{ source['year'] }}.

Moment of Truth: {{ playbooks[playbook]['moment']|safe }}

Labels:
{% for label in results['selected_playbooks'][playbook] -%} {% endfor %}
{{ label[0]|upper}}{{ label[1:]}}: {{ results['selected_playbooks'][playbook][label] }}

{% endfor %}

How You Fared:

This chart represents how many points you got for each playbook from the source books you selected in all the questions you answered.

{% for playbook in results['playbooks'] -%} {% endfor %}
{{ loop.index }}. The {{ playbook[0]|upper }}{{ playbook[1:] }} {{ (results['playbooks'][playbook]*100/results['max_score'])|round(0) }}% {% for i in range( (results['playbooks'][playbook]*20/results['max_score'])|round(0, 'ceil')|int) -%}X{% endfor %} ({{ results['playbooks'][playbook] }})

Glossary

Labels

In Masks, your character’s attributes are defined by their ‘labels’. This is like the character ability scores in D&D. Mechanically, it gives bonuses or penalties to your rolls. Narratively, it reflects your chances of success given your self image and your confidence in your abilities.

Because everyone plays a teenager, your labels are all about the different dimensions of your self image, and these labels keep shifting all the time as the story progresses and events change the way you see yourself. And this happens a lot. Because, teenagers.

Labels range on a scale of -2 to +3

{% for label in results['display_labels'] -%} {% endfor %}
Danger {{ labels['danger']['flavour'] }} {{ results['display_labels'].remove('danger') if results['display_labels'].remove('danger') is not none else '' }}
Freak {{ labels['freak']['flavour'] }} {{ results['display_labels'].remove('freak') if results['display_labels'].remove('freak') is not none else '' }}
Saviour {{ labels['saviour']['flavour'] }} {{ results['display_labels'].remove('saviour') if results['display_labels'].remove('saviour') is not none else '' }}
Superior {{ labels['superior']['flavour'] }} {{ results['display_labels'].remove('superior') if results['display_labels'].remove('superior') is not none else '' }}
Mundane {{ labels['mundane']['flavour'] }} {{ results['display_labels'].remove('mundane') if results['display_labels'].remove('mundane') is not none else '' }}
{{ label[0]|upper }}{{ label[1:] }} {{ labels[label]['flavour'] }} {{ results['display_labels'].remove(label) if results['display_labels'].remove(label) is not none else '' }}

Your Moment of Truth

In Masks, your Moment of Truth is a defining moment in your character’s life when you are in the spotlight. All eyes are on you, and it is when you prove who you really are. For a moment, you grow into the best version of yourself and you show to everyone who you really are.

What this means mechanically is that, for one scene, you get to narrate what happens as per the script of your moment of truth. You take down a powerful threat, harness unbelievable power, or prove yourself to everyone watching. And then, it locks one of your Labels. That Label can no longer shift.

{% endblock %}