[New Sheet] AMP Year One

New sheet for Third Eye Games RPG "AMP: Year One"
This commit is contained in:
William Barker
2026-01-31 07:58:55 -05:00
parent ba5c81d4e6
commit aeb6259e48
6 changed files with 2733 additions and 0 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 168 KiB

+753
View File
@@ -0,0 +1,753 @@
.charsheet {
border: 2px solid black;
width:825px;
min-width:825px;
min-height:400px;
font-family: "Courier New, serif";
}
/* General Styles */
.charsheet input[type="text"], textarea{
display: inline-block;
color: black;
}
.charsheet textarea{
border-left: black solid 1px;
resize: none;
box-sizing: border-box;
}
.charsheet button{
text-align: left;
color: black;
}
.charsheet button:hover{
background: black;
color: #968c6a;
text-shadow: none;
}
.charsheet input:focus, .charsheet textarea:focus{
outline: none;
}
.charsheet input[type=checkbox]{
opacity: 0;
margin-right: -1.5em;
height: 1em;
width: 1em;
}
.charsheet input[type=checkbox] + span:before{
content: "❌";
border: 2px solid black;
height: 1em;
width: 1em;
color: #00000000;
font-size: 1em;
}
.charsheet input[type=checkbox]:checked + span:before{
color: #000000FF;
}
.charsheet .sheet-hidden {
display:none;
}
/* PAGE 1 */
/* Layout */
.charsheet .sheet-container1 {
display: grid;
grid-template-columns: 200px 200px 200px 200px;
grid-template-rows: auto;
gap: 3px 2px;
grid-template-areas:
"logo bio bio bio"
"skills skills powers powers"
"integrity integrity integrity integrity"
}
.charsheet .sheet-logo {
grid-area: logo;
border: red solid 0px;
}
.charsheet .sheet-bio {
grid-area: bio;
grid-column: 2 / 5;
border: purple dashed 0px;
}
.charsheet .sheet-skills {
grid-area: skills;
grid-column: 1 / 3;
border: red dashed 0px;
}
.charsheet .sheet-powers {
grid-area: powers;
grid-column: 3 / 5;
border: orange dashed 0px;
}
.sheet-two_col_header {
display: grid;
grid-template-columns: auto auto;
justify-content: center;
grid-gap: 10px;
}
.charsheet .sheet-bio1 {
grid-area: bio1;
border: black solid 0px;
}
.charsheet .sheet-integrity {
grid-area: integrity;
grid-column: 1 / 5;
border: purple dashed 0px;
}
.charsheet .sheet-bio2 {
grid-area: bio2;
border: blue solid 0px;
}
.charsheet .sheet-bio3 {
grid-area: bio3;
border: red solid 0px;
}
.charsheet .sheet-basic4 {
grid-area: basic4;
border: black solid 0px;
}
.charsheet .sheet-basic5 {
grid-area: basic5;
border: blue solid 0px;
}
.charsheet .sheet-skills label {
display: inline-block;
vertical-align: top;
text-align: left;
width: 120px;
font-style: italic;
font-weight: bold;
margin: 0px;
border: 0px solid black
}
.charsheet .sheet-appearance {
grid-area: appearance;
margin-top:-13px;
margin-bottom:10px;
}
.charsheet .sheet-attributes {
grid-area: attributes;
}
.charsheet .sheet-skills1 {
grid-area: skills1;
}
.charsheet .sheet-skills2 {
grid-area: skills2;
}
/* Hide actual dot/checkbox */
input[type="radio"],
input[type="checkbox"] {
position: absolute;
opacity: 0;
width: 15px;
cursor: pointer;
z-index: 1;
margin-top: 6px;
}
/* Styles common to fake dot and checkbox */
input[type="radio"] + span::before,
input[type="checkbox"] + span::before {
border: solid 1px #a8a8a8;
line-height: 14px;
text-align: middle;
display: inline-block;
vertical-align: middle;
-moz-box-shadow: 0 0 2px #ccc;
-webkit-box-shadow: 0 0 2px #ccc;
box-shadow: 0 0 2px #ccc;
background: #f6f6f6;
background: -moz-radial-gradient(#f6f6f6, #dfdfdf);
background: -webkit-radial-gradient(#f6f6f6, #dfdfdf);
background: -ms-radial-gradient(#f6f6f6, #dfdfdf);
background: -o-radial-gradient(#f6f6f6, #dfdfdf);
background: radial-gradient(#f6f6f6, #dfdfdf);
}
/* Styles unique to fake checkbox (unchecked) */
input[type="checkbox"] + span::before {
position: relative;
content: "";
opacity: 0.25;
width: 14px;
height: 14px;
font-size: 12px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
}
input[type="radio"].sheet-used + span::before {
content: "✖";
width: 12px;
height: 12px;
font-size: 12px;
-moz-border-radius: 0%;
-webkit-border-radius: 0%;
border-radius: 0%;
}
input[type="radio"].sheet-rndused + span::before {
content: "✖";
width: 12px;
height: 12px;
font-size: 12px;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
border-radius: 50%;
}
input.sheet-zero + span::before {
font-size: 12px;
content: "✖";
opacity: 0.25;
}
input[type="radio"].sheet-rndused2 + span::before {
content: "✖";
width: 12px;
margin-left: 1px;
height: 12px;
font-size: 12px;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
border-radius: 50%;
}
input.sheet-DP1Spec + span::before,
input.sheet-DP2Spec + span::before,
input.sheet-DP3Spec + span::before,
input.sheet-DP4Spec + span::before,
input.sheet-DP5Spec + span::before {
opacity: 1;
margin-bottom: 10px;
}
input.sheet-zero:checked + span::before {
opacity: 0;
}
input.sheet-zero:hover + span::before {
opacity: 1;
}
/* Styles unique to fake checkbox (checked) */
input[type="checkbox"]:checked + span::before {
content: "✖";
color: #a00;
-moz-box-shadow: 0 0 2px transparent;
-webkit-box-shadow: 0 0 2px transparent;
box-shadow: 0 0 2px transparent;
}
/* Remove dot from all radios _after_ selected one */
input[type="radio"]:checked ~ input[type="radio"] + span::before {
content: "";
}
div.sheet-DP,
div.sheet-DP1,
div.sheet-DP2,
div.sheet-DP3,
div.sheet-DP4,
div.sheet-DP5 {
display: inline;
}
input.sheet-DPSpec[type="checkbox"] + span::before {
position: relative;
content: "";
opacity: 1;
width: 14px;
height: 14px;
font-size: 12px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
}
input.sheet-DPSpec[type="checkbox"]:checked + span::before {
content: "✖";
color: #a00;
-moz-box-shadow: 0 0 2px transparent;
-webkit-box-shadow: 0 0 2px transparent;
box-shadow: 0 0 2px transparent;
}
hr.sheet-break-line {
height: 2px;
border-width: 0;
color: black;
background-color: transparent;
width: 80%
}
/* Details Button */
.charsheet button[type=roll].sheet-details::before {
background-image: none;
border: none;
font-family: Pictos;
content: "i";
color: #aba9a4;
}
.charsheet button[type=roll].sheet-details {
background-image: none;
background-color: white;
height: 16px;
border: none;
padding: 0px;
margin: -4px 0px 0px 0px;
}
select
{
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
select.sheet-extrahealth{
height: 17px;
width: 14px;
font-size: 15px;
color: red;
text-align: center;
font-weight: bold;
margin: none;
padding: 0px;
}
/* Basic */
.charsheet .sheet-bio1 .sheet-label, .sheet-bio2 .sheet-label, .sheet-bio3 .sheet-label, .sheet-basic4 .sheet-label, .sheet-basic5 .sheet-label, .sheet-appearance .sheet-label {
width: 70px;
}
.charsheet .sheet-bio input, .sheet-bio2 input, .sheet-bio3 input, .sheet-basic5 input {
width: 175px;
}
.charsheet .sheet-basic3 input {
width: 450px;
}
/* Attributes */
.charsheet .sheet-attributes-header {
color: Black;
width: 100%;
display: block;
text-align: center;
font-size: 1.8em;
font-weight: bold;
border: 0px blue solid;
}
.charsheet .sheet-attributes-header span {
text-transform: uppercase;
}
.charsheet .sheet-subattributes-header {
color: Black;
width: 100%;
display: block;
text-align: center;
font-size: 1.4em;
font-weight: bold;
border: 0px blue solid;
}
.charsheet .sheet-subattributes-header span {
text-transform: uppercase;
}
.charsheet .sheet-attributes label {
width: 54%;
min-width: 33%;
display: inline-block;
font-size: 1.0em;
text-align: left;
border: 0px purple solid;
}
.charsheet .sheet-attributes label.base {
width: 16px;
height: 14px;
display: inline;
text-align: center;
text-transform: uppercase;
font-size: 10px;
vertical-align: text-bottom !important;
border: 0px red solid;
}
.charsheet .sheet-attributes label.other {
width: 29%;
min-width: 20%;
font-size: 1.6em;
display: inline-block;
text-align: left;
border: 0px red solid;
}
.charsheet .sheet-attributes label.afflict {
width: 33%;
min-width: 25%;
display: inline-block;
text-align: right;
margin-left: 10%;
font-size: 1.4em;
border: 0px red solid;
}
.charsheet .sheet-attributes label.corrupt {
width: 79.5%;
min-width: 70%;
display: inline-block;
font-size: 1.6em;
text-align: left;
border: 0px red dashed;
}
.charsheet .sheet-attributes input.afflict {
border: none;
border-bottom: 2px solid black;
text-transform: uppercase;
font-weight: bold;
width: 50%;
text-align: center;
border-radius: 0%;
}
.charsheet .sheet-skill {
border: none;
border-bottom: 2px solid black;
text-transform: uppercase;
font-weight: 500;
font-size: 1.5em;
width: 69%;
border-radius: 0%;
text-align: left;
margin: 8px 8px 0px 0px;
}
.charsheet .sheet-stunt {
height: 16px !important;
border: none;
border-bottom: 2px solid black;
text-transform: capitalize;
font-weight: normal;
margin-left: 20%;
width: 50%;
border-radius: 0%;
text-align: left;
vertical-align: text-bottom !important; /* yet it donesn't work */
}
.charsheet .sheet-qif {
height: 16px !important;
border: none;
border-bottom: 2px solid black;
text-transform: capitalize;
font-weight: normal;
margin-left: 4%;
width: 45%;
border-radius: 0%;
text-align: left;
vertical-align: text-bottom !important; /* yet it donesn't work */
}
.sheet-upper {
text-transform: uppercase;
font-weight: 500;
}
.sheet-capital {
text-transform: capitalize;
}
.charsheet .sheet-trib{
border: 2px #968c6a solid;
width: 4em;
margin: 8px 0px 0px -5px;
display: inline-block;
}
.charsheet .sheet-attlabel select{
width:115px;
display: inline-block;
background: #fff5;
border: black solid 1px;
border-top: none;
border-left: none;
border-radius: 0%;
margin-bottom:0;
}
.charsheet .sheet-norm {
display: inline-block;
vertical-align: top;
width: 185px;
margin: 0px;
border: 0px solid black;
}
.charsheet .sheet-loyalty {
display: inline-block;
vertical-align: top;
width: 100px;
margin: 0px;
border: 0px solid black;
}
.charsheet .sheet-mod {
display: inline-block;
vertical-align: top;
text-align: center;
width: 50px;
height: 18px !important; /* Bad form, but can't locate specificty */
margin: 0px;
border-bottom: 1px solid grey;
}
.charsheet .sheet-comboAction {
display: inline-block;
vertical-align: top;
text-align: center;
width: 290px;
font-style: normal;
font-weight: bold;
padding: 0px;
}
.charsheet .sheet-comboType {
display: inline-block;
vertical-align: top;
text-align: center;
width: 190px;
padding: 0px;
}
.charsheet .sheet-comboNation {
display: inline-block;
vertical-align: top;
text-align: center;
width: 270px;
padding: 0px;
padding-right: 2px;
}
.charsheet .sheet-gray {
background-color: rgb(229, 228, 226);
}
/* CSS Wizardry */
.charsheet .sheet-columns {
display: flex;
justify-content: space-between;
width: 400px;
}
.charsheet .sheet-columns > * {
flex: 1;
}
.charsheet input[type=checkbox].sheet-toggle-show:not(:checked) ~ div.sheet-body,
.charsheet input[type=checkbox].sheet-toggle-hide:checked ~ div.sheet-body {
display: none;
}
.charsheet input[type=checkbox].sheet-toggle-show:checked + span:before,
.charsheet input[type=checkbox].sheet-toggle-hide:checked + span:before{
color: Red;
}
/* End CSS Wizardry */
/* From https://stackoverflow.com/questions/75992689/change-the-label-background-color-when-a-checkbox-is-checked */
input[type="checkbox"] {
display: none;
/*height: 20px; */
text-align: left;
font-size: 1.0em /*!important*/;
}
input[type="checkbox"]:checked + label {
color: DarkRed;
/*height: 20px; */
text-align: left;
font-size: 1.0em /*!important*/;
}
/* Darkmode from Aborea - Don't know if needed */
body.sheet-darkmode button,
body.sheet-darkmode input,
body.sheet-darkmode optgroup,
body.sheet-darkmode select,
body.sheet-darkmode textarea,
body.sheet-darkmode .charsheet {
color: #eee
}
body.sheet-darkmode .btn,
body.sheet-darkmode .btn.btn-default {
color: #c8c3bc;
text-shadow: rgba(24,26,27,.75) 0px 1px 1px;
background-color: #1e2021;
background-image: linear-gradient(#181a1b, #26292b);
border-color: #3e4446 #3e4446 #43494c;
box-shadow: rgba(24,26,27,.2) 0px 1px 0px inset,rgba(0,0,0,.05) 0px 1px 2px
}
body.sheet-darkmode .sheet-rolltemplate-check button {
background-color: Brown ;
}
/* Buttons Styling */
.charsheet button[type=action].sheet-textButton,
.charsheet button[type=roll].sheet-textButton {
background-color: transparent;
color: black;
border: none;
height: 18px;
width: 136px;
font-size: 1.8em;
font-weight: bold;
text-align: left;
}
.charsheet button[type=roll].sheet-textButton::before,
.charsheet button[type=action].sheet-textButton::before {
content: "" !important;
}
button[type=action]:hover, button[type=roll]:hover {
background-color: rgba(255,255,0,0.3)!important;
}
/*End Button Styling*/
/* Roll Template */
/* Check, Melee, Ranged Manifest Template */
.sheet-rolltemplate-check .sheet-container,
.sheet-rolltemplate-display .sheet-container,
.sheet-rolltemplate-complication .sheet-container {
color: Black;
background-color: #ffffff;
border: 1px solid;
padding: 2px;
width: 189px;
}
.sheet-rolltemplate-melee .sheet-container {
background-color: rgb(153, 0, 0); /* Dark Red */
color: rgb(255, 179, 179); /* Light Red */
border: 3px solid rgb(255, 179, 179);
padding: 2px;
width: 189px;
}
.sheet-rolltemplate-initiative .sheet-container {
background-color: Thistle;
color: Blue;
border: 3px solid Blue;
padding: 2px;
width: 189px;
}
.sheet-rolltemplate-check .sheet-container h1,
.sheet-rolltemplate-display .sheet-container h1,
.sheet-rolltemplate-complication .sheet-container h1,
.sheet-rolltemplate-melee .sheet-container h1,
.sheet-rolltemplate-initiative .sheet-container h1{
color: inherit;
font-size: 1.2em;
font-variant: small-caps;
line-height: 20px;
}
.sheet-rolltemplate-melee div,
.sheet-rolltemplate-initiative div,
.sheet-rolltemplate-complication div,
.sheet-rolltemplate-display div,
.sheet-rolltemplate-check div {
padding: 2px;
}
.sheet-rolltemplate-complication span,
.sheet-rolltemplate-display span,
.sheet-rolltemplate-check span,
.sheet-rolltemplate-melee span,
.sheet-rolltemplate-initiative span {
color: currentColor;
font-family: "Times New Roman", Times, serif;
font-size: 1.2em;
font-variant: small-caps;
line-height: 1.4em;
padding-left: 5px;
text-align: left;
}
.sheet-rolltemplate-complication .sheet-subheader,
.sheet-rolltemplate-display .sheet-subheader,
.sheet-rolltemplate-check .sheet-subheader,
.sheet-rolltemplate-melee .sheet-subheader,
.sheet-rolltemplate-initiative .sheet-subheader {
color: currentColor;
font-size: 1em;
font-style: italic;
}
.sheet-rolltemplate-display .sheet-arrow-right,
.sheet-rolltemplate-check .sheet-arrow-right,
.sheet-rolltemplate-melee .sheet-arrow-right,
.sheet-rolltemplate-initiative .sheet-arrow-right {
border-bottom: 3px solid transparent;
border-left: 180px solid currentColor;
border-top: 3px solid transparent;
}
.sheet-rolltemplate-complication .sheet-arrow-right {
border-bottom: 2px solid transparent;
border-left: 180px solid Crimson;
border-top: 2px solid transparent;
}
.sheet-rolltemplate-melee .sheet-tcat,
.sheet-rolltemplate-initiative .sheet-tcat,
.sheet-rolltemplate-complication .sheet-tcat,
.sheet-rolltemplate-display .sheet-tcat,
.sheet-rolltemplate-check .sheet-tcat {
font-style: italic;
}
.sheet-rolltemplate-complication .inlinerollresult,
.sheet-rolltemplate-check .inlinerollresult {
/*background-color: #ffffff;*/
background-color: LightGray !important;
border: none;
}
.sheet-rolltemplate-initiative .inlinerollresult,
.sheet-rolltemplate-melee .inlinerollresult {
color: Red;
background-color: Yellow;
border: none;
}
.sheet-rolltemplate-check .inlinerollresult.fullcrit {
color: #3FB315;
border: none;
}
.sheet-rolltemplate-check .inlinerollresult.fullfail {
color: #B31515;
border: none;
}
.sheet-rolltemplate-check .inlinerollresult.importandivoll {
color: #4A57ED;
border: none;
}
/* End Check, Ranged, Initiative & Manifest templates*/
File diff suppressed because it is too large Load Diff
Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

+9
View File
@@ -0,0 +1,9 @@
{
"html": "AMPYearOne.html",
"css": "AMPYearOne.css",
"authors": "Vialmada",
"preview": "AMPYearOne.png",
"roll20userid": "6040293",
"instructions": "# AMP Year One is an **unofficial** character sheet for Third Eye Games RPG. If you have any questions or comments, please contact Vialmada.",
"legacy": false
}
+164
View File
@@ -0,0 +1,164 @@
{
"handle-c": "Handle:",
"sapName-c": "Sap Name:",
"name-c": "Name:",
"player-c": "Player:",
"primaryStrain-c": "Primary Strain:",
"startingJuice-c": "Starting Juice:",
"affiliation-c": "Affiliation:",
"description-c": "Description:",
"personality-c": "Personality:",
"xpTotal-c": "XP Total:",
"xpSpent-c": "XP Spent:",
"skills-u": "SKILLS",
"athletics-c": "Athletics",
"beastHandling-c": "Beast Handling",
"crafts-c": "Crafts",
"deception-c": "Deception",
"discipline-c": "Discipline",
"empathy-c": "Empathy",
"fighting-c": "Fighting",
"fortitude-c": "Fortitude",
"intimidation-c": "Intimidation",
"intuition-c": "Intuition",
"knowledge-c": "Knowledge",
"marksmanship-c": "Marksmanship",
"might-c": "Might",
"medicine-c": "Medicine",
"perception-c": "Perception",
"performance-c": "Performance",
"persuasion-c": "Persuasion",
"speed-c": "Speed",
"stealth-c": "Stealth",
"survival-c": "Survival",
"technology-c": "Technology",
"travel-c": "Travel",
"powers-u": "POWERS",
"primary-c": "Primary",
"coreAbility-c": "Core Ability",
"augments-c": "Augments",
"secondary-c": "Secondary",
"tertiary-c": "Tertiary",
"specialties-u": "SPECIALTIES",
"loyalties-u": "LOYALTIES",
"community-c": "Community",
"comrades-c": "Comrades",
"humanity-c": "Humanity",
"justice-c": "Justice",
"love-c": "Love",
"perfection-c": "Perfection",
"self-c": "Self",
"truth-c": "Truth",
"combat and misc.": "COMBAT and MISC.",
"initiative-c": "Initiative",
"strengthBonus-c": "Str Bonus",
"carry/lift-c": "Carry/Lift",
"ar-u": "AR",
"movementNormal-c": "Move: Normal",
"running-c": "Running",
"jump-c": "Jump H/V",
"flight-c": "Flight",
"favouredAttacks-c": "Fav. Attacks",
"check-c": "Check",
"damage-c": "Damage",
"favAttack1-c": "Favorite Attack 1",
"displayFavAttack1-c": "Display Favorite Attack 1",
"favAttack2-c": "Favorite Attack 2",
"displayFavAttack2-c": "Display Favorite Attack 2",
"favAttack3-c": "Favorite Attack 3",
"displayFavAttack3-c": "Display Favorite Attack 3",
"favAttack4-c": "Favorite Attack 4",
"displayFavAttack4-c": "Display Favorite Attack 4",
"favAttack5-c": "Favorite Attack 5",
"displayFavAttack5-c": "Display Favorite Attack 5",
"favAttack6-c": "Favorite Attack 6",
"displayFavAttack6-c": "Display Favorite Attack 6",
"gifts-u": "GIFTS",
"drawbacks-u": "DRAWBACKS",
"juice-c": "Juice",
"max-c": "Max:",
"current-c": "Current:",
"notes-c": "Notes",
"integrity-u": "INTEGRITY",
"painPenalty-c":"Pain Penalty",
"comboRolls-c":"Combo Rolls",
"first-c": "First",
"second-c": "Second",
"singleRoll-c":"Single Roll",
"comboSuggestions-c":"Common Skill Combos Suggestions",
"type-c":"Type",
"actionReaction-c":"Action or Reaction",
"skillCombo-c":"Skill Combo",
"commonCombos-c": "Common Combos",
"inflictHarm-c": "Inflict Harm",
"inflictPain-c": "Inflict Pain",
"feintDistract-c": "Feint/Distract",
"prepare-c": "Prepare",
"grab-c": "Grab",
"breakGrab-c": "Break Grab",
"changeEmotion-c": "Change Emotion",
"knockBack-c": "Knock Back",
"knockDown-c": "Knock Down",
"touch-c": "Touch",
"aim-c": "Aim",
"move-c": "Move",
"block-c": "Block",
"dodge-c": "Dodge",
"push-c": "Push",
"findCover-c": "Find Cover",
"catch-c": "Catch",
"resist-c": "Resist",
"protect-c": "Protect",
"fighting-c": "Fighting",
"fightingCrafts-c": "Fighting + Crafts",
"marksmanshipAthletics-c": "Marksmanship + Athletics",
"marksmanship-c": "Marksmanship",
"fightingStealth-c": "Fighting + Stealth",
"fightingMight-c": "Fighting + Might",
"fightingDeception-c": "Fighting + Deception",
"mightAthletics-c": "Might + Athletics (Strength)",
"mightSpeed-c": "Might + Speed",
"mightFighting-c": "Might + Fighting",
"intimidationFighting-c": "Intimidation + Fighting",
"mightCrafts-c": "Might + Crafts",
"fightingSpeed-c": "Fighting + Speed",
"marksmanshipFighting-c": "Marksmanship + Fighting",
"marksmanshipPerception-c": "Marksmanship + Perception",
"athleticsSpeed-c": "Athletics + Speed",
"fightingAthletics-c": "Fighting + Athletics",
"speedPerception-c": "Speed + Perception",
"fightingDiscipline-c": "Fighting + Discipline",
"perceptionSpeed-c": "Perception + Speed",
"fortitudeSpeed-c": "Fortitude + Speed",
"punchKickOrUseWeapon-c": "Punch, kick or use weapon",
"throwWeapon-c": "Throw weapon",
"useFirearm-c": "Use firearm",
"suckerPunch-c": "Sucker punch",
"gutPunch-c": "Gut punch",
"initiateGrab-c": "Initiate Grab",
"humanShield-c": "Human Shield",
"strangle-c": "Strangle",
"slipFree-c": "Slip free",
"shove-c": "Shove",
"shieldSlam-c": "Shield Slam",
"sweep-c": "Sweep",
"touch-c": "Touch",
"forwardBlock-c": "Forward Block",
"intimidateYourFoe-c": "Intimidate your foe",
"parryWeapon-c": "Parry with weapon",
"avoidSword-c": "Avoid a sword",
"resistDistracted-c": "Resist being distracted",
"avoidTrap-c": "Avoid a Trap",
"iOpponent-c": "Im your opponent",
"hideUnder-c": "Hide under a table",
"getAway-c": "Get away from me!",
"jumpSweep-c": "Jump over a sweep",
"avoidObstacles-c": "Avoid obstacles while running",
"crosshairs-c": "Get them in crosshairs",
"throwSomething-c": "Throw something in the way",
"ripLamppost-c": "Rip lamppost from ground",
"whatThat-c": "Whats that over there?",
"improvisedWeapon-c": "Attack with improvised weapon",
"normal-c": "Normal",
"brutal-c": "Brutal"
}