{% extends "base.html" %} {% block extra_css %} {% endblock %} {% block content %}
Portrait
Identity
Name
{{ character.details.profile.name }}
Title
Organization
Miscellaneous
Created
{{ character.details.created_date }}
Modified
{{ character.details.modified_date }}
Player
{{ character.details.profile.player_name }}
Description
Gender
{{ character.details.profile.gender }}
Age
{{ character.details.profile.age }}
Birthday
{{ character.details.profile.birthday }}
Religion
Height
{{ character.details.profile.height }}
Weight
{{ character.details.profile.weight }}
Size
??
TL
{{ character.details.profile.tech_level }}
Hair
{{ character.details.profile.hair }}
Eyes
{{ character.details.profile.eyes }}
Skin
{{ character.details.profile.skin }}
Hand
{{ character.details.profile.handedness }}
{{ character.details.total_points }} Points
{{ character.unspent_points }}
Unspent
{{ character.race_points }}
Race
{{ character.attr_points }}
Attributes
{{ character.attr_points }}
Advantages
{{ character.disadv_points }}
Disadvantages
{{ character.quirks_points }}
Quirks
{{ character.skills_points }}
Skills
{{ character.spells_points }}
Spells
Primary Attributes
[{{ character.st.points }}]
{{ character.st.value }}
Strength (ST)
[{{ character.dx.points }}]
{{ character.dx.value }}
Dexterity (DX)
[{{ character.iq.points }}]
{{ character.iq.value }}
Intelligence (IQ)
[{{ character.ht.points }}]
{{ character.ht.value }}
Health (HT)
Basic Damage
[20]
{{ character.details.calc.thrust }}
Basic Thrust
[20]
{{ character.details.calc.swing }}
Basic Swing
Secondary Attributes
[{{ character.will.points }}]
{{ character.will.value }}
Will
[{{ character.fright_check.points }}]
{{ character.fright_check.value }}
Fright Check
[{{ character.per.points }}]
{{ character.per.value }}
Perception (Per)
[{{ character.vision.points }}]
{{ character.vision.value }}
Vision
[{{ character.hearing.points }}]
{{ character.hearing.value }}
Hearing
[{{ character.taste_smell.points }}]
{{ character.taste_smell.value }}
Taste & Smell
[{{ character.touch.points }}]
{{ character.touch.value }}
Touch
[{{ character.basic_speed.points }}]
{{ character.basic_speed.value }}
Basic Speed
[{{ character.basic_move.points }}]
{{ character.basic_move.value }}
Basic Move
Point Pools
[{{ character.fp.points }}]
{{ character.fp.current }}
of
{{ character.fp.value }}
Fatigue Points (FP)
[{{ character.hp.points }}]
{{ character.hp.current }}
of
{{ character.hp.value }}
Hit Points (HP)
Hit Locations
Roll
Location
DR
{% for location in character.hit_locations %}
{{ location.calc.roll_range }}
{{ location.table_name }}
{{ location.hit_penalty }}
{{ location.calc.dr.all }}
{% endfor %}
Encumbrance, Move & Dodge
Level
Max Load
Move
Dodge
{% for enc_level in character.enc_levels %}
{{enc_level.max_load }} {{character.weight_unit }}
{{ enc_level.move }}
{{ enc_level.dodge }}
{% endfor %}
Lifting & Moving Things
{% for lift in character.lift_table %}
{{ lift.value }} {{ character.weight_unit }}
{{ lift.label }}
{% endfor %}
±
Reaction
{% for r in character.reaction_modifiers %}
{{ r.amount }}
{{ r.situation }}
{% endfor %}
±
Condition
{% for r in character.conditional_modifiers %}
{{ r.amount }}
{{ r.situation }}
{% endfor %}
Melee Weapon
Usage
SL
Parry
Block
Damage
Reach
ST
{% for w in character.melee_weapons %}
{{ w.name }}
{{ w.usage }}
{{ w.skill_level }}
{{ w.parry }}
{{ w.block }}
{{ w.damage }} cut
{{ w.reach }}*
{{ w.strength }}
{% endfor %}
Ranged Weapon
Usage
SL
Acc
Range
Damage
RoF
Shots
Bulk
Recoil
ST
{% for w in character.ranged_weapons %}
{{ w.name }}
Thrown
{{ w.skill_level }}
{{ w.acc }}
{{ w.range }}
{{ w.damage }}
{{ w.rof }}
{{ w.shots }}
{{ w.bulk }}
{{ w.recoil }}
{{ w.strength }}
{% endfor %}
Trait
Pts
{% for trait in character.traits %}
{{ trait.name }}
{{ trait.notes }}
{{ trait.points }}
{{ trait.reference }}
{% endfor %}
Skill / Technique
SL
RSL
Pts
{% for skill in character.skills %}
{{ skill.name }}
{{ skill.level }}
{{ skill.rsl }}
{{ skill.points }}
{{ skill.reference }}
{% endfor %}
Spell
College
SL
RSL
Pts
{% for spell in character.spells %}
{{ spell.name }}
{{ spell.notes | safe }}
{{ spell.college }}
{{ spell.level }}
{{ spell.rsl }}
{{ spell.points }}
{{ spell.reference }}
{% endfor %}
#
Carried Equipment (18.75 lb; $485)
Uses
TL
LC
{% for item in character.equipment %}
{{ item.quantity }}
{{ item.name }}
{{ item.notes }}
0
{{ item.tech_level }}
{{ item.value }}
{{ item.weight }}
{{ item.ext_value }}
{{ item.ext_weight}}
{{ item.ref }}
{% endfor %}
#
Other Equipment ($0)
Uses
TL
LC
Note
{% endblock %}