mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-08-30 03:40:32 +00:00
Basic Laundry
Take One!
This commit is contained in:
@@ -0,0 +1,171 @@
|
||||
.sheet-main{
|
||||
font-size: 11px;
|
||||
font-family: verdana;
|
||||
}
|
||||
|
||||
input[type="text"], input[type="number"] {
|
||||
font-size: 11px;
|
||||
font-family: verdana;
|
||||
}
|
||||
|
||||
.sheet-table {
|
||||
border: inset; border-color: lightgrey;
|
||||
}
|
||||
|
||||
.sheet-w95 input {
|
||||
width: 95%;
|
||||
}
|
||||
|
||||
/* ROLL TEMPLATES */
|
||||
.sheet-rolltemplate-coc_abilities,
|
||||
.sheet-rolltemplate-coc_sanity,
|
||||
.sheet-rolltemplate-coc_skills,
|
||||
.sheet-rolltemplate-coc_weapons {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-coc_abilities .sheet-roll-table,
|
||||
.sheet-rolltemplate-coc_sanity .sheet-roll-table,
|
||||
.sheet-rolltemplate-coc_skills .sheet-roll-table,
|
||||
.sheet-rolltemplate-coc_weapons .sheet-roll-table {
|
||||
width: 100%;
|
||||
display: table;
|
||||
font-family: cursive;
|
||||
border: 2px solid black;
|
||||
border-spacing: 0;
|
||||
border-collapse: separate;
|
||||
-moz-box-shadow: 2px 2px 5px #000;
|
||||
-webkit-box-shadow: 2px 2px 5px #000;
|
||||
box-shadow: 2px 2px 5px #000;
|
||||
line-height: 25px;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-coc_abilities .sheet-roll-table .sheet-rounded,
|
||||
.sheet-rolltemplate-coc_sanity .sheet-roll-table .sheet-rounded ,
|
||||
.sheet-rolltemplate-coc_skills .sheet-roll-table .sheet-rounded ,
|
||||
.sheet-rolltemplate-coc_weapons .sheet-roll-table .sheet-rounded {
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-coc_abilities .sheet-roll-header,
|
||||
.sheet-rolltemplate-coc_sanity .sheet-roll-header,
|
||||
.sheet-rolltemplate-coc_skills .sheet-roll-header,
|
||||
.sheet-rolltemplate-coc_weapons .sheet-roll-header {
|
||||
display: table-row-group;
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
caption-side: top;
|
||||
width: 100%;
|
||||
background-color: black;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-coc_abilities .sheet-roll-header a ,
|
||||
.sheet-rolltemplate-coc_sanity .sheet-roll-header a,
|
||||
.sheet-rolltemplate-coc_skills .sheet-roll-header a,
|
||||
.sheet-rolltemplate-coc_weapons .sheet-roll-header a {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-coc_abilities .sheet-roll-row,
|
||||
.sheet-rolltemplate-coc_sanity .sheet-roll-row,
|
||||
.sheet-rolltemplate-coc_skills .sheet-roll-row,
|
||||
.sheet-rolltemplate-coc_weapons .sheet-roll-row {
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
background-color: whitesmoke;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-coc_abilities .sheet-roll-row:nth-child(even),
|
||||
.sheet-rolltemplate-coc_sanity .sheet-roll-row:nth-child(even),
|
||||
.sheet-rolltemplate-coc_skills .sheet-roll-row:nth-child(even),
|
||||
.sheet-rolltemplate-coc_weapons .sheet-roll-row:nth-child(even){
|
||||
background-color: #FADABF;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-coc_abilities .sheet-roll-cell,
|
||||
.sheet-rolltemplate-coc_sanity .sheet-roll-cell,
|
||||
.sheet-rolltemplate-coc_skills .sheet-roll-cell,
|
||||
.sheet-rolltemplate-coc_weapons .sheet-roll-cell {
|
||||
padding: 1px 1px 1px 5px;
|
||||
text-align: left;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-coc_abilities .sheet-roll-group2 .sheet-roll-row .sheet-roll-cell,
|
||||
.sheet-rolltemplate-coc_sanity .sheet-roll-group2 .sheet-roll-row .sheet-roll-cell ,
|
||||
.sheet-rolltemplate-coc_skills .sheet-roll-group2 .sheet-roll-row .sheet-roll-cell ,
|
||||
.sheet-rolltemplate-coc_weapons .sheet-roll-group2 .sheet-roll-row .sheet-roll-cell {
|
||||
font-size: .9em;
|
||||
width: 24%;
|
||||
float: right;
|
||||
text-align: right;
|
||||
display: inline;
|
||||
padding: 1px 1px 1px 5px;
|
||||
vertical-align: bottom;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-coc_abilities .sheet-roll-group2 .sheet-roll-row .sheet-roll-cell:first-child,
|
||||
.sheet-rolltemplate-coc_sanity .sheet-roll-group2 .sheet-roll-row .sheet-roll-cell:first-child ,
|
||||
.sheet-rolltemplate-coc_skills .sheet-roll-group2 .sheet-roll-row .sheet-roll-cell:first-child ,
|
||||
.sheet-rolltemplate-coc_weapons .sheet-roll-group2 .sheet-roll-row .sheet-roll-cell:first-child {
|
||||
width: 69%;
|
||||
float: left;
|
||||
text-align: left;
|
||||
padding: 3px 2px 1px 4px;
|
||||
}
|
||||
|
||||
|
||||
.sheet-rolltemplate-coc_abilities .inlinerollresult,
|
||||
.sheet-rolltemplate-coc_sanity .inlinerollresult,
|
||||
.sheet-rolltemplate-coc_skills .inlinerollresult ,
|
||||
.sheet-rolltemplate-coc_weapons .inlinerollresult {
|
||||
background-color: lightgrey;
|
||||
border: 2px solid black;
|
||||
}
|
||||
|
||||
|
||||
.sheet-rolltemplate-coc_abilities .inlinerollresult.fullcrit,
|
||||
.sheet-rolltemplate-coc_sanity .inlinerollresult.fullcrit ,
|
||||
.sheet-rolltemplate-coc_skills .inlinerollresult.fullcrit,
|
||||
.sheet-rolltemplate-coc_weapons .inlinerollresult.fullcrit {
|
||||
color: #FFF;
|
||||
background-color: #3FB315;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-coc_abilities .inlinerollresult.fullfail,
|
||||
.sheet-rolltemplate-coc_sanity .inlinerollresult.fullfail,
|
||||
.sheet-rolltemplate-coc_skills .inlinerollresult.fullfail,
|
||||
.sheet-rolltemplate-coc_weapons .inlinerollresult.fullfail {
|
||||
color: #FFF;
|
||||
background-color: #B31515;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-coc_abilities .inlinerollresult.importantroll,
|
||||
.sheet-rolltemplate-coc_sanity .inlinerollresult.importantroll ,
|
||||
.sheet-rolltemplate-coc_skills .inlinerollresult.importantroll ,
|
||||
.sheet-rolltemplate-coc_weapons .inlinerollresult.importantroll {
|
||||
color: #FFF;
|
||||
background-color: #4A57ED;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-coc_abilities .sheet-roll-text-white,
|
||||
.sheet-rolltemplate-coc_sanity .sheet-roll-text-white,
|
||||
.sheet-rolltemplate-coc_skills .sheet-roll-text-white ,
|
||||
.sheet-rolltemplate-coc_weapons .sheet-roll-text-white {
|
||||
color:white;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-coc_abilities .sheet-roll-text-12px,
|
||||
.sheet-rolltemplate-coc_sanity .sheet-roll-text-12px,
|
||||
.sheet-rolltemplate-coc_skills .sheet-roll-text-12px,
|
||||
.sheet-rolltemplate-coc_weapons .sheet-roll-text-12px {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.sheet-rolltemplate-coc_abilities .sheet-roll-text-right,
|
||||
.sheet-rolltemplate-coc_sanity .sheet-roll-text-right,
|
||||
.sheet-rolltemplate-coc_skills .sheet-roll-text-right,
|
||||
.sheet-rolltemplate-coc_weapons .sheet-roll-text-right {
|
||||
text-align:right;
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
Binary file not shown.
|
After Width: | Height: | Size: 453 KiB |
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"html": "Call_of_Cthulhu_V6.html",
|
||||
"css": "Call_of_Cthulhu_V6.css",
|
||||
"authors": "PadRpg",
|
||||
"roll20userid": "173154",
|
||||
"preview": "call_of_cthulhu_v6.jpg",
|
||||
"instructions": "Character Sheet for Call of Cthulhu 6th Ed, based on the french character sheet from Sans Détour.\n\nNo CSS right now but I will work on it.\n\n!!!! WARNING !!!! most attributes have been modified so your old sheets (German and French) won't be compatible with this version."
|
||||
}
|
||||
@@ -0,0 +1,483 @@
|
||||
/* line 9, style.scss */
|
||||
.charsheet {
|
||||
font-family: 'Roboto', Helvetica, sans-serif;
|
||||
}
|
||||
/* line 16, style.scss */
|
||||
.charsheet div div.sheet-pane {
|
||||
display: none;
|
||||
}
|
||||
/* line 20, style.scss */
|
||||
.charsheet input.sheet-tab,
|
||||
.charsheet input.sheet-tab + span {
|
||||
margin: 0 15px 15px 0;
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
}
|
||||
/* line 27, style.scss */
|
||||
.charsheet input.sheet-tab1:checked ~ .sheet-pane.sheet-maindiv,
|
||||
.charsheet input.sheet-tab2:checked ~ .sheet-pane.sheet-maindiv2 {
|
||||
display: block;
|
||||
}
|
||||
/* line 33, style.scss */
|
||||
.charsheet .sheet-pane {
|
||||
margin-left: -24px;
|
||||
margin-right: -24px;
|
||||
margin-top: -10px;
|
||||
height: 1139px;
|
||||
width: 880px;
|
||||
}
|
||||
/* line 44, style.scss */
|
||||
.charsheet .sheet-pane label {
|
||||
display: block;
|
||||
float: none;
|
||||
width: 100%;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
/* line 51, style.scss */
|
||||
.charsheet .sheet-pane input,
|
||||
.charsheet .sheet-pane textarea {
|
||||
background: rgba(242, 242, 242, 0.5);
|
||||
border: none;
|
||||
padding: 10px;
|
||||
width: 100%;
|
||||
border-radius: 3px;
|
||||
}
|
||||
/* line 61, style.scss */
|
||||
.charsheet .sheet-pane textarea {
|
||||
box-sizing: border-box;
|
||||
width: 100%;
|
||||
}
|
||||
/* line 66, style.scss */
|
||||
.charsheet .sheet-pane input.sheet-encircled {
|
||||
position: absolute;
|
||||
background: none;
|
||||
font-size: 1.5em;
|
||||
text-align: center;
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
border-radius: 25px;
|
||||
border-style: solid;
|
||||
border-width: 0;
|
||||
border-color: #ff0031;
|
||||
font-family: 'Metal Mania', Helvetica, sans-serif;
|
||||
}
|
||||
/* line 80, style.scss */
|
||||
.charsheet .sheet-pane input.sheet-encircled[type="number"] {
|
||||
padding: 10px 1px 10px 15px;
|
||||
}
|
||||
/* line 84, style.scss */
|
||||
.charsheet .sheet-pane input.sheet-encircled.sheet-lg {
|
||||
border-radius: 35px;
|
||||
height: 67px;
|
||||
width: 67px;
|
||||
}
|
||||
/* line 89, style.scss */
|
||||
.charsheet .sheet-pane input.sheet-encircled.sheet-lg + input + button[type="roll"] {
|
||||
position: absolute;
|
||||
border-radius: 20px;
|
||||
height: 39px;
|
||||
width: 39px;
|
||||
}
|
||||
/* line 98, style.scss */
|
||||
.charsheet .sheet-pane input.sheet-encircled.sheet-sm + input + button[type="roll"] {
|
||||
position: absolute;
|
||||
border-radius: 15px;
|
||||
height: 29px;
|
||||
width: 29px;
|
||||
}
|
||||
/* line 106, style.scss */
|
||||
.charsheet .sheet-pane input.sheet-encircled:focus {
|
||||
border-width: 2px;
|
||||
background: rgba(255, 255, 255, 0.4);
|
||||
box-shadow: inset 0px 0px 2px black;
|
||||
}
|
||||
/* line 113, style.scss */
|
||||
.charsheet .sheet-pane input.sheet-mod {
|
||||
background: rgba(255, 255, 255, 0.4);
|
||||
font-size: 1.25em;
|
||||
text-align: center;
|
||||
padding: 3px;
|
||||
width: 25px;
|
||||
border-radius: 10px;
|
||||
position: absolute;
|
||||
/* turn off number arrows/spinners */
|
||||
}
|
||||
/* line 123, style.scss */
|
||||
.charsheet .sheet-pane input.sheet-mod::-webkit-inner-spin-button, .charsheet .sheet-pane input.sheet-mod::-webkit-outer-spin-button {
|
||||
-webkit-appearance: none;
|
||||
margin: 0;
|
||||
}
|
||||
/* line 130, style.scss */
|
||||
.charsheet .sheet-pane fieldset {
|
||||
border: none;
|
||||
padding: 0;
|
||||
}
|
||||
/* line 136, style.scss */
|
||||
.charsheet .sheet-maindiv {
|
||||
background: url("http://s20.postimg.org/bozp7kxel/sheet_final.jpg") no-repeat center center transparent;
|
||||
background-size: cover;
|
||||
/* 1st Row */
|
||||
/* 2nd Row */
|
||||
/* 3rd Row */
|
||||
}
|
||||
/* line 139, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-3colrow {
|
||||
padding-top: 15px;
|
||||
}
|
||||
/* line 142, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-3colrow .sheet-col {
|
||||
box-sizing: border-box;
|
||||
margin: 0;
|
||||
padding: 15px 30px 0 30px;
|
||||
width: 33%;
|
||||
}
|
||||
/* line 149, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-3colrow .sheet-col:nth-child(1) {
|
||||
padding-right: 0px;
|
||||
}
|
||||
/* line 152, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-3colrow .sheet-col:nth-child(1) label {
|
||||
text-align: left;
|
||||
}
|
||||
/* line 157, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-3colrow .sheet-col:nth-child(2) label {
|
||||
text-align: center;
|
||||
}
|
||||
/* line 161, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-3colrow .sheet-col:nth-child(3) {
|
||||
padding-left: 0px;
|
||||
width: 32%;
|
||||
}
|
||||
/* line 165, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-3colrow .sheet-col:nth-child(3) label {
|
||||
text-align: right;
|
||||
}
|
||||
/* line 173, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-1 {
|
||||
height: 275px;
|
||||
position: relative;
|
||||
}
|
||||
/* line 177, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-1 .sheet-ancestry-select {
|
||||
width: 50%;
|
||||
}
|
||||
/* line 183, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-1 .sheet-col:nth-child(1) textarea {
|
||||
height: 174px;
|
||||
}
|
||||
/* line 189, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-1 .sheet-col:nth-child(2) input {
|
||||
height: 40px;
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
/* line 196, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-1 .sheet-col:nth-child(3) textarea {
|
||||
height: 227px;
|
||||
}
|
||||
/* line 201, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-1 .sheet-col .sheet-box {
|
||||
position: relative;
|
||||
}
|
||||
/* line 204, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-1 .sheet-col .sheet-box label.sheet-lvl {
|
||||
display: none;
|
||||
}
|
||||
/* line 209, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-1 .sheet-col .sheet-box input {
|
||||
box-sizing: border-box;
|
||||
width: 100%;
|
||||
}
|
||||
/* line 213, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-1 .sheet-col .sheet-box input[name="attr_ancestry"] {
|
||||
width: 75%;
|
||||
}
|
||||
/* line 217, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-1 .sheet-col .sheet-box input[name="attr_lvl"] {
|
||||
left: 186px;
|
||||
top: -5px;
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
}
|
||||
/* line 231, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-2 {
|
||||
height: 620px;
|
||||
position: relative;
|
||||
}
|
||||
/* line 235, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-2 .sheet-left-col,
|
||||
.charsheet .sheet-maindiv .sheet-row-2 .sheet-right-col {
|
||||
width: 175px;
|
||||
height: 580px;
|
||||
padding: 15px 0 15px 25px;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
}
|
||||
/* line 244, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-2 .sheet-left-col label,
|
||||
.charsheet .sheet-maindiv .sheet-row-2 .sheet-right-col label {
|
||||
text-align: left;
|
||||
}
|
||||
/* line 248, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-2 .sheet-left-col textarea,
|
||||
.charsheet .sheet-maindiv .sheet-row-2 .sheet-right-col textarea {
|
||||
width: 100%;
|
||||
height: 95%;
|
||||
}
|
||||
/* line 254, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-2 .sheet-right-col {
|
||||
padding: 15px 25px 15px 0;
|
||||
right: 0;
|
||||
left: auto;
|
||||
}
|
||||
/* line 259, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-2 .sheet-right-col label {
|
||||
text-align: right;
|
||||
}
|
||||
/* line 266, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-2 .sheet-attr-box label {
|
||||
display: none;
|
||||
}
|
||||
/* line 270, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-2 .sheet-attr-box label.sheet-damage-max {
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
bottom: 300px;
|
||||
right: 430px;
|
||||
font-weight: normal;
|
||||
margin: 0;
|
||||
font-size: 1em;
|
||||
width: auto;
|
||||
}
|
||||
/* line 281, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-2 .sheet-attr-box input {
|
||||
/* Begin positioning attributes */
|
||||
}
|
||||
/* line 285, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-2 .sheet-attr-box input.sheet-lg:not([name="attr_damage"]) {
|
||||
font-size: 2em;
|
||||
}
|
||||
/* line 288, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-2 .sheet-attr-box input.sheet-lg:not([name="attr_health"]) {
|
||||
padding-bottom: 18px;
|
||||
}
|
||||
/* line 294, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-2 .sheet-attr-box input[name="attr_strength"] {
|
||||
left: 297px;
|
||||
top: 100px;
|
||||
}
|
||||
/* line 298, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-2 .sheet-attr-box input[name="attr_strength"] + input + button[type="roll"] {
|
||||
left: 341px;
|
||||
top: 156px;
|
||||
}
|
||||
/* line 303, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-2 .sheet-attr-box input[name="attr_strength"] + .sheet-mod {
|
||||
left: 317px;
|
||||
top: 142px;
|
||||
}
|
||||
/* line 311, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-2 .sheet-attr-box input[name="attr_size"] {
|
||||
left: 235px;
|
||||
top: 152px;
|
||||
}
|
||||
/* line 316, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-2 .sheet-attr-box input[name="attr_intellect"] {
|
||||
right: 303px;
|
||||
top: 100px;
|
||||
}
|
||||
/* line 320, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-2 .sheet-attr-box input[name="attr_intellect"] + input + button[type="roll"] {
|
||||
right: 351px;
|
||||
top: 152px;
|
||||
}
|
||||
/* line 324, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-2 .sheet-attr-box input[name="attr_intellect"] + .sheet-mod {
|
||||
right: 323px;
|
||||
top: 143px;
|
||||
}
|
||||
/* line 330, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-2 .sheet-attr-box input[name="attr_perception"] {
|
||||
right: 245px;
|
||||
top: 93px;
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
/* line 335, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-2 .sheet-attr-box input[name="attr_perception"] + input + button[type="roll"] {
|
||||
right: 270px;
|
||||
top: 136px;
|
||||
}
|
||||
/* line 339, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-2 .sheet-attr-box input[name="attr_perception"] + .sheet-mod {
|
||||
right: 259px;
|
||||
top: 122px;
|
||||
font-size: 1em;
|
||||
line-height: 1em;
|
||||
padding: 2px 0;
|
||||
width: 20px;
|
||||
}
|
||||
/* line 349, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-2 .sheet-attr-box input[name="attr_agility"] {
|
||||
left: 221px;
|
||||
top: 280px;
|
||||
}
|
||||
/* line 353, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-2 .sheet-attr-box input[name="attr_agility"] + input + button[type="roll"] {
|
||||
left: 285px;
|
||||
top: 286px;
|
||||
}
|
||||
/* line 357, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-2 .sheet-attr-box input[name="attr_agility"] + .sheet-mod {
|
||||
left: 240px;
|
||||
top: 322px;
|
||||
}
|
||||
/* line 362, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-2 .sheet-attr-box input[name="attr_speed"] {
|
||||
left: 198px;
|
||||
top: 200px;
|
||||
}
|
||||
/* line 367, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-2 .sheet-attr-box input[name="attr_will"] {
|
||||
right: 227px;
|
||||
top: 280px;
|
||||
}
|
||||
/* line 371, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-2 .sheet-attr-box input[name="attr_will"] + input + button[type="roll"] {
|
||||
right: 290px;
|
||||
top: 285px;
|
||||
}
|
||||
/* line 375, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-2 .sheet-attr-box input[name="attr_will"] + .sheet-mod {
|
||||
right: 248px;
|
||||
top: 321px;
|
||||
}
|
||||
/* line 380, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-2 .sheet-attr-box input[name="attr_insanity"] {
|
||||
right: 241px;
|
||||
top: 218px;
|
||||
}
|
||||
/* line 386, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-2 .sheet-attr-box input[name="attr_health"] {
|
||||
bottom: 118px;
|
||||
left: 405px;
|
||||
}
|
||||
/* line 390, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-2 .sheet-attr-box input[name="attr_healing"] {
|
||||
left: 416px;
|
||||
bottom: 196px;
|
||||
height: 42px;
|
||||
width: 42px;
|
||||
}
|
||||
/* line 397, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-2 .sheet-attr-box input[name="attr_defense"] {
|
||||
bottom: 155px;
|
||||
left: 265px;
|
||||
}
|
||||
/* line 401, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-2 .sheet-attr-box input[name="attr_corruption"] {
|
||||
bottom: 155px;
|
||||
right: 271px;
|
||||
}
|
||||
/* line 406, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-2 .sheet-attr-box input[name="attr_power"] {
|
||||
right: 246px;
|
||||
top: 7px;
|
||||
}
|
||||
/* line 410, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-2 .sheet-attr-box input[name="attr_damage"] {
|
||||
bottom: 288px;
|
||||
right: 377px;
|
||||
width: 139px;
|
||||
height: 139px;
|
||||
padding-bottom: 15px;
|
||||
padding-left: 16px;
|
||||
border-radius: 70px;
|
||||
font-size: 3em;
|
||||
color: #ff0031;
|
||||
text-shadow: 1px 1px 1px #000;
|
||||
}
|
||||
/* line 428, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-2 .sheet-attr-box input[name="attr_damage_max"] {
|
||||
bottom: 300px;
|
||||
right: 416px;
|
||||
background: none;
|
||||
box-shadow: none;
|
||||
padding: 0;
|
||||
margin-bottom: 0;
|
||||
font-size: 1em;
|
||||
}
|
||||
/* line 442, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-2colrow .sheet-col {
|
||||
box-sizing: border-box;
|
||||
padding: 0 15px 0 30px;
|
||||
width: 56.5%;
|
||||
margin-right: 0;
|
||||
}
|
||||
/* line 448, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-2colrow .sheet-col.sheet-even {
|
||||
width: 41.5%;
|
||||
padding-left: 0;
|
||||
}
|
||||
/* line 453, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-2colrow .sheet-col label {
|
||||
text-align: left;
|
||||
}
|
||||
/* line 457, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-2colrow .sheet-col textarea {
|
||||
height: 180px;
|
||||
}
|
||||
/* line 465, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-3 label {
|
||||
display: inline-block;
|
||||
}
|
||||
/* line 467, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-3 label:nth-child(1) {
|
||||
width: 38%;
|
||||
}
|
||||
/* line 470, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-3 label:nth-child(2) {
|
||||
width: 10%;
|
||||
}
|
||||
/* line 473, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-3 label:nth-child(3) {
|
||||
width: auto;
|
||||
}
|
||||
/* line 478, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-3 .repeating_weapons + .repcontainer {
|
||||
max-height: 185px;
|
||||
overflow: scroll;
|
||||
}
|
||||
/* line 483, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-3 .attr_weapon_name {
|
||||
display: inline-block;
|
||||
width: 33%;
|
||||
}
|
||||
/* line 488, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-3 select {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
/* line 491, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-3 select.sheet-dtype {
|
||||
width: 55px;
|
||||
}
|
||||
/* line 495, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-3 select.sheet-dnumber {
|
||||
width: 55px;
|
||||
}
|
||||
/* line 500, style.scss */
|
||||
.charsheet .sheet-maindiv .sheet-row-3 .attr_weapon_desc {
|
||||
display: inline-block;
|
||||
}
|
||||
/* line 507, style.scss */
|
||||
.charsheet .sheet-maindiv2 {
|
||||
background: url("http://s20.postimg.org/p61pnke1p/sheet_final_bkg.jpg") no-repeat center center transparent;
|
||||
background-size: cover;
|
||||
}
|
||||
/* line 511, style.scss */
|
||||
.charsheet .sheet-maindiv2 .sheet-row-1 {
|
||||
padding: 15px 30px 0 30px;
|
||||
}
|
||||
/* line 514, style.scss */
|
||||
.charsheet .sheet-maindiv2 .sheet-row-1 label {
|
||||
text-align: left;
|
||||
}
|
||||
@@ -0,0 +1,169 @@
|
||||
{
|
||||
"APP":"APP",
|
||||
"CON":"CON",
|
||||
"DEX":"DEX",
|
||||
"EDU":"EDU",
|
||||
"INT":"INT",
|
||||
"POW":"POW",
|
||||
"SIZ":"SIZ",
|
||||
"STR":"STR",
|
||||
"action":"Action",
|
||||
"aftereffect":"AfterEffect",
|
||||
"aftereffects":"AfterEffects",
|
||||
"age":"Age",
|
||||
"agility":"Agility",
|
||||
"aplomb":"Aplomb",
|
||||
"art":"Arts",
|
||||
"art-place":"Art",
|
||||
"artistic-culture":"Artistic Culture",
|
||||
"artistic-culture-place":"Artistic Culture",
|
||||
"athleticism":"Athleticism",
|
||||
"attitude":"Attitude",
|
||||
"bargain":"Bargain",
|
||||
"bladed-weapons":"Bladed Weapons",
|
||||
"bladed-weapons-name-place":"Bladed Weapons",
|
||||
"bureaucracy":"Bureaucracy",
|
||||
"call-of-cthulhu":"Call Of Cthulu",
|
||||
"cartridge":"Cartridge",
|
||||
"characteristic":"Characteristic",
|
||||
"characteristics-and-rolls":"Characteristics & Rolls",
|
||||
"circles-of-influence":"Circles of Influence",
|
||||
"circumstances":"Circumstances",
|
||||
"close":"Close",
|
||||
"concealment":"Concealment",
|
||||
"configuration":"Configuration",
|
||||
"consulted-books":"Consulted Books",
|
||||
"contact":"Contact",
|
||||
"contact-and-resources":"Contacts & Resources",
|
||||
"contacts":"Contacts",
|
||||
"corpulence":"Corpulence",
|
||||
"craft":"Craft",
|
||||
"craft-place":"Craft",
|
||||
"credit":"Credit",
|
||||
"criminalistics":"Criminalistics",
|
||||
"critical-result":"Critical !",
|
||||
"cthulhu-mythos":"Cthulhu Mythos",
|
||||
"damage":"Damage",
|
||||
"damage-dice":"Damage Dice",
|
||||
"damages":"Damages",
|
||||
"description":"Description",
|
||||
"direction":"Direction",
|
||||
"do-it-yourself":"Do It Yourself",
|
||||
"drive":"Drive",
|
||||
"drive-name-place":"Drive",
|
||||
"earth-science-place":"Earth Sciences",
|
||||
"earth-sciences":"Earth Sciences",
|
||||
"effect":"Effect",
|
||||
"enemy":"Enemy",
|
||||
"equipment":"Equipment",
|
||||
"exotic-weapons":"Exotic Weapons",
|
||||
"exotic-weapons-name-place":"Exotic Weapons",
|
||||
"expertise":"Expertise",
|
||||
"fail-result":"Fail",
|
||||
"far":"Far",
|
||||
"favorite-equipment":"Favorite Equipment",
|
||||
"feet":"Feet",
|
||||
"firearms":"Firearms",
|
||||
"firearms-name-place":"Firearms",
|
||||
"first-aid":"First Aid",
|
||||
"first-name":"FirstName",
|
||||
"formal-sciences":"Formal Sciences",
|
||||
"formal-sciences-place":"Formal Sciences",
|
||||
"game":"Game",
|
||||
"game-name-place":"Game",
|
||||
"gunnery":"Gunnery",
|
||||
"gunnery-name-place":"Gunnery",
|
||||
"hand-to-hand":"Hand To Hand",
|
||||
"hand-to-hand-name-place":"Hand To Hand",
|
||||
"hands":"Hands",
|
||||
"head":"Head",
|
||||
"health":"Health",
|
||||
"hide":"Hide",
|
||||
"hit-points":"Hit Points",
|
||||
"human-sciences":"Human Sciences",
|
||||
"human-sciences-place":"Human Sciences",
|
||||
"hypnosis":"Hypnosis",
|
||||
"impact":"Impact",
|
||||
"imposture":"Imposture",
|
||||
"influence":"Influence",
|
||||
"initial-sanity":"Inital SAN",
|
||||
"insight":"Insight",
|
||||
"interview":"Interview",
|
||||
"intuition":"Intuition",
|
||||
"investigator-info":"Investigator Info",
|
||||
"knowledge":"Knowledge",
|
||||
"known-creatures":"Known Creatures",
|
||||
"known-investigators":"Known Investigators",
|
||||
"language-place":"Language",
|
||||
"languages":"Languages",
|
||||
"last-name":"LastName",
|
||||
"level":"Level",
|
||||
"library-use":"Library Use",
|
||||
"life-sciences":"Life Science",
|
||||
"life-sciences-place":"Life Science",
|
||||
"listen":"Listen",
|
||||
"magic-points":"Magic Points",
|
||||
"manners":"Manners",
|
||||
"medicine":"Medicine",
|
||||
"misc-skill-place":"Misc",
|
||||
"mother-tongue":"Mother Tongue",
|
||||
"mother-tongue-place":"Mother Tongue",
|
||||
"motivation":"Motivation",
|
||||
"name":"Name",
|
||||
"nationality":"Nationality",
|
||||
"navigate":"Navigate",
|
||||
"notes":"Notes",
|
||||
"occult-sciences":"Occult Sciences",
|
||||
"occupation":"Occupation",
|
||||
"opposed":"Opposed",
|
||||
"other-equipment":"Other equipment",
|
||||
"others":"Others",
|
||||
"personal-story":"Personal Stroy",
|
||||
"personal-story-details":"Personal Stroy Details",
|
||||
"personality":"Personality",
|
||||
"persuade":"Persuade",
|
||||
"photography":"Photography",
|
||||
"physical-aftereffects":"Physical AfterEffects",
|
||||
"pilot":"Pilot",
|
||||
"pilot-name-place":"Pilot",
|
||||
"presence":"Presence",
|
||||
"profession":"Profession",
|
||||
"protections":"Protections",
|
||||
"psychoanalysis":"Psychoanalysis",
|
||||
"psychology":"Psychology",
|
||||
"psycological-aftereffects":"Psycological AfterEffects",
|
||||
"public":"Public",
|
||||
"quality-of-life":"Quality of Life",
|
||||
"range":"Range",
|
||||
"rate":"Rate",
|
||||
"result":"Result",
|
||||
"ride":"Ride",
|
||||
"rolls-results":"Rolls results",
|
||||
"sanity":"Sanity",
|
||||
"sanity-max":"SAN Max",
|
||||
"sanity-points":"Sanity Points",
|
||||
"scenario":"Scenario",
|
||||
"sensory":"Sensory",
|
||||
"sex":"Sex",
|
||||
"skill":"Skill",
|
||||
"skills":"Skills",
|
||||
"social-mod":"Social Modificater",
|
||||
"special":"Special",
|
||||
"spiel":"Spiel",
|
||||
"spot-hidden-object":"Spot Hidden Object",
|
||||
"stamina":"Stamina",
|
||||
"stealth":"Stealth",
|
||||
"strength":"Strength",
|
||||
"success-result":"Success",
|
||||
"survival":"Survival",
|
||||
"track":"Track",
|
||||
"unholy-knowledge":"Unholy Knowledge",
|
||||
"value":"Value",
|
||||
"vigilance":"Vigilance",
|
||||
"weapon":"Weapon",
|
||||
"weapons":"Weapons",
|
||||
"whisper-to-guardian":"Only for Guardian",
|
||||
"willpower":"Willpower",
|
||||
"wound-threshold":"WoundThreshold",
|
||||
"wounds":"Wounds"
|
||||
}
|
||||
@@ -0,0 +1,169 @@
|
||||
{
|
||||
"APP":"APP",
|
||||
"CON":"CON",
|
||||
"DEX":"DEX",
|
||||
"EDU":"EDU",
|
||||
"INT":"INT",
|
||||
"POW":"POW",
|
||||
"SIZ":"SIZ",
|
||||
"STR":"STR",
|
||||
"action":"Action",
|
||||
"aftereffect":"AfterEffect",
|
||||
"aftereffects":"AfterEffects",
|
||||
"age":"Age",
|
||||
"agility":"Agility",
|
||||
"aplomb":"Aplomb",
|
||||
"art":"Arts",
|
||||
"art-place":"Art",
|
||||
"artistic-culture":"Artistic Culture",
|
||||
"artistic-culture-place":"Artistic Culture",
|
||||
"athleticism":"Athleticism",
|
||||
"attitude":"Attitude",
|
||||
"bargain":"Bargain",
|
||||
"bladed-weapons":"Bladed Weapons",
|
||||
"bladed-weapons-name-place":"Bladed Weapons",
|
||||
"bureaucracy":"Bureaucracy",
|
||||
"call-of-cthulhu":"Call Of Cthulu",
|
||||
"cartridge":"Cartridge",
|
||||
"characteristic":"Characteristic",
|
||||
"characteristics-and-rolls":"Characteristics & Rolls",
|
||||
"circles-of-influence":"Circles of Influence",
|
||||
"circumstances":"Circumstances",
|
||||
"close":"Close",
|
||||
"concealment":"Concealment",
|
||||
"configuration":"Configuration",
|
||||
"consulted-books":"Consulted Books",
|
||||
"contact":"Contact",
|
||||
"contact-and-resources":"Contacts & Resources",
|
||||
"contacts":"Contacts",
|
||||
"corpulence":"Corpulence",
|
||||
"craft":"Craft",
|
||||
"craft-place":"Craft",
|
||||
"credit":"Credit",
|
||||
"criminalistics":"Criminalistics",
|
||||
"critical-result":"Critical !",
|
||||
"cthulhu-mythos":"Cthulhu Mythos",
|
||||
"damage":"Damage",
|
||||
"damage-dice":"Damage Dice",
|
||||
"damages":"Damages",
|
||||
"description":"Description",
|
||||
"direction":"Direction",
|
||||
"do-it-yourself":"Do It Yourself",
|
||||
"drive":"Drive",
|
||||
"drive-name-place":"Drive",
|
||||
"earth-science-place":"Earth Sciences",
|
||||
"earth-sciences":"Earth Sciences",
|
||||
"effect":"Effect",
|
||||
"enemy":"Enemy",
|
||||
"equipment":"Equipment",
|
||||
"exotic-weapons":"Exotic Weapons",
|
||||
"exotic-weapons-name-place":"Exotic Weapons",
|
||||
"expertise":"Expertise",
|
||||
"fail-result":"Fail",
|
||||
"far":"Far",
|
||||
"favorite-equipment":"Favorite Equipment",
|
||||
"feet":"Feet",
|
||||
"firearms":"Firearms",
|
||||
"firearms-name-place":"Firearms",
|
||||
"first-aid":"First Aid",
|
||||
"first-name":"FirstName",
|
||||
"formal-sciences":"Formal Sciences",
|
||||
"formal-sciences-place":"Formal Sciences",
|
||||
"game":"Game",
|
||||
"game-name-place":"Game",
|
||||
"gunnery":"Gunnery",
|
||||
"gunnery-name-place":"Gunnery",
|
||||
"hand-to-hand":"Hand To Hand",
|
||||
"hand-to-hand-name-place":"Hand To Hand",
|
||||
"hands":"Hands",
|
||||
"head":"Head",
|
||||
"health":"Health",
|
||||
"hide":"Hide",
|
||||
"hit-points":"Hit Points",
|
||||
"human-sciences":"Human Sciences",
|
||||
"human-sciences-place":"Human Sciences",
|
||||
"hypnosis":"Hypnosis",
|
||||
"impact":"Impact",
|
||||
"imposture":"Imposture",
|
||||
"influence":"Influence",
|
||||
"initial-sanity":"Inital SAN",
|
||||
"insight":"Insight",
|
||||
"interview":"Interview",
|
||||
"intuition":"Intuition",
|
||||
"investigator-info":"Investigator Info",
|
||||
"knowledge":"Knowledge",
|
||||
"known-creatures":"Known Creatures",
|
||||
"known-investigators":"Known Investigators",
|
||||
"language-place":"Language",
|
||||
"languages":"Languages",
|
||||
"last-name":"LastName",
|
||||
"level":"Level",
|
||||
"library-use":"Library Use",
|
||||
"life-sciences":"Life Science",
|
||||
"life-sciences-place":"Life Science",
|
||||
"listen":"Listen",
|
||||
"magic-points":"Magic Points",
|
||||
"manners":"Manners",
|
||||
"medicine":"Medicine",
|
||||
"misc-skill-place":"Misc",
|
||||
"mother-tongue":"Mother Tongue",
|
||||
"mother-tongue-place":"Mother Tongue",
|
||||
"motivation":"Motivation",
|
||||
"name":"Name",
|
||||
"nationality":"Nationality",
|
||||
"navigate":"Navigate",
|
||||
"notes":"Notes",
|
||||
"occult-sciences":"Occult Sciences",
|
||||
"occupation":"Occupation",
|
||||
"opposed":"Opposed",
|
||||
"other-equipment":"Other equipment",
|
||||
"others":"Others",
|
||||
"personal-story":"Personal Stroy",
|
||||
"personal-story-details":"Personal Stroy Details",
|
||||
"personality":"Personality",
|
||||
"persuade":"Persuade",
|
||||
"photography":"Photography",
|
||||
"physical-aftereffects":"Physical AfterEffects",
|
||||
"pilot":"Pilot",
|
||||
"pilot-name-place":"Pilot",
|
||||
"presence":"Presence",
|
||||
"profession":"Profession",
|
||||
"protections":"Protections",
|
||||
"psychoanalysis":"Psychoanalysis",
|
||||
"psychology":"Psychology",
|
||||
"psycological-aftereffects":"Psycological AfterEffects",
|
||||
"public":"Public",
|
||||
"quality-of-life":"Quality of Life",
|
||||
"range":"Range",
|
||||
"rate":"Rate",
|
||||
"result":"Result",
|
||||
"ride":"Ride",
|
||||
"rolls-results":"Rolls results",
|
||||
"sanity":"Sanity",
|
||||
"sanity-max":"SAN Max",
|
||||
"sanity-points":"Sanity Points",
|
||||
"scenario":"Scenario",
|
||||
"sensory":"Sensory",
|
||||
"sex":"Sex",
|
||||
"skill":"Skill",
|
||||
"skills":"Skills",
|
||||
"social-mod":"Social Modificater",
|
||||
"special":"Special",
|
||||
"spiel":"Spiel",
|
||||
"spot-hidden-object":"Spot Hidden Object",
|
||||
"stamina":"Stamina",
|
||||
"stealth":"Stealth",
|
||||
"strength":"Strength",
|
||||
"success-result":"Success",
|
||||
"survival":"Survival",
|
||||
"track":"Track",
|
||||
"unholy-knowledge":"Unholy Knowledge",
|
||||
"value":"Value",
|
||||
"vigilance":"Vigilance",
|
||||
"weapon":"Weapon",
|
||||
"weapons":"Weapons",
|
||||
"whisper-to-guardian":"Only for Guardian",
|
||||
"willpower":"Willpower",
|
||||
"wound-threshold":"WoundThreshold",
|
||||
"wounds":"Wounds"
|
||||
}
|
||||
@@ -0,0 +1,169 @@
|
||||
{
|
||||
"APP":"APP",
|
||||
"CON":"CON",
|
||||
"DEX":"DEX",
|
||||
"EDU":"EDU",
|
||||
"INT":"INT",
|
||||
"POW":"POW",
|
||||
"SIZ":"SIZ",
|
||||
"STR":"STR",
|
||||
"action":"Action",
|
||||
"aftereffect":"AfterEffect",
|
||||
"aftereffects":"AfterEffects",
|
||||
"age":"Age",
|
||||
"agility":"Agility",
|
||||
"aplomb":"Aplomb",
|
||||
"art":"Arts",
|
||||
"art-place":"Art",
|
||||
"artistic-culture":"Artistic Culture",
|
||||
"artistic-culture-place":"Artistic Culture",
|
||||
"athleticism":"Athleticism",
|
||||
"attitude":"Attitude",
|
||||
"bargain":"Bargain",
|
||||
"bladed-weapons":"Bladed Weapons",
|
||||
"bladed-weapons-name-place":"Bladed Weapons",
|
||||
"bureaucracy":"Bureaucracy",
|
||||
"call-of-cthulhu":"Call Of Cthulu",
|
||||
"cartridge":"Cartridge",
|
||||
"characteristic":"Characteristic",
|
||||
"characteristics-and-rolls":"Characteristics & Rolls",
|
||||
"circles-of-influence":"Circles of Influence",
|
||||
"circumstances":"Circumstances",
|
||||
"close":"Close",
|
||||
"concealment":"Concealment",
|
||||
"configuration":"Configuration",
|
||||
"consulted-books":"Consulted Books",
|
||||
"contact":"Contact",
|
||||
"contact-and-resources":"Contacts & Resources",
|
||||
"contacts":"Contacts",
|
||||
"corpulence":"Corpulence",
|
||||
"craft":"Craft",
|
||||
"craft-place":"Craft",
|
||||
"credit":"Credit",
|
||||
"criminalistics":"Criminalistics",
|
||||
"critical-result":"Critical !",
|
||||
"cthulhu-mythos":"Cthulhu Mythos",
|
||||
"damage":"Damage",
|
||||
"damage-dice":"Damage Dice",
|
||||
"damages":"Damages",
|
||||
"description":"Description",
|
||||
"direction":"Direction",
|
||||
"do-it-yourself":"Do It Yourself",
|
||||
"drive":"Drive",
|
||||
"drive-name-place":"Drive",
|
||||
"earth-science-place":"Earth Sciences",
|
||||
"earth-sciences":"Earth Sciences",
|
||||
"effect":"Effect",
|
||||
"enemy":"Enemy",
|
||||
"equipment":"Equipment",
|
||||
"exotic-weapons":"Exotic Weapons",
|
||||
"exotic-weapons-name-place":"Exotic Weapons",
|
||||
"expertise":"Expertise",
|
||||
"fail-result":"Fail",
|
||||
"far":"Far",
|
||||
"favorite-equipment":"Favorite Equipment",
|
||||
"feet":"Feet",
|
||||
"firearms":"Firearms",
|
||||
"firearms-name-place":"Firearms",
|
||||
"first-aid":"First Aid",
|
||||
"first-name":"FirstName",
|
||||
"formal-sciences":"Formal Sciences",
|
||||
"formal-sciences-place":"Formal Sciences",
|
||||
"game":"Game",
|
||||
"game-name-place":"Game",
|
||||
"gunnery":"Gunnery",
|
||||
"gunnery-name-place":"Gunnery",
|
||||
"hand-to-hand":"Hand To Hand",
|
||||
"hand-to-hand-name-place":"Hand To Hand",
|
||||
"hands":"Hands",
|
||||
"head":"Head",
|
||||
"health":"Health",
|
||||
"hide":"Hide",
|
||||
"hit-points":"Hit Points",
|
||||
"human-sciences":"Human Sciences",
|
||||
"human-sciences-place":"Human Sciences",
|
||||
"hypnosis":"Hypnosis",
|
||||
"impact":"Impact",
|
||||
"imposture":"Imposture",
|
||||
"influence":"Influence",
|
||||
"initial-sanity":"Inital SAN",
|
||||
"insight":"Insight",
|
||||
"interview":"Interview",
|
||||
"intuition":"Intuition",
|
||||
"investigator-info":"Investigator Info",
|
||||
"knowledge":"Knowledge",
|
||||
"known-creatures":"Known Creatures",
|
||||
"known-investigators":"Known Investigators",
|
||||
"language-place":"Language",
|
||||
"languages":"Languages",
|
||||
"last-name":"LastName",
|
||||
"level":"Level",
|
||||
"library-use":"Library Use",
|
||||
"life-sciences":"Life Science",
|
||||
"life-sciences-place":"Life Science",
|
||||
"listen":"Listen",
|
||||
"magic-points":"Magic Points",
|
||||
"manners":"Manners",
|
||||
"medicine":"Medicine",
|
||||
"misc-skill-place":"Misc",
|
||||
"mother-tongue":"Mother Tongue",
|
||||
"mother-tongue-place":"Mother Tongue",
|
||||
"motivation":"Motivation",
|
||||
"name":"Name",
|
||||
"nationality":"Nationality",
|
||||
"navigate":"Navigate",
|
||||
"notes":"Notes",
|
||||
"occult-sciences":"Occult Sciences",
|
||||
"occupation":"Occupation",
|
||||
"opposed":"Opposed",
|
||||
"other-equipment":"Other equipment",
|
||||
"others":"Others",
|
||||
"personal-story":"Personal Stroy",
|
||||
"personal-story-details":"Personal Stroy Details",
|
||||
"personality":"Personality",
|
||||
"persuade":"Persuade",
|
||||
"photography":"Photography",
|
||||
"physical-aftereffects":"Physical AfterEffects",
|
||||
"pilot":"Pilot",
|
||||
"pilot-name-place":"Pilot",
|
||||
"presence":"Presence",
|
||||
"profession":"Profession",
|
||||
"protections":"Protections",
|
||||
"psychoanalysis":"Psychoanalysis",
|
||||
"psychology":"Psychology",
|
||||
"psycological-aftereffects":"Psycological AfterEffects",
|
||||
"public":"Public",
|
||||
"quality-of-life":"Quality of Life",
|
||||
"range":"Range",
|
||||
"rate":"Rate",
|
||||
"result":"Result",
|
||||
"ride":"Ride",
|
||||
"rolls-results":"Rolls results",
|
||||
"sanity":"Sanity",
|
||||
"sanity-max":"SAN Max",
|
||||
"sanity-points":"Sanity Points",
|
||||
"scenario":"Scenario",
|
||||
"sensory":"Sensory",
|
||||
"sex":"Sex",
|
||||
"skill":"Skill",
|
||||
"skills":"Skills",
|
||||
"social-mod":"Social Modificater",
|
||||
"special":"Special",
|
||||
"spiel":"Spiel",
|
||||
"spot-hidden-object":"Spot Hidden Object",
|
||||
"stamina":"Stamina",
|
||||
"stealth":"Stealth",
|
||||
"strength":"Strength",
|
||||
"success-result":"Success",
|
||||
"survival":"Survival",
|
||||
"track":"Track",
|
||||
"unholy-knowledge":"Unholy Knowledge",
|
||||
"value":"Value",
|
||||
"vigilance":"Vigilance",
|
||||
"weapon":"Weapon",
|
||||
"weapons":"Weapons",
|
||||
"whisper-to-guardian":"Only for Guardian",
|
||||
"willpower":"Willpower",
|
||||
"wound-threshold":"WoundThreshold",
|
||||
"wounds":"Wounds"
|
||||
}
|
||||
@@ -0,0 +1,169 @@
|
||||
{
|
||||
"APP":"APP",
|
||||
"CON":"CON",
|
||||
"DEX":"DEX",
|
||||
"EDU":"EDU",
|
||||
"INT":"INT",
|
||||
"POW":"POW",
|
||||
"SIZ":"SIZ",
|
||||
"STR":"STR",
|
||||
"action":"Action",
|
||||
"aftereffect":"AfterEffect",
|
||||
"aftereffects":"AfterEffects",
|
||||
"age":"Age",
|
||||
"agility":"Agility",
|
||||
"aplomb":"Aplomb",
|
||||
"art":"Arts",
|
||||
"art-place":"Art",
|
||||
"artistic-culture":"Artistic Culture",
|
||||
"artistic-culture-place":"Artistic Culture",
|
||||
"athleticism":"Athleticism",
|
||||
"attitude":"Attitude",
|
||||
"bargain":"Bargain",
|
||||
"bladed-weapons":"Bladed Weapons",
|
||||
"bladed-weapons-name-place":"Bladed Weapons",
|
||||
"bureaucracy":"Bureaucracy",
|
||||
"call-of-cthulhu":"Call Of Cthulu",
|
||||
"cartridge":"Cartridge",
|
||||
"characteristic":"Characteristic",
|
||||
"characteristics-and-rolls":"Characteristics & Rolls",
|
||||
"circles-of-influence":"Circles of Influence",
|
||||
"circumstances":"Circumstances",
|
||||
"close":"Close",
|
||||
"concealment":"Concealment",
|
||||
"configuration":"Configuration",
|
||||
"consulted-books":"Consulted Books",
|
||||
"contact":"Contact",
|
||||
"contact-and-resources":"Contacts & Resources",
|
||||
"contacts":"Contacts",
|
||||
"corpulence":"Corpulence",
|
||||
"craft":"Craft",
|
||||
"craft-place":"Craft",
|
||||
"credit":"Credit",
|
||||
"criminalistics":"Criminalistics",
|
||||
"critical-result":"Critical !",
|
||||
"cthulhu-mythos":"Cthulhu Mythos",
|
||||
"damage":"Damage",
|
||||
"damage-dice":"Damage Dice",
|
||||
"damages":"Damages",
|
||||
"description":"Description",
|
||||
"direction":"Direction",
|
||||
"do-it-yourself":"Do It Yourself",
|
||||
"drive":"Drive",
|
||||
"drive-name-place":"Drive",
|
||||
"earth-science-place":"Earth Sciences",
|
||||
"earth-sciences":"Earth Sciences",
|
||||
"effect":"Effect",
|
||||
"enemy":"Enemy",
|
||||
"equipment":"Equipment",
|
||||
"exotic-weapons":"Exotic Weapons",
|
||||
"exotic-weapons-name-place":"Exotic Weapons",
|
||||
"expertise":"Expertise",
|
||||
"fail-result":"Fail",
|
||||
"far":"Far",
|
||||
"favorite-equipment":"Favorite Equipment",
|
||||
"feet":"Feet",
|
||||
"firearms":"Firearms",
|
||||
"firearms-name-place":"Firearms",
|
||||
"first-aid":"First Aid",
|
||||
"first-name":"FirstName",
|
||||
"formal-sciences":"Formal Sciences",
|
||||
"formal-sciences-place":"Formal Sciences",
|
||||
"game":"Game",
|
||||
"game-name-place":"Game",
|
||||
"gunnery":"Gunnery",
|
||||
"gunnery-name-place":"Gunnery",
|
||||
"hand-to-hand":"Hand To Hand",
|
||||
"hand-to-hand-name-place":"Hand To Hand",
|
||||
"hands":"Hands",
|
||||
"head":"Head",
|
||||
"health":"Health",
|
||||
"hide":"Hide",
|
||||
"hit-points":"Hit Points",
|
||||
"human-sciences":"Human Sciences",
|
||||
"human-sciences-place":"Human Sciences",
|
||||
"hypnosis":"Hypnosis",
|
||||
"impact":"Impact",
|
||||
"imposture":"Imposture",
|
||||
"influence":"Influence",
|
||||
"initial-sanity":"Inital SAN",
|
||||
"insight":"Insight",
|
||||
"interview":"Interview",
|
||||
"intuition":"Intuition",
|
||||
"investigator-info":"Investigator Info",
|
||||
"knowledge":"Knowledge",
|
||||
"known-creatures":"Known Creatures",
|
||||
"known-investigators":"Known Investigators",
|
||||
"language-place":"Language",
|
||||
"languages":"Languages",
|
||||
"last-name":"LastName",
|
||||
"level":"Level",
|
||||
"library-use":"Library Use",
|
||||
"life-sciences":"Life Science",
|
||||
"life-sciences-place":"Life Science",
|
||||
"listen":"Listen",
|
||||
"magic-points":"Magic Points",
|
||||
"manners":"Manners",
|
||||
"medicine":"Medicine",
|
||||
"misc-skill-place":"Misc",
|
||||
"mother-tongue":"Mother Tongue",
|
||||
"mother-tongue-place":"Mother Tongue",
|
||||
"motivation":"Motivation",
|
||||
"name":"Name",
|
||||
"nationality":"Nationality",
|
||||
"navigate":"Navigate",
|
||||
"notes":"Notes",
|
||||
"occult-sciences":"Occult Sciences",
|
||||
"occupation":"Occupation",
|
||||
"opposed":"Opposed",
|
||||
"other-equipment":"Other equipment",
|
||||
"others":"Others",
|
||||
"personal-story":"Personal Stroy",
|
||||
"personal-story-details":"Personal Stroy Details",
|
||||
"personality":"Personality",
|
||||
"persuade":"Persuade",
|
||||
"photography":"Photography",
|
||||
"physical-aftereffects":"Physical AfterEffects",
|
||||
"pilot":"Pilot",
|
||||
"pilot-name-place":"Pilot",
|
||||
"presence":"Presence",
|
||||
"profession":"Profession",
|
||||
"protections":"Protections",
|
||||
"psychoanalysis":"Psychoanalysis",
|
||||
"psychology":"Psychology",
|
||||
"psycological-aftereffects":"Psycological AfterEffects",
|
||||
"public":"Public",
|
||||
"quality-of-life":"Quality of Life",
|
||||
"range":"Range",
|
||||
"rate":"Rate",
|
||||
"result":"Result",
|
||||
"ride":"Ride",
|
||||
"rolls-results":"Rolls results",
|
||||
"sanity":"Sanity",
|
||||
"sanity-max":"SAN Max",
|
||||
"sanity-points":"Sanity Points",
|
||||
"scenario":"Scenario",
|
||||
"sensory":"Sensory",
|
||||
"sex":"Sex",
|
||||
"skill":"Skill",
|
||||
"skills":"Skills",
|
||||
"social-mod":"Social Modificater",
|
||||
"special":"Special",
|
||||
"spiel":"Spiel",
|
||||
"spot-hidden-object":"Spot Hidden Object",
|
||||
"stamina":"Stamina",
|
||||
"stealth":"Stealth",
|
||||
"strength":"Strength",
|
||||
"success-result":"Success",
|
||||
"survival":"Survival",
|
||||
"track":"Track",
|
||||
"unholy-knowledge":"Unholy Knowledge",
|
||||
"value":"Value",
|
||||
"vigilance":"Vigilance",
|
||||
"weapon":"Weapon",
|
||||
"weapons":"Weapons",
|
||||
"whisper-to-guardian":"Only for Guardian",
|
||||
"willpower":"Willpower",
|
||||
"wound-threshold":"WoundThreshold",
|
||||
"wounds":"Wounds"
|
||||
}
|
||||
@@ -0,0 +1,169 @@
|
||||
{
|
||||
"APP":"APP",
|
||||
"CON":"CON",
|
||||
"DEX":"DEX",
|
||||
"EDU":"EDU",
|
||||
"INT":"INT",
|
||||
"POW":"POW",
|
||||
"SIZ":"SIZ",
|
||||
"STR":"STR",
|
||||
"action":"Action",
|
||||
"aftereffect":"AfterEffect",
|
||||
"aftereffects":"AfterEffects",
|
||||
"age":"Age",
|
||||
"agility":"Agility",
|
||||
"aplomb":"Aplomb",
|
||||
"art":"Arts",
|
||||
"art-place":"Art",
|
||||
"artistic-culture":"Artistic Culture",
|
||||
"artistic-culture-place":"Artistic Culture",
|
||||
"athleticism":"Athleticism",
|
||||
"attitude":"Attitude",
|
||||
"bargain":"Bargain",
|
||||
"bladed-weapons":"Bladed Weapons",
|
||||
"bladed-weapons-name-place":"Bladed Weapons",
|
||||
"bureaucracy":"Bureaucracy",
|
||||
"call-of-cthulhu":"Call Of Cthulu",
|
||||
"cartridge":"Cartridge",
|
||||
"characteristic":"Characteristic",
|
||||
"characteristics-and-rolls":"Characteristics & Rolls",
|
||||
"circles-of-influence":"Circles of Influence",
|
||||
"circumstances":"Circumstances",
|
||||
"close":"Close",
|
||||
"concealment":"Concealment",
|
||||
"configuration":"Configuration",
|
||||
"consulted-books":"Consulted Books",
|
||||
"contact":"Contact",
|
||||
"contact-and-resources":"Contacts & Resources",
|
||||
"contacts":"Contacts",
|
||||
"corpulence":"Corpulence",
|
||||
"craft":"Craft",
|
||||
"craft-place":"Craft",
|
||||
"credit":"Credit",
|
||||
"criminalistics":"Criminalistics",
|
||||
"critical-result":"Critical !",
|
||||
"cthulhu-mythos":"Cthulhu Mythos",
|
||||
"damage":"Damage",
|
||||
"damage-dice":"Damage Dice",
|
||||
"damages":"Damages",
|
||||
"description":"Description",
|
||||
"direction":"Direction",
|
||||
"do-it-yourself":"Do It Yourself",
|
||||
"drive":"Drive",
|
||||
"drive-name-place":"Drive",
|
||||
"earth-science-place":"Earth Sciences",
|
||||
"earth-sciences":"Earth Sciences",
|
||||
"effect":"Effect",
|
||||
"enemy":"Enemy",
|
||||
"equipment":"Equipment",
|
||||
"exotic-weapons":"Exotic Weapons",
|
||||
"exotic-weapons-name-place":"Exotic Weapons",
|
||||
"expertise":"Expertise",
|
||||
"fail-result":"Fail",
|
||||
"far":"Far",
|
||||
"favorite-equipment":"Favorite Equipment",
|
||||
"feet":"Feet",
|
||||
"firearms":"Firearms",
|
||||
"firearms-name-place":"Firearms",
|
||||
"first-aid":"First Aid",
|
||||
"first-name":"FirstName",
|
||||
"formal-sciences":"Formal Sciences",
|
||||
"formal-sciences-place":"Formal Sciences",
|
||||
"game":"Game",
|
||||
"game-name-place":"Game",
|
||||
"gunnery":"Gunnery",
|
||||
"gunnery-name-place":"Gunnery",
|
||||
"hand-to-hand":"Hand To Hand",
|
||||
"hand-to-hand-name-place":"Hand To Hand",
|
||||
"hands":"Hands",
|
||||
"head":"Head",
|
||||
"health":"Health",
|
||||
"hide":"Hide",
|
||||
"hit-points":"Hit Points",
|
||||
"human-sciences":"Human Sciences",
|
||||
"human-sciences-place":"Human Sciences",
|
||||
"hypnosis":"Hypnosis",
|
||||
"impact":"Impact",
|
||||
"imposture":"Imposture",
|
||||
"influence":"Influence",
|
||||
"initial-sanity":"Inital SAN",
|
||||
"insight":"Insight",
|
||||
"interview":"Interview",
|
||||
"intuition":"Intuition",
|
||||
"investigator-info":"Investigator Info",
|
||||
"knowledge":"Knowledge",
|
||||
"known-creatures":"Known Creatures",
|
||||
"known-investigators":"Known Investigators",
|
||||
"language-place":"Language",
|
||||
"languages":"Languages",
|
||||
"last-name":"LastName",
|
||||
"level":"Level",
|
||||
"library-use":"Library Use",
|
||||
"life-sciences":"Life Science",
|
||||
"life-sciences-place":"Life Science",
|
||||
"listen":"Listen",
|
||||
"magic-points":"Magic Points",
|
||||
"manners":"Manners",
|
||||
"medicine":"Medicine",
|
||||
"misc-skill-place":"Misc",
|
||||
"mother-tongue":"Mother Tongue",
|
||||
"mother-tongue-place":"Mother Tongue",
|
||||
"motivation":"Motivation",
|
||||
"name":"Name",
|
||||
"nationality":"Nationality",
|
||||
"navigate":"Navigate",
|
||||
"notes":"Notes",
|
||||
"occult-sciences":"Occult Sciences",
|
||||
"occupation":"Occupation",
|
||||
"opposed":"Opposed",
|
||||
"other-equipment":"Other equipment",
|
||||
"others":"Others",
|
||||
"personal-story":"Personal Stroy",
|
||||
"personal-story-details":"Personal Stroy Details",
|
||||
"personality":"Personality",
|
||||
"persuade":"Persuade",
|
||||
"photography":"Photography",
|
||||
"physical-aftereffects":"Physical AfterEffects",
|
||||
"pilot":"Pilot",
|
||||
"pilot-name-place":"Pilot",
|
||||
"presence":"Presence",
|
||||
"profession":"Profession",
|
||||
"protections":"Protections",
|
||||
"psychoanalysis":"Psychoanalysis",
|
||||
"psychology":"Psychology",
|
||||
"psycological-aftereffects":"Psycological AfterEffects",
|
||||
"public":"Public",
|
||||
"quality-of-life":"Quality of Life",
|
||||
"range":"Range",
|
||||
"rate":"Rate",
|
||||
"result":"Result",
|
||||
"ride":"Ride",
|
||||
"rolls-results":"Rolls results",
|
||||
"sanity":"Sanity",
|
||||
"sanity-max":"SAN Max",
|
||||
"sanity-points":"Sanity Points",
|
||||
"scenario":"Scenario",
|
||||
"sensory":"Sensory",
|
||||
"sex":"Sex",
|
||||
"skill":"Skill",
|
||||
"skills":"Skills",
|
||||
"social-mod":"Social Modificater",
|
||||
"special":"Special",
|
||||
"spiel":"Spiel",
|
||||
"spot-hidden-object":"Spot Hidden Object",
|
||||
"stamina":"Stamina",
|
||||
"stealth":"Stealth",
|
||||
"strength":"Strength",
|
||||
"success-result":"Success",
|
||||
"survival":"Survival",
|
||||
"track":"Track",
|
||||
"unholy-knowledge":"Unholy Knowledge",
|
||||
"value":"Value",
|
||||
"vigilance":"Vigilance",
|
||||
"weapon":"Weapon",
|
||||
"weapons":"Weapons",
|
||||
"whisper-to-guardian":"Only for Guardian",
|
||||
"willpower":"Willpower",
|
||||
"wound-threshold":"WoundThreshold",
|
||||
"wounds":"Wounds"
|
||||
}
|
||||
@@ -0,0 +1,169 @@
|
||||
{
|
||||
"APP":"APP",
|
||||
"CON":"CON",
|
||||
"DEX":"DEX",
|
||||
"EDU":"EDU",
|
||||
"INT":"INT",
|
||||
"POW":"POW",
|
||||
"SIZ":"SIZ",
|
||||
"STR":"STR",
|
||||
"action":"Action",
|
||||
"aftereffect":"AfterEffect",
|
||||
"aftereffects":"AfterEffects",
|
||||
"age":"Age",
|
||||
"agility":"Agility",
|
||||
"aplomb":"Aplomb",
|
||||
"art":"Arts",
|
||||
"art-place":"Art",
|
||||
"artistic-culture":"Artistic Culture",
|
||||
"artistic-culture-place":"Artistic Culture",
|
||||
"athleticism":"Athleticism",
|
||||
"attitude":"Attitude",
|
||||
"bargain":"Bargain",
|
||||
"bladed-weapons":"Bladed Weapons",
|
||||
"bladed-weapons-name-place":"Bladed Weapons",
|
||||
"bureaucracy":"Bureaucracy",
|
||||
"call-of-cthulhu":"Call Of Cthulu",
|
||||
"cartridge":"Cartridge",
|
||||
"characteristic":"Characteristic",
|
||||
"characteristics-and-rolls":"Characteristics & Rolls",
|
||||
"circles-of-influence":"Circles of Influence",
|
||||
"circumstances":"Circumstances",
|
||||
"close":"Close",
|
||||
"concealment":"Concealment",
|
||||
"configuration":"Configuration",
|
||||
"consulted-books":"Consulted Books",
|
||||
"contact":"Contact",
|
||||
"contact-and-resources":"Contacts & Resources",
|
||||
"contacts":"Contacts",
|
||||
"corpulence":"Corpulence",
|
||||
"craft":"Craft",
|
||||
"craft-place":"Craft",
|
||||
"credit":"Credit",
|
||||
"criminalistics":"Criminalistics",
|
||||
"critical-result":"Critical !",
|
||||
"cthulhu-mythos":"Cthulhu Mythos",
|
||||
"damage":"Damage",
|
||||
"damage-dice":"Damage Dice",
|
||||
"damages":"Damages",
|
||||
"description":"Description",
|
||||
"direction":"Direction",
|
||||
"do-it-yourself":"Do It Yourself",
|
||||
"drive":"Drive",
|
||||
"drive-name-place":"Drive",
|
||||
"earth-science-place":"Earth Sciences",
|
||||
"earth-sciences":"Earth Sciences",
|
||||
"effect":"Effect",
|
||||
"enemy":"Enemy",
|
||||
"equipment":"Equipment",
|
||||
"exotic-weapons":"Exotic Weapons",
|
||||
"exotic-weapons-name-place":"Exotic Weapons",
|
||||
"expertise":"Expertise",
|
||||
"fail-result":"Fail",
|
||||
"far":"Far",
|
||||
"favorite-equipment":"Favorite Equipment",
|
||||
"feet":"Feet",
|
||||
"firearms":"Firearms",
|
||||
"firearms-name-place":"Firearms",
|
||||
"first-aid":"First Aid",
|
||||
"first-name":"FirstName",
|
||||
"formal-sciences":"Formal Sciences",
|
||||
"formal-sciences-place":"Formal Sciences",
|
||||
"game":"Game",
|
||||
"game-name-place":"Game",
|
||||
"gunnery":"Gunnery",
|
||||
"gunnery-name-place":"Gunnery",
|
||||
"hand-to-hand":"Hand To Hand",
|
||||
"hand-to-hand-name-place":"Hand To Hand",
|
||||
"hands":"Hands",
|
||||
"head":"Head",
|
||||
"health":"Health",
|
||||
"hide":"Hide",
|
||||
"hit-points":"Hit Points",
|
||||
"human-sciences":"Human Sciences",
|
||||
"human-sciences-place":"Human Sciences",
|
||||
"hypnosis":"Hypnosis",
|
||||
"impact":"Impact",
|
||||
"imposture":"Imposture",
|
||||
"influence":"Influence",
|
||||
"initial-sanity":"Inital SAN",
|
||||
"insight":"Insight",
|
||||
"interview":"Interview",
|
||||
"intuition":"Intuition",
|
||||
"investigator-info":"Investigator Info",
|
||||
"knowledge":"Knowledge",
|
||||
"known-creatures":"Known Creatures",
|
||||
"known-investigators":"Known Investigators",
|
||||
"language-place":"Language",
|
||||
"languages":"Languages",
|
||||
"last-name":"LastName",
|
||||
"level":"Level",
|
||||
"library-use":"Library Use",
|
||||
"life-sciences":"Life Science",
|
||||
"life-sciences-place":"Life Science",
|
||||
"listen":"Listen",
|
||||
"magic-points":"Magic Points",
|
||||
"manners":"Manners",
|
||||
"medicine":"Medicine",
|
||||
"misc-skill-place":"Misc",
|
||||
"mother-tongue":"Mother Tongue",
|
||||
"mother-tongue-place":"Mother Tongue",
|
||||
"motivation":"Motivation",
|
||||
"name":"Name",
|
||||
"nationality":"Nationality",
|
||||
"navigate":"Navigate",
|
||||
"notes":"Notes",
|
||||
"occult-sciences":"Occult Sciences",
|
||||
"occupation":"Occupation",
|
||||
"opposed":"Opposed",
|
||||
"other-equipment":"Other equipment",
|
||||
"others":"Others",
|
||||
"personal-story":"Personal Stroy",
|
||||
"personal-story-details":"Personal Stroy Details",
|
||||
"personality":"Personality",
|
||||
"persuade":"Persuade",
|
||||
"photography":"Photography",
|
||||
"physical-aftereffects":"Physical AfterEffects",
|
||||
"pilot":"Pilot",
|
||||
"pilot-name-place":"Pilot",
|
||||
"presence":"Presence",
|
||||
"profession":"Profession",
|
||||
"protections":"Protections",
|
||||
"psychoanalysis":"Psychoanalysis",
|
||||
"psychology":"Psychology",
|
||||
"psycological-aftereffects":"Psycological AfterEffects",
|
||||
"public":"Public",
|
||||
"quality-of-life":"Quality of Life",
|
||||
"range":"Range",
|
||||
"rate":"Rate",
|
||||
"result":"Result",
|
||||
"ride":"Ride",
|
||||
"rolls-results":"Rolls results",
|
||||
"sanity":"Sanity",
|
||||
"sanity-max":"SAN Max",
|
||||
"sanity-points":"Sanity Points",
|
||||
"scenario":"Scenario",
|
||||
"sensory":"Sensory",
|
||||
"sex":"Sex",
|
||||
"skill":"Skill",
|
||||
"skills":"Skills",
|
||||
"social-mod":"Social Modificater",
|
||||
"special":"Special",
|
||||
"spiel":"Spiel",
|
||||
"spot-hidden-object":"Spot Hidden Object",
|
||||
"stamina":"Stamina",
|
||||
"stealth":"Stealth",
|
||||
"strength":"Strength",
|
||||
"success-result":"Success",
|
||||
"survival":"Survival",
|
||||
"track":"Track",
|
||||
"unholy-knowledge":"Unholy Knowledge",
|
||||
"value":"Value",
|
||||
"vigilance":"Vigilance",
|
||||
"weapon":"Weapon",
|
||||
"weapons":"Weapons",
|
||||
"whisper-to-guardian":"Only for Guardian",
|
||||
"willpower":"Willpower",
|
||||
"wound-threshold":"WoundThreshold",
|
||||
"wounds":"Wounds"
|
||||
}
|
||||
@@ -0,0 +1,169 @@
|
||||
{
|
||||
"APP":"APP",
|
||||
"CON":"CON",
|
||||
"DEX":"DEX",
|
||||
"EDU":"EDU",
|
||||
"INT":"INT",
|
||||
"POW":"POU",
|
||||
"SIZ":"TAI",
|
||||
"STR":"FOR",
|
||||
"action":"Action",
|
||||
"aftereffect":"Séquelle",
|
||||
"aftereffects":"Séquelles",
|
||||
"age":"Age",
|
||||
"agility":"Agilité",
|
||||
"aplomb":"Aplomb",
|
||||
"art":"Pratique artistique",
|
||||
"art-place":"Pratique artistique",
|
||||
"artistic-culture":"Culture artistique",
|
||||
"artistic-culture-place":"Culture artistique",
|
||||
"athleticism":"Athlétisme",
|
||||
"attitude":"Attitude",
|
||||
"bargain":"Négociation",
|
||||
"bladed-weapons":"Armes blanches",
|
||||
"bladed-weapons-name-place":"Arme blanches",
|
||||
"bureaucracy":"Bureaucratie",
|
||||
"call-of-cthulhu":"L'Appel de CTHULHU",
|
||||
"cartridge":"Chargeur",
|
||||
"characteristic":"Caracteristique",
|
||||
"characteristics-and-rolls":"Caractéristiques & Attributs",
|
||||
"circles-of-influence":"Cercles d'Influence",
|
||||
"circumstances":"Circonstances",
|
||||
"close":"Proche",
|
||||
"concealment":"Dissimulation",
|
||||
"configuration":"Configuration",
|
||||
"consulted-books":"Ouvrages consultés",
|
||||
"contact":"Contact",
|
||||
"contact-and-resources":"Contacts & Ressources",
|
||||
"contacts":"Contacts",
|
||||
"corpulence":"Corpulence",
|
||||
"craft":"Métier",
|
||||
"craft-place":"Métier",
|
||||
"credit":"Crédit",
|
||||
"criminalistics":"Criminalistique",
|
||||
"critical-result":"Critique !",
|
||||
"cthulhu-mythos":"Mythe de Cthulhu",
|
||||
"damage":"Dégats",
|
||||
"damage-dice":"Dés de dégâts",
|
||||
"damages":"Dégâts",
|
||||
"description":"Description",
|
||||
"direction":"Orientation",
|
||||
"do-it-yourself":"Bricolage",
|
||||
"drive":"Conduite",
|
||||
"drive-name-place":"Conduite",
|
||||
"earth-science-place":"Sciences de la terre",
|
||||
"earth-sciences":"Sciences de la terre",
|
||||
"effect":"Effet",
|
||||
"enemy":"Ennemi",
|
||||
"equipment":"Équipement",
|
||||
"exotic-weapons":"Armes exotiques",
|
||||
"exotic-weapons-name-place":"Armes exotiques",
|
||||
"expertise":"Savoir-faire",
|
||||
"fail-result":"Echec",
|
||||
"far":"Éloignés",
|
||||
"favorite-equipment":"Équipement fétiche",
|
||||
"feet":"Pieds",
|
||||
"firearms":"Armes à feu",
|
||||
"firearms-name-place":"Arme à feu",
|
||||
"first-aid":"Premiers soins",
|
||||
"first-name":"Prénom",
|
||||
"formal-sciences":"Sciences formelles",
|
||||
"formal-sciences-place":"Sciences formelles",
|
||||
"game":"Jeu",
|
||||
"game-name-place":"Jeu",
|
||||
"gunnery":"Artillerie",
|
||||
"gunnery-name-place":"Artillerie",
|
||||
"hand-to-hand":"Corps à corps",
|
||||
"hand-to-hand-name-place":"Corps à corps",
|
||||
"hands":"Poings",
|
||||
"head":"Tête",
|
||||
"health":"Santé",
|
||||
"hide":"Se cacher",
|
||||
"hit-points":"Points de Vie",
|
||||
"human-sciences":"Sciences humaines",
|
||||
"human-sciences-place":"Sciences humaines",
|
||||
"hypnosis":"Hypnose",
|
||||
"impact":"Impact",
|
||||
"imposture":"Imposture",
|
||||
"influence":"Influence",
|
||||
"initial-sanity":"SAN Initiale",
|
||||
"insight":"Perspicacité",
|
||||
"interview":"Interroger",
|
||||
"intuition":"Intuition",
|
||||
"investigator-info":"État civil",
|
||||
"knowledge":"Connaissance",
|
||||
"known-creatures":"Créatures connues",
|
||||
"known-investigators":"Investigateurs connus",
|
||||
"language-place":"Langue",
|
||||
"languages":"Langues",
|
||||
"last-name":"Nom",
|
||||
"level":"Niveau",
|
||||
"library-use":"Bibliothèque",
|
||||
"life-sciences":"Sciences de la vie",
|
||||
"life-sciences-place":"Sciences de la vie",
|
||||
"listen":"Écouter",
|
||||
"magic-points":"Points de Magie",
|
||||
"manners":"Savoir-vivre",
|
||||
"medicine":"Médecine",
|
||||
"misc-skill-place":"Divers",
|
||||
"mother-tongue":"Langue maternelle",
|
||||
"mother-tongue-place":"Langue maternelle",
|
||||
"motivation":"Motivation",
|
||||
"name":"Nom",
|
||||
"nationality":"Nationalité",
|
||||
"navigate":"Navigation",
|
||||
"notes":"Notes",
|
||||
"occult-sciences":"Sciences occultes",
|
||||
"occupation":"Occupation",
|
||||
"opposed":"Opposés",
|
||||
"other-equipment":"Autre équipement",
|
||||
"others":"Autres",
|
||||
"personal-story":"Histoire personnelle",
|
||||
"personal-story-details":"Détails de l'histoire personnelle",
|
||||
"personality":"Personnalité",
|
||||
"persuade":"Persuasion",
|
||||
"photography":"Photographie",
|
||||
"physical-aftereffects":"Séquelles Physiques",
|
||||
"pilot":"Piloter",
|
||||
"pilot-name-place":"Piloter",
|
||||
"presence":"Prestance",
|
||||
"profession":"Profession",
|
||||
"protections":"Protections",
|
||||
"psychoanalysis":"Psychanalyse",
|
||||
"psychology":"Psychologie",
|
||||
"psycological-aftereffects":"Séquelles Psychologiques",
|
||||
"public":"Public",
|
||||
"quality-of-life":"Niveau de vie",
|
||||
"range":"Portée",
|
||||
"rate":"Cadence",
|
||||
"result":"Résultat",
|
||||
"ride":"Équitation",
|
||||
"rolls-results":"Résultat des jets",
|
||||
"sanity":"Santé Mentale",
|
||||
"sanity-max":"SAN Max",
|
||||
"sanity-points":"Points de Santé Mentale",
|
||||
"scenario":"Scénario",
|
||||
"sensory":"Sensorielles",
|
||||
"sex":"Sexe",
|
||||
"skill":"Compétence",
|
||||
"skills":"Compétences",
|
||||
"social-mod":"Modificateur social",
|
||||
"special":"Spéciale",
|
||||
"spiel":"Baratin",
|
||||
"spot-hidden-object":"Trouver Object Caché",
|
||||
"stamina":"Endurance",
|
||||
"stealth":"Discrétion",
|
||||
"strength":"Puissance",
|
||||
"success-result":"Réussite",
|
||||
"survival":"Survie",
|
||||
"track":"Pister",
|
||||
"unholy-knowledge":"Savoirs impies",
|
||||
"value":"Valeur",
|
||||
"vigilance":"Vigilance",
|
||||
"weapon":"Arme",
|
||||
"weapons":"Armes",
|
||||
"whisper-to-guardian":"Pour le Gardien",
|
||||
"willpower":"Volonté",
|
||||
"wound-threshold":"Seuil de blessure",
|
||||
"wounds":"Blessures"
|
||||
}
|
||||
@@ -0,0 +1,169 @@
|
||||
{
|
||||
"APP":"APP",
|
||||
"CON":"CON",
|
||||
"DEX":"DEX",
|
||||
"EDU":"EDU",
|
||||
"INT":"INT",
|
||||
"POW":"POW",
|
||||
"SIZ":"SIZ",
|
||||
"STR":"STR",
|
||||
"action":"Action",
|
||||
"aftereffect":"AfterEffect",
|
||||
"aftereffects":"AfterEffects",
|
||||
"age":"Age",
|
||||
"agility":"Agility",
|
||||
"aplomb":"Aplomb",
|
||||
"art":"Arts",
|
||||
"art-place":"Art",
|
||||
"artistic-culture":"Artistic Culture",
|
||||
"artistic-culture-place":"Artistic Culture",
|
||||
"athleticism":"Athleticism",
|
||||
"attitude":"Attitude",
|
||||
"bargain":"Bargain",
|
||||
"bladed-weapons":"Bladed Weapons",
|
||||
"bladed-weapons-name-place":"Bladed Weapons",
|
||||
"bureaucracy":"Bureaucracy",
|
||||
"call-of-cthulhu":"Call Of Cthulu",
|
||||
"cartridge":"Cartridge",
|
||||
"characteristic":"Characteristic",
|
||||
"characteristics-and-rolls":"Characteristics & Rolls",
|
||||
"circles-of-influence":"Circles of Influence",
|
||||
"circumstances":"Circumstances",
|
||||
"close":"Close",
|
||||
"concealment":"Concealment",
|
||||
"configuration":"Configuration",
|
||||
"consulted-books":"Consulted Books",
|
||||
"contact":"Contact",
|
||||
"contact-and-resources":"Contacts & Resources",
|
||||
"contacts":"Contacts",
|
||||
"corpulence":"Corpulence",
|
||||
"craft":"Craft",
|
||||
"craft-place":"Craft",
|
||||
"credit":"Credit",
|
||||
"criminalistics":"Criminalistics",
|
||||
"critical-result":"Critical !",
|
||||
"cthulhu-mythos":"Cthulhu Mythos",
|
||||
"damage":"Damage",
|
||||
"damage-dice":"Damage Dice",
|
||||
"damages":"Damages",
|
||||
"description":"Description",
|
||||
"direction":"Direction",
|
||||
"do-it-yourself":"Do It Yourself",
|
||||
"drive":"Drive",
|
||||
"drive-name-place":"Drive",
|
||||
"earth-science-place":"Earth Sciences",
|
||||
"earth-sciences":"Earth Sciences",
|
||||
"effect":"Effect",
|
||||
"enemy":"Enemy",
|
||||
"equipment":"Equipment",
|
||||
"exotic-weapons":"Exotic Weapons",
|
||||
"exotic-weapons-name-place":"Exotic Weapons",
|
||||
"expertise":"Expertise",
|
||||
"fail-result":"Fail",
|
||||
"far":"Far",
|
||||
"favorite-equipment":"Favorite Equipment",
|
||||
"feet":"Feet",
|
||||
"firearms":"Firearms",
|
||||
"firearms-name-place":"Firearms",
|
||||
"first-aid":"First Aid",
|
||||
"first-name":"FirstName",
|
||||
"formal-sciences":"Formal Sciences",
|
||||
"formal-sciences-place":"Formal Sciences",
|
||||
"game":"Game",
|
||||
"game-name-place":"Game",
|
||||
"gunnery":"Gunnery",
|
||||
"gunnery-name-place":"Gunnery",
|
||||
"hand-to-hand":"Hand To Hand",
|
||||
"hand-to-hand-name-place":"Hand To Hand",
|
||||
"hands":"Hands",
|
||||
"head":"Head",
|
||||
"health":"Health",
|
||||
"hide":"Hide",
|
||||
"hit-points":"Hit Points",
|
||||
"human-sciences":"Human Sciences",
|
||||
"human-sciences-place":"Human Sciences",
|
||||
"hypnosis":"Hypnosis",
|
||||
"impact":"Impact",
|
||||
"imposture":"Imposture",
|
||||
"influence":"Influence",
|
||||
"initial-sanity":"Inital SAN",
|
||||
"insight":"Insight",
|
||||
"interview":"Interview",
|
||||
"intuition":"Intuition",
|
||||
"investigator-info":"Investigator Info",
|
||||
"knowledge":"Knowledge",
|
||||
"known-creatures":"Known Creatures",
|
||||
"known-investigators":"Known Investigators",
|
||||
"language-place":"Language",
|
||||
"languages":"Languages",
|
||||
"last-name":"LastName",
|
||||
"level":"Level",
|
||||
"library-use":"Library Use",
|
||||
"life-sciences":"Life Science",
|
||||
"life-sciences-place":"Life Science",
|
||||
"listen":"Listen",
|
||||
"magic-points":"Magic Points",
|
||||
"manners":"Manners",
|
||||
"medicine":"Medicine",
|
||||
"misc-skill-place":"Misc",
|
||||
"mother-tongue":"Mother Tongue",
|
||||
"mother-tongue-place":"Mother Tongue",
|
||||
"motivation":"Motivation",
|
||||
"name":"Name",
|
||||
"nationality":"Nationality",
|
||||
"navigate":"Navigate",
|
||||
"notes":"Notes",
|
||||
"occult-sciences":"Occult Sciences",
|
||||
"occupation":"Occupation",
|
||||
"opposed":"Opposed",
|
||||
"other-equipment":"Other equipment",
|
||||
"others":"Others",
|
||||
"personal-story":"Personal Stroy",
|
||||
"personal-story-details":"Personal Stroy Details",
|
||||
"personality":"Personality",
|
||||
"persuade":"Persuade",
|
||||
"photography":"Photography",
|
||||
"physical-aftereffects":"Physical AfterEffects",
|
||||
"pilot":"Pilot",
|
||||
"pilot-name-place":"Pilot",
|
||||
"presence":"Presence",
|
||||
"profession":"Profession",
|
||||
"protections":"Protections",
|
||||
"psychoanalysis":"Psychoanalysis",
|
||||
"psychology":"Psychology",
|
||||
"psycological-aftereffects":"Psycological AfterEffects",
|
||||
"public":"Public",
|
||||
"quality-of-life":"Quality of Life",
|
||||
"range":"Range",
|
||||
"rate":"Rate",
|
||||
"result":"Result",
|
||||
"ride":"Ride",
|
||||
"rolls-results":"Rolls results",
|
||||
"sanity":"Sanity",
|
||||
"sanity-max":"SAN Max",
|
||||
"sanity-points":"Sanity Points",
|
||||
"scenario":"Scenario",
|
||||
"sensory":"Sensory",
|
||||
"sex":"Sex",
|
||||
"skill":"Skill",
|
||||
"skills":"Skills",
|
||||
"social-mod":"Social Modificater",
|
||||
"special":"Special",
|
||||
"spiel":"Spiel",
|
||||
"spot-hidden-object":"Spot Hidden Object",
|
||||
"stamina":"Stamina",
|
||||
"stealth":"Stealth",
|
||||
"strength":"Strength",
|
||||
"success-result":"Success",
|
||||
"survival":"Survival",
|
||||
"track":"Track",
|
||||
"unholy-knowledge":"Unholy Knowledge",
|
||||
"value":"Value",
|
||||
"vigilance":"Vigilance",
|
||||
"weapon":"Weapon",
|
||||
"weapons":"Weapons",
|
||||
"whisper-to-guardian":"Only for Guardian",
|
||||
"willpower":"Willpower",
|
||||
"wound-threshold":"WoundThreshold",
|
||||
"wounds":"Wounds"
|
||||
}
|
||||
@@ -0,0 +1,169 @@
|
||||
{
|
||||
"APP":"APP",
|
||||
"CON":"CON",
|
||||
"DEX":"DEX",
|
||||
"EDU":"EDU",
|
||||
"INT":"INT",
|
||||
"POW":"POW",
|
||||
"SIZ":"SIZ",
|
||||
"STR":"STR",
|
||||
"action":"Action",
|
||||
"aftereffect":"AfterEffect",
|
||||
"aftereffects":"AfterEffects",
|
||||
"age":"Age",
|
||||
"agility":"Agility",
|
||||
"aplomb":"Aplomb",
|
||||
"art":"Arts",
|
||||
"art-place":"Art",
|
||||
"artistic-culture":"Artistic Culture",
|
||||
"artistic-culture-place":"Artistic Culture",
|
||||
"athleticism":"Athleticism",
|
||||
"attitude":"Attitude",
|
||||
"bargain":"Bargain",
|
||||
"bladed-weapons":"Bladed Weapons",
|
||||
"bladed-weapons-name-place":"Bladed Weapons",
|
||||
"bureaucracy":"Bureaucracy",
|
||||
"call-of-cthulhu":"Call Of Cthulu",
|
||||
"cartridge":"Cartridge",
|
||||
"characteristic":"Characteristic",
|
||||
"characteristics-and-rolls":"Characteristics & Rolls",
|
||||
"circles-of-influence":"Circles of Influence",
|
||||
"circumstances":"Circumstances",
|
||||
"close":"Close",
|
||||
"concealment":"Concealment",
|
||||
"configuration":"Configuration",
|
||||
"consulted-books":"Consulted Books",
|
||||
"contact":"Contact",
|
||||
"contact-and-resources":"Contacts & Resources",
|
||||
"contacts":"Contacts",
|
||||
"corpulence":"Corpulence",
|
||||
"craft":"Craft",
|
||||
"craft-place":"Craft",
|
||||
"credit":"Credit",
|
||||
"criminalistics":"Criminalistics",
|
||||
"critical-result":"Critical !",
|
||||
"cthulhu-mythos":"Cthulhu Mythos",
|
||||
"damage":"Damage",
|
||||
"damage-dice":"Damage Dice",
|
||||
"damages":"Damages",
|
||||
"description":"Description",
|
||||
"direction":"Direction",
|
||||
"do-it-yourself":"Do It Yourself",
|
||||
"drive":"Drive",
|
||||
"drive-name-place":"Drive",
|
||||
"earth-science-place":"Earth Sciences",
|
||||
"earth-sciences":"Earth Sciences",
|
||||
"effect":"Effect",
|
||||
"enemy":"Enemy",
|
||||
"equipment":"Equipment",
|
||||
"exotic-weapons":"Exotic Weapons",
|
||||
"exotic-weapons-name-place":"Exotic Weapons",
|
||||
"expertise":"Expertise",
|
||||
"fail-result":"Fail",
|
||||
"far":"Far",
|
||||
"favorite-equipment":"Favorite Equipment",
|
||||
"feet":"Feet",
|
||||
"firearms":"Firearms",
|
||||
"firearms-name-place":"Firearms",
|
||||
"first-aid":"First Aid",
|
||||
"first-name":"FirstName",
|
||||
"formal-sciences":"Formal Sciences",
|
||||
"formal-sciences-place":"Formal Sciences",
|
||||
"game":"Game",
|
||||
"game-name-place":"Game",
|
||||
"gunnery":"Gunnery",
|
||||
"gunnery-name-place":"Gunnery",
|
||||
"hand-to-hand":"Hand To Hand",
|
||||
"hand-to-hand-name-place":"Hand To Hand",
|
||||
"hands":"Hands",
|
||||
"head":"Head",
|
||||
"health":"Health",
|
||||
"hide":"Hide",
|
||||
"hit-points":"Hit Points",
|
||||
"human-sciences":"Human Sciences",
|
||||
"human-sciences-place":"Human Sciences",
|
||||
"hypnosis":"Hypnosis",
|
||||
"impact":"Impact",
|
||||
"imposture":"Imposture",
|
||||
"influence":"Influence",
|
||||
"initial-sanity":"Inital SAN",
|
||||
"insight":"Insight",
|
||||
"interview":"Interview",
|
||||
"intuition":"Intuition",
|
||||
"investigator-info":"Investigator Info",
|
||||
"knowledge":"Knowledge",
|
||||
"known-creatures":"Known Creatures",
|
||||
"known-investigators":"Known Investigators",
|
||||
"language-place":"Language",
|
||||
"languages":"Languages",
|
||||
"last-name":"LastName",
|
||||
"level":"Level",
|
||||
"library-use":"Library Use",
|
||||
"life-sciences":"Life Science",
|
||||
"life-sciences-place":"Life Science",
|
||||
"listen":"Listen",
|
||||
"magic-points":"Magic Points",
|
||||
"manners":"Manners",
|
||||
"medicine":"Medicine",
|
||||
"misc-skill-place":"Misc",
|
||||
"mother-tongue":"Mother Tongue",
|
||||
"mother-tongue-place":"Mother Tongue",
|
||||
"motivation":"Motivation",
|
||||
"name":"Name",
|
||||
"nationality":"Nationality",
|
||||
"navigate":"Navigate",
|
||||
"notes":"Notes",
|
||||
"occult-sciences":"Occult Sciences",
|
||||
"occupation":"Occupation",
|
||||
"opposed":"Opposed",
|
||||
"other-equipment":"Other equipment",
|
||||
"others":"Others",
|
||||
"personal-story":"Personal Stroy",
|
||||
"personal-story-details":"Personal Stroy Details",
|
||||
"personality":"Personality",
|
||||
"persuade":"Persuade",
|
||||
"photography":"Photography",
|
||||
"physical-aftereffects":"Physical AfterEffects",
|
||||
"pilot":"Pilot",
|
||||
"pilot-name-place":"Pilot",
|
||||
"presence":"Presence",
|
||||
"profession":"Profession",
|
||||
"protections":"Protections",
|
||||
"psychoanalysis":"Psychoanalysis",
|
||||
"psychology":"Psychology",
|
||||
"psycological-aftereffects":"Psycological AfterEffects",
|
||||
"public":"Public",
|
||||
"quality-of-life":"Quality of Life",
|
||||
"range":"Range",
|
||||
"rate":"Rate",
|
||||
"result":"Result",
|
||||
"ride":"Ride",
|
||||
"rolls-results":"Rolls results",
|
||||
"sanity":"Sanity",
|
||||
"sanity-max":"SAN Max",
|
||||
"sanity-points":"Sanity Points",
|
||||
"scenario":"Scenario",
|
||||
"sensory":"Sensory",
|
||||
"sex":"Sex",
|
||||
"skill":"Skill",
|
||||
"skills":"Skills",
|
||||
"social-mod":"Social Modificater",
|
||||
"special":"Special",
|
||||
"spiel":"Spiel",
|
||||
"spot-hidden-object":"Spot Hidden Object",
|
||||
"stamina":"Stamina",
|
||||
"stealth":"Stealth",
|
||||
"strength":"Strength",
|
||||
"success-result":"Success",
|
||||
"survival":"Survival",
|
||||
"track":"Track",
|
||||
"unholy-knowledge":"Unholy Knowledge",
|
||||
"value":"Value",
|
||||
"vigilance":"Vigilance",
|
||||
"weapon":"Weapon",
|
||||
"weapons":"Weapons",
|
||||
"whisper-to-guardian":"Only for Guardian",
|
||||
"willpower":"Willpower",
|
||||
"wound-threshold":"WoundThreshold",
|
||||
"wounds":"Wounds"
|
||||
}
|
||||
@@ -0,0 +1,169 @@
|
||||
{
|
||||
"APP":"APP",
|
||||
"CON":"CON",
|
||||
"DEX":"DEX",
|
||||
"EDU":"EDU",
|
||||
"INT":"INT",
|
||||
"POW":"POW",
|
||||
"SIZ":"SIZ",
|
||||
"STR":"STR",
|
||||
"action":"Action",
|
||||
"aftereffect":"AfterEffect",
|
||||
"aftereffects":"AfterEffects",
|
||||
"age":"Age",
|
||||
"agility":"Agility",
|
||||
"aplomb":"Aplomb",
|
||||
"art":"Arts",
|
||||
"art-place":"Art",
|
||||
"artistic-culture":"Artistic Culture",
|
||||
"artistic-culture-place":"Artistic Culture",
|
||||
"athleticism":"Athleticism",
|
||||
"attitude":"Attitude",
|
||||
"bargain":"Bargain",
|
||||
"bladed-weapons":"Bladed Weapons",
|
||||
"bladed-weapons-name-place":"Bladed Weapons",
|
||||
"bureaucracy":"Bureaucracy",
|
||||
"call-of-cthulhu":"Call Of Cthulu",
|
||||
"cartridge":"Cartridge",
|
||||
"characteristic":"Characteristic",
|
||||
"characteristics-and-rolls":"Characteristics & Rolls",
|
||||
"circles-of-influence":"Circles of Influence",
|
||||
"circumstances":"Circumstances",
|
||||
"close":"Close",
|
||||
"concealment":"Concealment",
|
||||
"configuration":"Configuration",
|
||||
"consulted-books":"Consulted Books",
|
||||
"contact":"Contact",
|
||||
"contact-and-resources":"Contacts & Resources",
|
||||
"contacts":"Contacts",
|
||||
"corpulence":"Corpulence",
|
||||
"craft":"Craft",
|
||||
"craft-place":"Craft",
|
||||
"credit":"Credit",
|
||||
"criminalistics":"Criminalistics",
|
||||
"critical-result":"Critical !",
|
||||
"cthulhu-mythos":"Cthulhu Mythos",
|
||||
"damage":"Damage",
|
||||
"damage-dice":"Damage Dice",
|
||||
"damages":"Damages",
|
||||
"description":"Description",
|
||||
"direction":"Direction",
|
||||
"do-it-yourself":"Do It Yourself",
|
||||
"drive":"Drive",
|
||||
"drive-name-place":"Drive",
|
||||
"earth-science-place":"Earth Sciences",
|
||||
"earth-sciences":"Earth Sciences",
|
||||
"effect":"Effect",
|
||||
"enemy":"Enemy",
|
||||
"equipment":"Equipment",
|
||||
"exotic-weapons":"Exotic Weapons",
|
||||
"exotic-weapons-name-place":"Exotic Weapons",
|
||||
"expertise":"Expertise",
|
||||
"fail-result":"Fail",
|
||||
"far":"Far",
|
||||
"favorite-equipment":"Favorite Equipment",
|
||||
"feet":"Feet",
|
||||
"firearms":"Firearms",
|
||||
"firearms-name-place":"Firearms",
|
||||
"first-aid":"First Aid",
|
||||
"first-name":"FirstName",
|
||||
"formal-sciences":"Formal Sciences",
|
||||
"formal-sciences-place":"Formal Sciences",
|
||||
"game":"Game",
|
||||
"game-name-place":"Game",
|
||||
"gunnery":"Gunnery",
|
||||
"gunnery-name-place":"Gunnery",
|
||||
"hand-to-hand":"Hand To Hand",
|
||||
"hand-to-hand-name-place":"Hand To Hand",
|
||||
"hands":"Hands",
|
||||
"head":"Head",
|
||||
"health":"Health",
|
||||
"hide":"Hide",
|
||||
"hit-points":"Hit Points",
|
||||
"human-sciences":"Human Sciences",
|
||||
"human-sciences-place":"Human Sciences",
|
||||
"hypnosis":"Hypnosis",
|
||||
"impact":"Impact",
|
||||
"imposture":"Imposture",
|
||||
"influence":"Influence",
|
||||
"initial-sanity":"Inital SAN",
|
||||
"insight":"Insight",
|
||||
"interview":"Interview",
|
||||
"intuition":"Intuition",
|
||||
"investigator-info":"Investigator Info",
|
||||
"knowledge":"Knowledge",
|
||||
"known-creatures":"Known Creatures",
|
||||
"known-investigators":"Known Investigators",
|
||||
"language-place":"Language",
|
||||
"languages":"Languages",
|
||||
"last-name":"LastName",
|
||||
"level":"Level",
|
||||
"library-use":"Library Use",
|
||||
"life-sciences":"Life Science",
|
||||
"life-sciences-place":"Life Science",
|
||||
"listen":"Listen",
|
||||
"magic-points":"Magic Points",
|
||||
"manners":"Manners",
|
||||
"medicine":"Medicine",
|
||||
"misc-skill-place":"Misc",
|
||||
"mother-tongue":"Mother Tongue",
|
||||
"mother-tongue-place":"Mother Tongue",
|
||||
"motivation":"Motivation",
|
||||
"name":"Name",
|
||||
"nationality":"Nationality",
|
||||
"navigate":"Navigate",
|
||||
"notes":"Notes",
|
||||
"occult-sciences":"Occult Sciences",
|
||||
"occupation":"Occupation",
|
||||
"opposed":"Opposed",
|
||||
"other-equipment":"Other equipment",
|
||||
"others":"Others",
|
||||
"personal-story":"Personal Stroy",
|
||||
"personal-story-details":"Personal Stroy Details",
|
||||
"personality":"Personality",
|
||||
"persuade":"Persuade",
|
||||
"photography":"Photography",
|
||||
"physical-aftereffects":"Physical AfterEffects",
|
||||
"pilot":"Pilot",
|
||||
"pilot-name-place":"Pilot",
|
||||
"presence":"Presence",
|
||||
"profession":"Profession",
|
||||
"protections":"Protections",
|
||||
"psychoanalysis":"Psychoanalysis",
|
||||
"psychology":"Psychology",
|
||||
"psycological-aftereffects":"Psycological AfterEffects",
|
||||
"public":"Public",
|
||||
"quality-of-life":"Quality of Life",
|
||||
"range":"Range",
|
||||
"rate":"Rate",
|
||||
"result":"Result",
|
||||
"ride":"Ride",
|
||||
"rolls-results":"Rolls results",
|
||||
"sanity":"Sanity",
|
||||
"sanity-max":"SAN Max",
|
||||
"sanity-points":"Sanity Points",
|
||||
"scenario":"Scenario",
|
||||
"sensory":"Sensory",
|
||||
"sex":"Sex",
|
||||
"skill":"Skill",
|
||||
"skills":"Skills",
|
||||
"social-mod":"Social Modificater",
|
||||
"special":"Special",
|
||||
"spiel":"Spiel",
|
||||
"spot-hidden-object":"Spot Hidden Object",
|
||||
"stamina":"Stamina",
|
||||
"stealth":"Stealth",
|
||||
"strength":"Strength",
|
||||
"success-result":"Success",
|
||||
"survival":"Survival",
|
||||
"track":"Track",
|
||||
"unholy-knowledge":"Unholy Knowledge",
|
||||
"value":"Value",
|
||||
"vigilance":"Vigilance",
|
||||
"weapon":"Weapon",
|
||||
"weapons":"Weapons",
|
||||
"whisper-to-guardian":"Only for Guardian",
|
||||
"willpower":"Willpower",
|
||||
"wound-threshold":"WoundThreshold",
|
||||
"wounds":"Wounds"
|
||||
}
|
||||
@@ -0,0 +1,169 @@
|
||||
{
|
||||
"APP":"APP",
|
||||
"CON":"CON",
|
||||
"DEX":"DEX",
|
||||
"EDU":"EDU",
|
||||
"INT":"INT",
|
||||
"POW":"POW",
|
||||
"SIZ":"SIZ",
|
||||
"STR":"STR",
|
||||
"action":"Action",
|
||||
"aftereffect":"AfterEffect",
|
||||
"aftereffects":"AfterEffects",
|
||||
"age":"Age",
|
||||
"agility":"Agility",
|
||||
"aplomb":"Aplomb",
|
||||
"art":"Arts",
|
||||
"art-place":"Art",
|
||||
"artistic-culture":"Artistic Culture",
|
||||
"artistic-culture-place":"Artistic Culture",
|
||||
"athleticism":"Athleticism",
|
||||
"attitude":"Attitude",
|
||||
"bargain":"Bargain",
|
||||
"bladed-weapons":"Bladed Weapons",
|
||||
"bladed-weapons-name-place":"Bladed Weapons",
|
||||
"bureaucracy":"Bureaucracy",
|
||||
"call-of-cthulhu":"Call Of Cthulu",
|
||||
"cartridge":"Cartridge",
|
||||
"characteristic":"Characteristic",
|
||||
"characteristics-and-rolls":"Characteristics & Rolls",
|
||||
"circles-of-influence":"Circles of Influence",
|
||||
"circumstances":"Circumstances",
|
||||
"close":"Close",
|
||||
"concealment":"Concealment",
|
||||
"configuration":"Configuration",
|
||||
"consulted-books":"Consulted Books",
|
||||
"contact":"Contact",
|
||||
"contact-and-resources":"Contacts & Resources",
|
||||
"contacts":"Contacts",
|
||||
"corpulence":"Corpulence",
|
||||
"craft":"Craft",
|
||||
"craft-place":"Craft",
|
||||
"credit":"Credit",
|
||||
"criminalistics":"Criminalistics",
|
||||
"critical-result":"Critical !",
|
||||
"cthulhu-mythos":"Cthulhu Mythos",
|
||||
"damage":"Damage",
|
||||
"damage-dice":"Damage Dice",
|
||||
"damages":"Damages",
|
||||
"description":"Description",
|
||||
"direction":"Direction",
|
||||
"do-it-yourself":"Do It Yourself",
|
||||
"drive":"Drive",
|
||||
"drive-name-place":"Drive",
|
||||
"earth-science-place":"Earth Sciences",
|
||||
"earth-sciences":"Earth Sciences",
|
||||
"effect":"Effect",
|
||||
"enemy":"Enemy",
|
||||
"equipment":"Equipment",
|
||||
"exotic-weapons":"Exotic Weapons",
|
||||
"exotic-weapons-name-place":"Exotic Weapons",
|
||||
"expertise":"Expertise",
|
||||
"fail-result":"Fail",
|
||||
"far":"Far",
|
||||
"favorite-equipment":"Favorite Equipment",
|
||||
"feet":"Feet",
|
||||
"firearms":"Firearms",
|
||||
"firearms-name-place":"Firearms",
|
||||
"first-aid":"First Aid",
|
||||
"first-name":"FirstName",
|
||||
"formal-sciences":"Formal Sciences",
|
||||
"formal-sciences-place":"Formal Sciences",
|
||||
"game":"Game",
|
||||
"game-name-place":"Game",
|
||||
"gunnery":"Gunnery",
|
||||
"gunnery-name-place":"Gunnery",
|
||||
"hand-to-hand":"Hand To Hand",
|
||||
"hand-to-hand-name-place":"Hand To Hand",
|
||||
"hands":"Hands",
|
||||
"head":"Head",
|
||||
"health":"Health",
|
||||
"hide":"Hide",
|
||||
"hit-points":"Hit Points",
|
||||
"human-sciences":"Human Sciences",
|
||||
"human-sciences-place":"Human Sciences",
|
||||
"hypnosis":"Hypnosis",
|
||||
"impact":"Impact",
|
||||
"imposture":"Imposture",
|
||||
"influence":"Influence",
|
||||
"initial-sanity":"Inital SAN",
|
||||
"insight":"Insight",
|
||||
"interview":"Interview",
|
||||
"intuition":"Intuition",
|
||||
"investigator-info":"Investigator Info",
|
||||
"knowledge":"Knowledge",
|
||||
"known-creatures":"Known Creatures",
|
||||
"known-investigators":"Known Investigators",
|
||||
"language-place":"Language",
|
||||
"languages":"Languages",
|
||||
"last-name":"LastName",
|
||||
"level":"Level",
|
||||
"library-use":"Library Use",
|
||||
"life-sciences":"Life Science",
|
||||
"life-sciences-place":"Life Science",
|
||||
"listen":"Listen",
|
||||
"magic-points":"Magic Points",
|
||||
"manners":"Manners",
|
||||
"medicine":"Medicine",
|
||||
"misc-skill-place":"Misc",
|
||||
"mother-tongue":"Mother Tongue",
|
||||
"mother-tongue-place":"Mother Tongue",
|
||||
"motivation":"Motivation",
|
||||
"name":"Name",
|
||||
"nationality":"Nationality",
|
||||
"navigate":"Navigate",
|
||||
"notes":"Notes",
|
||||
"occult-sciences":"Occult Sciences",
|
||||
"occupation":"Occupation",
|
||||
"opposed":"Opposed",
|
||||
"other-equipment":"Other equipment",
|
||||
"others":"Others",
|
||||
"personal-story":"Personal Stroy",
|
||||
"personal-story-details":"Personal Stroy Details",
|
||||
"personality":"Personality",
|
||||
"persuade":"Persuade",
|
||||
"photography":"Photography",
|
||||
"physical-aftereffects":"Physical AfterEffects",
|
||||
"pilot":"Pilot",
|
||||
"pilot-name-place":"Pilot",
|
||||
"presence":"Presence",
|
||||
"profession":"Profession",
|
||||
"protections":"Protections",
|
||||
"psychoanalysis":"Psychoanalysis",
|
||||
"psychology":"Psychology",
|
||||
"psycological-aftereffects":"Psycological AfterEffects",
|
||||
"public":"Public",
|
||||
"quality-of-life":"Quality of Life",
|
||||
"range":"Range",
|
||||
"rate":"Rate",
|
||||
"result":"Result",
|
||||
"ride":"Ride",
|
||||
"rolls-results":"Rolls results",
|
||||
"sanity":"Sanity",
|
||||
"sanity-max":"SAN Max",
|
||||
"sanity-points":"Sanity Points",
|
||||
"scenario":"Scenario",
|
||||
"sensory":"Sensory",
|
||||
"sex":"Sex",
|
||||
"skill":"Skill",
|
||||
"skills":"Skills",
|
||||
"social-mod":"Social Modificater",
|
||||
"special":"Special",
|
||||
"spiel":"Spiel",
|
||||
"spot-hidden-object":"Spot Hidden Object",
|
||||
"stamina":"Stamina",
|
||||
"stealth":"Stealth",
|
||||
"strength":"Strength",
|
||||
"success-result":"Success",
|
||||
"survival":"Survival",
|
||||
"track":"Track",
|
||||
"unholy-knowledge":"Unholy Knowledge",
|
||||
"value":"Value",
|
||||
"vigilance":"Vigilance",
|
||||
"weapon":"Weapon",
|
||||
"weapons":"Weapons",
|
||||
"whisper-to-guardian":"Only for Guardian",
|
||||
"willpower":"Willpower",
|
||||
"wound-threshold":"WoundThreshold",
|
||||
"wounds":"Wounds"
|
||||
}
|
||||
@@ -0,0 +1,169 @@
|
||||
{
|
||||
"APP":"APP",
|
||||
"CON":"CON",
|
||||
"DEX":"DEX",
|
||||
"EDU":"EDU",
|
||||
"INT":"INT",
|
||||
"POW":"POW",
|
||||
"SIZ":"SIZ",
|
||||
"STR":"STR",
|
||||
"action":"Action",
|
||||
"aftereffect":"AfterEffect",
|
||||
"aftereffects":"AfterEffects",
|
||||
"age":"Age",
|
||||
"agility":"Agility",
|
||||
"aplomb":"Aplomb",
|
||||
"art":"Arts",
|
||||
"art-place":"Art",
|
||||
"artistic-culture":"Artistic Culture",
|
||||
"artistic-culture-place":"Artistic Culture",
|
||||
"athleticism":"Athleticism",
|
||||
"attitude":"Attitude",
|
||||
"bargain":"Bargain",
|
||||
"bladed-weapons":"Bladed Weapons",
|
||||
"bladed-weapons-name-place":"Bladed Weapons",
|
||||
"bureaucracy":"Bureaucracy",
|
||||
"call-of-cthulhu":"Call Of Cthulu",
|
||||
"cartridge":"Cartridge",
|
||||
"characteristic":"Characteristic",
|
||||
"characteristics-and-rolls":"Characteristics & Rolls",
|
||||
"circles-of-influence":"Circles of Influence",
|
||||
"circumstances":"Circumstances",
|
||||
"close":"Close",
|
||||
"concealment":"Concealment",
|
||||
"configuration":"Configuration",
|
||||
"consulted-books":"Consulted Books",
|
||||
"contact":"Contact",
|
||||
"contact-and-resources":"Contacts & Resources",
|
||||
"contacts":"Contacts",
|
||||
"corpulence":"Corpulence",
|
||||
"craft":"Craft",
|
||||
"craft-place":"Craft",
|
||||
"credit":"Credit",
|
||||
"criminalistics":"Criminalistics",
|
||||
"critical-result":"Critical !",
|
||||
"cthulhu-mythos":"Cthulhu Mythos",
|
||||
"damage":"Damage",
|
||||
"damage-dice":"Damage Dice",
|
||||
"damages":"Damages",
|
||||
"description":"Description",
|
||||
"direction":"Direction",
|
||||
"do-it-yourself":"Do It Yourself",
|
||||
"drive":"Drive",
|
||||
"drive-name-place":"Drive",
|
||||
"earth-science-place":"Earth Sciences",
|
||||
"earth-sciences":"Earth Sciences",
|
||||
"effect":"Effect",
|
||||
"enemy":"Enemy",
|
||||
"equipment":"Equipment",
|
||||
"exotic-weapons":"Exotic Weapons",
|
||||
"exotic-weapons-name-place":"Exotic Weapons",
|
||||
"expertise":"Expertise",
|
||||
"fail-result":"Fail",
|
||||
"far":"Far",
|
||||
"favorite-equipment":"Favorite Equipment",
|
||||
"feet":"Feet",
|
||||
"firearms":"Firearms",
|
||||
"firearms-name-place":"Firearms",
|
||||
"first-aid":"First Aid",
|
||||
"first-name":"FirstName",
|
||||
"formal-sciences":"Formal Sciences",
|
||||
"formal-sciences-place":"Formal Sciences",
|
||||
"game":"Game",
|
||||
"game-name-place":"Game",
|
||||
"gunnery":"Gunnery",
|
||||
"gunnery-name-place":"Gunnery",
|
||||
"hand-to-hand":"Hand To Hand",
|
||||
"hand-to-hand-name-place":"Hand To Hand",
|
||||
"hands":"Hands",
|
||||
"head":"Head",
|
||||
"health":"Health",
|
||||
"hide":"Hide",
|
||||
"hit-points":"Hit Points",
|
||||
"human-sciences":"Human Sciences",
|
||||
"human-sciences-place":"Human Sciences",
|
||||
"hypnosis":"Hypnosis",
|
||||
"impact":"Impact",
|
||||
"imposture":"Imposture",
|
||||
"influence":"Influence",
|
||||
"initial-sanity":"Inital SAN",
|
||||
"insight":"Insight",
|
||||
"interview":"Interview",
|
||||
"intuition":"Intuition",
|
||||
"investigator-info":"Investigator Info",
|
||||
"knowledge":"Knowledge",
|
||||
"known-creatures":"Known Creatures",
|
||||
"known-investigators":"Known Investigators",
|
||||
"language-place":"Language",
|
||||
"languages":"Languages",
|
||||
"last-name":"LastName",
|
||||
"level":"Level",
|
||||
"library-use":"Library Use",
|
||||
"life-sciences":"Life Science",
|
||||
"life-sciences-place":"Life Science",
|
||||
"listen":"Listen",
|
||||
"magic-points":"Magic Points",
|
||||
"manners":"Manners",
|
||||
"medicine":"Medicine",
|
||||
"misc-skill-place":"Misc",
|
||||
"mother-tongue":"Mother Tongue",
|
||||
"mother-tongue-place":"Mother Tongue",
|
||||
"motivation":"Motivation",
|
||||
"name":"Name",
|
||||
"nationality":"Nationality",
|
||||
"navigate":"Navigate",
|
||||
"notes":"Notes",
|
||||
"occult-sciences":"Occult Sciences",
|
||||
"occupation":"Occupation",
|
||||
"opposed":"Opposed",
|
||||
"other-equipment":"Other equipment",
|
||||
"others":"Others",
|
||||
"personal-story":"Personal Stroy",
|
||||
"personal-story-details":"Personal Stroy Details",
|
||||
"personality":"Personality",
|
||||
"persuade":"Persuade",
|
||||
"photography":"Photography",
|
||||
"physical-aftereffects":"Physical AfterEffects",
|
||||
"pilot":"Pilot",
|
||||
"pilot-name-place":"Pilot",
|
||||
"presence":"Presence",
|
||||
"profession":"Profession",
|
||||
"protections":"Protections",
|
||||
"psychoanalysis":"Psychoanalysis",
|
||||
"psychology":"Psychology",
|
||||
"psycological-aftereffects":"Psycological AfterEffects",
|
||||
"public":"Public",
|
||||
"quality-of-life":"Quality of Life",
|
||||
"range":"Range",
|
||||
"rate":"Rate",
|
||||
"result":"Result",
|
||||
"ride":"Ride",
|
||||
"rolls-results":"Rolls results",
|
||||
"sanity":"Sanity",
|
||||
"sanity-max":"SAN Max",
|
||||
"sanity-points":"Sanity Points",
|
||||
"scenario":"Scenario",
|
||||
"sensory":"Sensory",
|
||||
"sex":"Sex",
|
||||
"skill":"Skill",
|
||||
"skills":"Skills",
|
||||
"social-mod":"Social Modificater",
|
||||
"special":"Special",
|
||||
"spiel":"Spiel",
|
||||
"spot-hidden-object":"Spot Hidden Object",
|
||||
"stamina":"Stamina",
|
||||
"stealth":"Stealth",
|
||||
"strength":"Strength",
|
||||
"success-result":"Success",
|
||||
"survival":"Survival",
|
||||
"track":"Track",
|
||||
"unholy-knowledge":"Unholy Knowledge",
|
||||
"value":"Value",
|
||||
"vigilance":"Vigilance",
|
||||
"weapon":"Weapon",
|
||||
"weapons":"Weapons",
|
||||
"whisper-to-guardian":"Only for Guardian",
|
||||
"willpower":"Willpower",
|
||||
"wound-threshold":"WoundThreshold",
|
||||
"wounds":"Wounds"
|
||||
}
|
||||
@@ -0,0 +1,169 @@
|
||||
{
|
||||
"APP":"APP",
|
||||
"CON":"CON",
|
||||
"DEX":"DEX",
|
||||
"EDU":"EDU",
|
||||
"INT":"INT",
|
||||
"POW":"POW",
|
||||
"SIZ":"SIZ",
|
||||
"STR":"STR",
|
||||
"action":"Action",
|
||||
"aftereffect":"AfterEffect",
|
||||
"aftereffects":"AfterEffects",
|
||||
"age":"Age",
|
||||
"agility":"Agility",
|
||||
"aplomb":"Aplomb",
|
||||
"art":"Arts",
|
||||
"art-place":"Art",
|
||||
"artistic-culture":"Artistic Culture",
|
||||
"artistic-culture-place":"Artistic Culture",
|
||||
"athleticism":"Athleticism",
|
||||
"attitude":"Attitude",
|
||||
"bargain":"Bargain",
|
||||
"bladed-weapons":"Bladed Weapons",
|
||||
"bladed-weapons-name-place":"Bladed Weapons",
|
||||
"bureaucracy":"Bureaucracy",
|
||||
"call-of-cthulhu":"Call Of Cthulu",
|
||||
"cartridge":"Cartridge",
|
||||
"characteristic":"Characteristic",
|
||||
"characteristics-and-rolls":"Characteristics & Rolls",
|
||||
"circles-of-influence":"Circles of Influence",
|
||||
"circumstances":"Circumstances",
|
||||
"close":"Close",
|
||||
"concealment":"Concealment",
|
||||
"configuration":"Configuration",
|
||||
"consulted-books":"Consulted Books",
|
||||
"contact":"Contact",
|
||||
"contact-and-resources":"Contacts & Resources",
|
||||
"contacts":"Contacts",
|
||||
"corpulence":"Corpulence",
|
||||
"craft":"Craft",
|
||||
"craft-place":"Craft",
|
||||
"credit":"Credit",
|
||||
"criminalistics":"Criminalistics",
|
||||
"critical-result":"Critical !",
|
||||
"cthulhu-mythos":"Cthulhu Mythos",
|
||||
"damage":"Damage",
|
||||
"damage-dice":"Damage Dice",
|
||||
"damages":"Damages",
|
||||
"description":"Description",
|
||||
"direction":"Direction",
|
||||
"do-it-yourself":"Do It Yourself",
|
||||
"drive":"Drive",
|
||||
"drive-name-place":"Drive",
|
||||
"earth-science-place":"Earth Sciences",
|
||||
"earth-sciences":"Earth Sciences",
|
||||
"effect":"Effect",
|
||||
"enemy":"Enemy",
|
||||
"equipment":"Equipment",
|
||||
"exotic-weapons":"Exotic Weapons",
|
||||
"exotic-weapons-name-place":"Exotic Weapons",
|
||||
"expertise":"Expertise",
|
||||
"fail-result":"Fail",
|
||||
"far":"Far",
|
||||
"favorite-equipment":"Favorite Equipment",
|
||||
"feet":"Feet",
|
||||
"firearms":"Firearms",
|
||||
"firearms-name-place":"Firearms",
|
||||
"first-aid":"First Aid",
|
||||
"first-name":"FirstName",
|
||||
"formal-sciences":"Formal Sciences",
|
||||
"formal-sciences-place":"Formal Sciences",
|
||||
"game":"Game",
|
||||
"game-name-place":"Game",
|
||||
"gunnery":"Gunnery",
|
||||
"gunnery-name-place":"Gunnery",
|
||||
"hand-to-hand":"Hand To Hand",
|
||||
"hand-to-hand-name-place":"Hand To Hand",
|
||||
"hands":"Hands",
|
||||
"head":"Head",
|
||||
"health":"Health",
|
||||
"hide":"Hide",
|
||||
"hit-points":"Hit Points",
|
||||
"human-sciences":"Human Sciences",
|
||||
"human-sciences-place":"Human Sciences",
|
||||
"hypnosis":"Hypnosis",
|
||||
"impact":"Impact",
|
||||
"imposture":"Imposture",
|
||||
"influence":"Influence",
|
||||
"initial-sanity":"Inital SAN",
|
||||
"insight":"Insight",
|
||||
"interview":"Interview",
|
||||
"intuition":"Intuition",
|
||||
"investigator-info":"Investigator Info",
|
||||
"knowledge":"Knowledge",
|
||||
"known-creatures":"Known Creatures",
|
||||
"known-investigators":"Known Investigators",
|
||||
"language-place":"Language",
|
||||
"languages":"Languages",
|
||||
"last-name":"LastName",
|
||||
"level":"Level",
|
||||
"library-use":"Library Use",
|
||||
"life-sciences":"Life Science",
|
||||
"life-sciences-place":"Life Science",
|
||||
"listen":"Listen",
|
||||
"magic-points":"Magic Points",
|
||||
"manners":"Manners",
|
||||
"medicine":"Medicine",
|
||||
"misc-skill-place":"Misc",
|
||||
"mother-tongue":"Mother Tongue",
|
||||
"mother-tongue-place":"Mother Tongue",
|
||||
"motivation":"Motivation",
|
||||
"name":"Name",
|
||||
"nationality":"Nationality",
|
||||
"navigate":"Navigate",
|
||||
"notes":"Notes",
|
||||
"occult-sciences":"Occult Sciences",
|
||||
"occupation":"Occupation",
|
||||
"opposed":"Opposed",
|
||||
"other-equipment":"Other equipment",
|
||||
"others":"Others",
|
||||
"personal-story":"Personal Stroy",
|
||||
"personal-story-details":"Personal Stroy Details",
|
||||
"personality":"Personality",
|
||||
"persuade":"Persuade",
|
||||
"photography":"Photography",
|
||||
"physical-aftereffects":"Physical AfterEffects",
|
||||
"pilot":"Pilot",
|
||||
"pilot-name-place":"Pilot",
|
||||
"presence":"Presence",
|
||||
"profession":"Profession",
|
||||
"protections":"Protections",
|
||||
"psychoanalysis":"Psychoanalysis",
|
||||
"psychology":"Psychology",
|
||||
"psycological-aftereffects":"Psycological AfterEffects",
|
||||
"public":"Public",
|
||||
"quality-of-life":"Quality of Life",
|
||||
"range":"Range",
|
||||
"rate":"Rate",
|
||||
"result":"Result",
|
||||
"ride":"Ride",
|
||||
"rolls-results":"Rolls results",
|
||||
"sanity":"Sanity",
|
||||
"sanity-max":"SAN Max",
|
||||
"sanity-points":"Sanity Points",
|
||||
"scenario":"Scenario",
|
||||
"sensory":"Sensory",
|
||||
"sex":"Sex",
|
||||
"skill":"Skill",
|
||||
"skills":"Skills",
|
||||
"social-mod":"Social Modificater",
|
||||
"special":"Special",
|
||||
"spiel":"Spiel",
|
||||
"spot-hidden-object":"Spot Hidden Object",
|
||||
"stamina":"Stamina",
|
||||
"stealth":"Stealth",
|
||||
"strength":"Strength",
|
||||
"success-result":"Success",
|
||||
"survival":"Survival",
|
||||
"track":"Track",
|
||||
"unholy-knowledge":"Unholy Knowledge",
|
||||
"value":"Value",
|
||||
"vigilance":"Vigilance",
|
||||
"weapon":"Weapon",
|
||||
"weapons":"Weapons",
|
||||
"whisper-to-guardian":"Only for Guardian",
|
||||
"willpower":"Willpower",
|
||||
"wound-threshold":"WoundThreshold",
|
||||
"wounds":"Wounds"
|
||||
}
|
||||
@@ -0,0 +1,169 @@
|
||||
{
|
||||
"APP":"APP",
|
||||
"CON":"CON",
|
||||
"DEX":"DEX",
|
||||
"EDU":"EDU",
|
||||
"INT":"INT",
|
||||
"POW":"POW",
|
||||
"SIZ":"SIZ",
|
||||
"STR":"STR",
|
||||
"action":"Action",
|
||||
"aftereffect":"AfterEffect",
|
||||
"aftereffects":"AfterEffects",
|
||||
"age":"Age",
|
||||
"agility":"Agility",
|
||||
"aplomb":"Aplomb",
|
||||
"art":"Arts",
|
||||
"art-place":"Art",
|
||||
"artistic-culture":"Artistic Culture",
|
||||
"artistic-culture-place":"Artistic Culture",
|
||||
"athleticism":"Athleticism",
|
||||
"attitude":"Attitude",
|
||||
"bargain":"Bargain",
|
||||
"bladed-weapons":"Bladed Weapons",
|
||||
"bladed-weapons-name-place":"Bladed Weapons",
|
||||
"bureaucracy":"Bureaucracy",
|
||||
"call-of-cthulhu":"Call Of Cthulu",
|
||||
"cartridge":"Cartridge",
|
||||
"characteristic":"Characteristic",
|
||||
"characteristics-and-rolls":"Characteristics & Rolls",
|
||||
"circles-of-influence":"Circles of Influence",
|
||||
"circumstances":"Circumstances",
|
||||
"close":"Close",
|
||||
"concealment":"Concealment",
|
||||
"configuration":"Configuration",
|
||||
"consulted-books":"Consulted Books",
|
||||
"contact":"Contact",
|
||||
"contact-and-resources":"Contacts & Resources",
|
||||
"contacts":"Contacts",
|
||||
"corpulence":"Corpulence",
|
||||
"craft":"Craft",
|
||||
"craft-place":"Craft",
|
||||
"credit":"Credit",
|
||||
"criminalistics":"Criminalistics",
|
||||
"critical-result":"Critical !",
|
||||
"cthulhu-mythos":"Cthulhu Mythos",
|
||||
"damage":"Damage",
|
||||
"damage-dice":"Damage Dice",
|
||||
"damages":"Damages",
|
||||
"description":"Description",
|
||||
"direction":"Direction",
|
||||
"do-it-yourself":"Do It Yourself",
|
||||
"drive":"Drive",
|
||||
"drive-name-place":"Drive",
|
||||
"earth-science-place":"Earth Sciences",
|
||||
"earth-sciences":"Earth Sciences",
|
||||
"effect":"Effect",
|
||||
"enemy":"Enemy",
|
||||
"equipment":"Equipment",
|
||||
"exotic-weapons":"Exotic Weapons",
|
||||
"exotic-weapons-name-place":"Exotic Weapons",
|
||||
"expertise":"Expertise",
|
||||
"fail-result":"Fail",
|
||||
"far":"Far",
|
||||
"favorite-equipment":"Favorite Equipment",
|
||||
"feet":"Feet",
|
||||
"firearms":"Firearms",
|
||||
"firearms-name-place":"Firearms",
|
||||
"first-aid":"First Aid",
|
||||
"first-name":"FirstName",
|
||||
"formal-sciences":"Formal Sciences",
|
||||
"formal-sciences-place":"Formal Sciences",
|
||||
"game":"Game",
|
||||
"game-name-place":"Game",
|
||||
"gunnery":"Gunnery",
|
||||
"gunnery-name-place":"Gunnery",
|
||||
"hand-to-hand":"Hand To Hand",
|
||||
"hand-to-hand-name-place":"Hand To Hand",
|
||||
"hands":"Hands",
|
||||
"head":"Head",
|
||||
"health":"Health",
|
||||
"hide":"Hide",
|
||||
"hit-points":"Hit Points",
|
||||
"human-sciences":"Human Sciences",
|
||||
"human-sciences-place":"Human Sciences",
|
||||
"hypnosis":"Hypnosis",
|
||||
"impact":"Impact",
|
||||
"imposture":"Imposture",
|
||||
"influence":"Influence",
|
||||
"initial-sanity":"Inital SAN",
|
||||
"insight":"Insight",
|
||||
"interview":"Interview",
|
||||
"intuition":"Intuition",
|
||||
"investigator-info":"Investigator Info",
|
||||
"knowledge":"Knowledge",
|
||||
"known-creatures":"Known Creatures",
|
||||
"known-investigators":"Known Investigators",
|
||||
"language-place":"Language",
|
||||
"languages":"Languages",
|
||||
"last-name":"LastName",
|
||||
"level":"Level",
|
||||
"library-use":"Library Use",
|
||||
"life-sciences":"Life Science",
|
||||
"life-sciences-place":"Life Science",
|
||||
"listen":"Listen",
|
||||
"magic-points":"Magic Points",
|
||||
"manners":"Manners",
|
||||
"medicine":"Medicine",
|
||||
"misc-skill-place":"Misc",
|
||||
"mother-tongue":"Mother Tongue",
|
||||
"mother-tongue-place":"Mother Tongue",
|
||||
"motivation":"Motivation",
|
||||
"name":"Name",
|
||||
"nationality":"Nationality",
|
||||
"navigate":"Navigate",
|
||||
"notes":"Notes",
|
||||
"occult-sciences":"Occult Sciences",
|
||||
"occupation":"Occupation",
|
||||
"opposed":"Opposed",
|
||||
"other-equipment":"Other equipment",
|
||||
"others":"Others",
|
||||
"personal-story":"Personal Stroy",
|
||||
"personal-story-details":"Personal Stroy Details",
|
||||
"personality":"Personality",
|
||||
"persuade":"Persuade",
|
||||
"photography":"Photography",
|
||||
"physical-aftereffects":"Physical AfterEffects",
|
||||
"pilot":"Pilot",
|
||||
"pilot-name-place":"Pilot",
|
||||
"presence":"Presence",
|
||||
"profession":"Profession",
|
||||
"protections":"Protections",
|
||||
"psychoanalysis":"Psychoanalysis",
|
||||
"psychology":"Psychology",
|
||||
"psycological-aftereffects":"Psycological AfterEffects",
|
||||
"public":"Public",
|
||||
"quality-of-life":"Quality of Life",
|
||||
"range":"Range",
|
||||
"rate":"Rate",
|
||||
"result":"Result",
|
||||
"ride":"Ride",
|
||||
"rolls-results":"Rolls results",
|
||||
"sanity":"Sanity",
|
||||
"sanity-max":"SAN Max",
|
||||
"sanity-points":"Sanity Points",
|
||||
"scenario":"Scenario",
|
||||
"sensory":"Sensory",
|
||||
"sex":"Sex",
|
||||
"skill":"Skill",
|
||||
"skills":"Skills",
|
||||
"social-mod":"Social Modificater",
|
||||
"special":"Special",
|
||||
"spiel":"Spiel",
|
||||
"spot-hidden-object":"Spot Hidden Object",
|
||||
"stamina":"Stamina",
|
||||
"stealth":"Stealth",
|
||||
"strength":"Strength",
|
||||
"success-result":"Success",
|
||||
"survival":"Survival",
|
||||
"track":"Track",
|
||||
"unholy-knowledge":"Unholy Knowledge",
|
||||
"value":"Value",
|
||||
"vigilance":"Vigilance",
|
||||
"weapon":"Weapon",
|
||||
"weapons":"Weapons",
|
||||
"whisper-to-guardian":"Only for Guardian",
|
||||
"willpower":"Willpower",
|
||||
"wound-threshold":"WoundThreshold",
|
||||
"wounds":"Wounds"
|
||||
}
|
||||
@@ -0,0 +1,169 @@
|
||||
{
|
||||
"APP":"APP",
|
||||
"CON":"CON",
|
||||
"DEX":"DEX",
|
||||
"EDU":"EDU",
|
||||
"INT":"INT",
|
||||
"POW":"POW",
|
||||
"SIZ":"SIZ",
|
||||
"STR":"STR",
|
||||
"action":"Action",
|
||||
"aftereffect":"AfterEffect",
|
||||
"aftereffects":"AfterEffects",
|
||||
"age":"Age",
|
||||
"agility":"Agility",
|
||||
"aplomb":"Aplomb",
|
||||
"art":"Arts",
|
||||
"art-place":"Art",
|
||||
"artistic-culture":"Artistic Culture",
|
||||
"artistic-culture-place":"Artistic Culture",
|
||||
"athleticism":"Athleticism",
|
||||
"attitude":"Attitude",
|
||||
"bargain":"Bargain",
|
||||
"bladed-weapons":"Bladed Weapons",
|
||||
"bladed-weapons-name-place":"Bladed Weapons",
|
||||
"bureaucracy":"Bureaucracy",
|
||||
"call-of-cthulhu":"Call Of Cthulu",
|
||||
"cartridge":"Cartridge",
|
||||
"characteristic":"Characteristic",
|
||||
"characteristics-and-rolls":"Characteristics & Rolls",
|
||||
"circles-of-influence":"Circles of Influence",
|
||||
"circumstances":"Circumstances",
|
||||
"close":"Close",
|
||||
"concealment":"Concealment",
|
||||
"configuration":"Configuration",
|
||||
"consulted-books":"Consulted Books",
|
||||
"contact":"Contact",
|
||||
"contact-and-resources":"Contacts & Resources",
|
||||
"contacts":"Contacts",
|
||||
"corpulence":"Corpulence",
|
||||
"craft":"Craft",
|
||||
"craft-place":"Craft",
|
||||
"credit":"Credit",
|
||||
"criminalistics":"Criminalistics",
|
||||
"critical-result":"Critical !",
|
||||
"cthulhu-mythos":"Cthulhu Mythos",
|
||||
"damage":"Damage",
|
||||
"damage-dice":"Damage Dice",
|
||||
"damages":"Damages",
|
||||
"description":"Description",
|
||||
"direction":"Direction",
|
||||
"do-it-yourself":"Do It Yourself",
|
||||
"drive":"Drive",
|
||||
"drive-name-place":"Drive",
|
||||
"earth-science-place":"Earth Sciences",
|
||||
"earth-sciences":"Earth Sciences",
|
||||
"effect":"Effect",
|
||||
"enemy":"Enemy",
|
||||
"equipment":"Equipment",
|
||||
"exotic-weapons":"Exotic Weapons",
|
||||
"exotic-weapons-name-place":"Exotic Weapons",
|
||||
"expertise":"Expertise",
|
||||
"fail-result":"Fail",
|
||||
"far":"Far",
|
||||
"favorite-equipment":"Favorite Equipment",
|
||||
"feet":"Feet",
|
||||
"firearms":"Firearms",
|
||||
"firearms-name-place":"Firearms",
|
||||
"first-aid":"First Aid",
|
||||
"first-name":"FirstName",
|
||||
"formal-sciences":"Formal Sciences",
|
||||
"formal-sciences-place":"Formal Sciences",
|
||||
"game":"Game",
|
||||
"game-name-place":"Game",
|
||||
"gunnery":"Gunnery",
|
||||
"gunnery-name-place":"Gunnery",
|
||||
"hand-to-hand":"Hand To Hand",
|
||||
"hand-to-hand-name-place":"Hand To Hand",
|
||||
"hands":"Hands",
|
||||
"head":"Head",
|
||||
"health":"Health",
|
||||
"hide":"Hide",
|
||||
"hit-points":"Hit Points",
|
||||
"human-sciences":"Human Sciences",
|
||||
"human-sciences-place":"Human Sciences",
|
||||
"hypnosis":"Hypnosis",
|
||||
"impact":"Impact",
|
||||
"imposture":"Imposture",
|
||||
"influence":"Influence",
|
||||
"initial-sanity":"Inital SAN",
|
||||
"insight":"Insight",
|
||||
"interview":"Interview",
|
||||
"intuition":"Intuition",
|
||||
"investigator-info":"Investigator Info",
|
||||
"knowledge":"Knowledge",
|
||||
"known-creatures":"Known Creatures",
|
||||
"known-investigators":"Known Investigators",
|
||||
"language-place":"Language",
|
||||
"languages":"Languages",
|
||||
"last-name":"LastName",
|
||||
"level":"Level",
|
||||
"library-use":"Library Use",
|
||||
"life-sciences":"Life Science",
|
||||
"life-sciences-place":"Life Science",
|
||||
"listen":"Listen",
|
||||
"magic-points":"Magic Points",
|
||||
"manners":"Manners",
|
||||
"medicine":"Medicine",
|
||||
"misc-skill-place":"Misc",
|
||||
"mother-tongue":"Mother Tongue",
|
||||
"mother-tongue-place":"Mother Tongue",
|
||||
"motivation":"Motivation",
|
||||
"name":"Name",
|
||||
"nationality":"Nationality",
|
||||
"navigate":"Navigate",
|
||||
"notes":"Notes",
|
||||
"occult-sciences":"Occult Sciences",
|
||||
"occupation":"Occupation",
|
||||
"opposed":"Opposed",
|
||||
"other-equipment":"Other equipment",
|
||||
"others":"Others",
|
||||
"personal-story":"Personal Stroy",
|
||||
"personal-story-details":"Personal Stroy Details",
|
||||
"personality":"Personality",
|
||||
"persuade":"Persuade",
|
||||
"photography":"Photography",
|
||||
"physical-aftereffects":"Physical AfterEffects",
|
||||
"pilot":"Pilot",
|
||||
"pilot-name-place":"Pilot",
|
||||
"presence":"Presence",
|
||||
"profession":"Profession",
|
||||
"protections":"Protections",
|
||||
"psychoanalysis":"Psychoanalysis",
|
||||
"psychology":"Psychology",
|
||||
"psycological-aftereffects":"Psycological AfterEffects",
|
||||
"public":"Public",
|
||||
"quality-of-life":"Quality of Life",
|
||||
"range":"Range",
|
||||
"rate":"Rate",
|
||||
"result":"Result",
|
||||
"ride":"Ride",
|
||||
"rolls-results":"Rolls results",
|
||||
"sanity":"Sanity",
|
||||
"sanity-max":"SAN Max",
|
||||
"sanity-points":"Sanity Points",
|
||||
"scenario":"Scenario",
|
||||
"sensory":"Sensory",
|
||||
"sex":"Sex",
|
||||
"skill":"Skill",
|
||||
"skills":"Skills",
|
||||
"social-mod":"Social Modificater",
|
||||
"special":"Special",
|
||||
"spiel":"Spiel",
|
||||
"spot-hidden-object":"Spot Hidden Object",
|
||||
"stamina":"Stamina",
|
||||
"stealth":"Stealth",
|
||||
"strength":"Strength",
|
||||
"success-result":"Success",
|
||||
"survival":"Survival",
|
||||
"track":"Track",
|
||||
"unholy-knowledge":"Unholy Knowledge",
|
||||
"value":"Value",
|
||||
"vigilance":"Vigilance",
|
||||
"weapon":"Weapon",
|
||||
"weapons":"Weapons",
|
||||
"whisper-to-guardian":"Only for Guardian",
|
||||
"willpower":"Willpower",
|
||||
"wound-threshold":"WoundThreshold",
|
||||
"wounds":"Wounds"
|
||||
}
|
||||
@@ -0,0 +1,169 @@
|
||||
{
|
||||
"APP":"APP",
|
||||
"CON":"CON",
|
||||
"DEX":"DEX",
|
||||
"EDU":"EDU",
|
||||
"INT":"INT",
|
||||
"POW":"POW",
|
||||
"SIZ":"SIZ",
|
||||
"STR":"STR",
|
||||
"action":"Action",
|
||||
"aftereffect":"AfterEffect",
|
||||
"aftereffects":"AfterEffects",
|
||||
"age":"Age",
|
||||
"agility":"Agility",
|
||||
"aplomb":"Aplomb",
|
||||
"art":"Arts",
|
||||
"art-place":"Art",
|
||||
"artistic-culture":"Artistic Culture",
|
||||
"artistic-culture-place":"Artistic Culture",
|
||||
"athleticism":"Athleticism",
|
||||
"attitude":"Attitude",
|
||||
"bargain":"Bargain",
|
||||
"bladed-weapons":"Bladed Weapons",
|
||||
"bladed-weapons-name-place":"Bladed Weapons",
|
||||
"bureaucracy":"Bureaucracy",
|
||||
"call-of-cthulhu":"Call Of Cthulu",
|
||||
"cartridge":"Cartridge",
|
||||
"characteristic":"Characteristic",
|
||||
"characteristics-and-rolls":"Characteristics & Rolls",
|
||||
"circles-of-influence":"Circles of Influence",
|
||||
"circumstances":"Circumstances",
|
||||
"close":"Close",
|
||||
"concealment":"Concealment",
|
||||
"configuration":"Configuration",
|
||||
"consulted-books":"Consulted Books",
|
||||
"contact":"Contact",
|
||||
"contact-and-resources":"Contacts & Resources",
|
||||
"contacts":"Contacts",
|
||||
"corpulence":"Corpulence",
|
||||
"craft":"Craft",
|
||||
"craft-place":"Craft",
|
||||
"credit":"Credit",
|
||||
"criminalistics":"Criminalistics",
|
||||
"critical-result":"Critical !",
|
||||
"cthulhu-mythos":"Cthulhu Mythos",
|
||||
"damage":"Damage",
|
||||
"damage-dice":"Damage Dice",
|
||||
"damages":"Damages",
|
||||
"description":"Description",
|
||||
"direction":"Direction",
|
||||
"do-it-yourself":"Do It Yourself",
|
||||
"drive":"Drive",
|
||||
"drive-name-place":"Drive",
|
||||
"earth-science-place":"Earth Sciences",
|
||||
"earth-sciences":"Earth Sciences",
|
||||
"effect":"Effect",
|
||||
"enemy":"Enemy",
|
||||
"equipment":"Equipment",
|
||||
"exotic-weapons":"Exotic Weapons",
|
||||
"exotic-weapons-name-place":"Exotic Weapons",
|
||||
"expertise":"Expertise",
|
||||
"fail-result":"Fail",
|
||||
"far":"Far",
|
||||
"favorite-equipment":"Favorite Equipment",
|
||||
"feet":"Feet",
|
||||
"firearms":"Firearms",
|
||||
"firearms-name-place":"Firearms",
|
||||
"first-aid":"First Aid",
|
||||
"first-name":"FirstName",
|
||||
"formal-sciences":"Formal Sciences",
|
||||
"formal-sciences-place":"Formal Sciences",
|
||||
"game":"Game",
|
||||
"game-name-place":"Game",
|
||||
"gunnery":"Gunnery",
|
||||
"gunnery-name-place":"Gunnery",
|
||||
"hand-to-hand":"Hand To Hand",
|
||||
"hand-to-hand-name-place":"Hand To Hand",
|
||||
"hands":"Hands",
|
||||
"head":"Head",
|
||||
"health":"Health",
|
||||
"hide":"Hide",
|
||||
"hit-points":"Hit Points",
|
||||
"human-sciences":"Human Sciences",
|
||||
"human-sciences-place":"Human Sciences",
|
||||
"hypnosis":"Hypnosis",
|
||||
"impact":"Impact",
|
||||
"imposture":"Imposture",
|
||||
"influence":"Influence",
|
||||
"initial-sanity":"Inital SAN",
|
||||
"insight":"Insight",
|
||||
"interview":"Interview",
|
||||
"intuition":"Intuition",
|
||||
"investigator-info":"Investigator Info",
|
||||
"knowledge":"Knowledge",
|
||||
"known-creatures":"Known Creatures",
|
||||
"known-investigators":"Known Investigators",
|
||||
"language-place":"Language",
|
||||
"languages":"Languages",
|
||||
"last-name":"LastName",
|
||||
"level":"Level",
|
||||
"library-use":"Library Use",
|
||||
"life-sciences":"Life Science",
|
||||
"life-sciences-place":"Life Science",
|
||||
"listen":"Listen",
|
||||
"magic-points":"Magic Points",
|
||||
"manners":"Manners",
|
||||
"medicine":"Medicine",
|
||||
"misc-skill-place":"Misc",
|
||||
"mother-tongue":"Mother Tongue",
|
||||
"mother-tongue-place":"Mother Tongue",
|
||||
"motivation":"Motivation",
|
||||
"name":"Name",
|
||||
"nationality":"Nationality",
|
||||
"navigate":"Navigate",
|
||||
"notes":"Notes",
|
||||
"occult-sciences":"Occult Sciences",
|
||||
"occupation":"Occupation",
|
||||
"opposed":"Opposed",
|
||||
"other-equipment":"Other equipment",
|
||||
"others":"Others",
|
||||
"personal-story":"Personal Stroy",
|
||||
"personal-story-details":"Personal Stroy Details",
|
||||
"personality":"Personality",
|
||||
"persuade":"Persuade",
|
||||
"photography":"Photography",
|
||||
"physical-aftereffects":"Physical AfterEffects",
|
||||
"pilot":"Pilot",
|
||||
"pilot-name-place":"Pilot",
|
||||
"presence":"Presence",
|
||||
"profession":"Profession",
|
||||
"protections":"Protections",
|
||||
"psychoanalysis":"Psychoanalysis",
|
||||
"psychology":"Psychology",
|
||||
"psycological-aftereffects":"Psycological AfterEffects",
|
||||
"public":"Public",
|
||||
"quality-of-life":"Quality of Life",
|
||||
"range":"Range",
|
||||
"rate":"Rate",
|
||||
"result":"Result",
|
||||
"ride":"Ride",
|
||||
"rolls-results":"Rolls results",
|
||||
"sanity":"Sanity",
|
||||
"sanity-max":"SAN Max",
|
||||
"sanity-points":"Sanity Points",
|
||||
"scenario":"Scenario",
|
||||
"sensory":"Sensory",
|
||||
"sex":"Sex",
|
||||
"skill":"Skill",
|
||||
"skills":"Skills",
|
||||
"social-mod":"Social Modificater",
|
||||
"special":"Special",
|
||||
"spiel":"Spiel",
|
||||
"spot-hidden-object":"Spot Hidden Object",
|
||||
"stamina":"Stamina",
|
||||
"stealth":"Stealth",
|
||||
"strength":"Strength",
|
||||
"success-result":"Success",
|
||||
"survival":"Survival",
|
||||
"track":"Track",
|
||||
"unholy-knowledge":"Unholy Knowledge",
|
||||
"value":"Value",
|
||||
"vigilance":"Vigilance",
|
||||
"weapon":"Weapon",
|
||||
"weapons":"Weapons",
|
||||
"whisper-to-guardian":"Only for Guardian",
|
||||
"willpower":"Willpower",
|
||||
"wound-threshold":"WoundThreshold",
|
||||
"wounds":"Wounds"
|
||||
}
|
||||
@@ -0,0 +1,169 @@
|
||||
{
|
||||
"APP":"APP",
|
||||
"CON":"CON",
|
||||
"DEX":"DEX",
|
||||
"EDU":"EDU",
|
||||
"INT":"INT",
|
||||
"POW":"POW",
|
||||
"SIZ":"SIZ",
|
||||
"STR":"STR",
|
||||
"action":"Action",
|
||||
"aftereffect":"AfterEffect",
|
||||
"aftereffects":"AfterEffects",
|
||||
"age":"Age",
|
||||
"agility":"Agility",
|
||||
"aplomb":"Aplomb",
|
||||
"art":"Arts",
|
||||
"art-place":"Art",
|
||||
"artistic-culture":"Artistic Culture",
|
||||
"artistic-culture-place":"Artistic Culture",
|
||||
"athleticism":"Athleticism",
|
||||
"attitude":"Attitude",
|
||||
"bargain":"Bargain",
|
||||
"bladed-weapons":"Bladed Weapons",
|
||||
"bladed-weapons-name-place":"Bladed Weapons",
|
||||
"bureaucracy":"Bureaucracy",
|
||||
"call-of-cthulhu":"Call Of Cthulu",
|
||||
"cartridge":"Cartridge",
|
||||
"characteristic":"Characteristic",
|
||||
"characteristics-and-rolls":"Characteristics & Rolls",
|
||||
"circles-of-influence":"Circles of Influence",
|
||||
"circumstances":"Circumstances",
|
||||
"close":"Close",
|
||||
"concealment":"Concealment",
|
||||
"configuration":"Configuration",
|
||||
"consulted-books":"Consulted Books",
|
||||
"contact":"Contact",
|
||||
"contact-and-resources":"Contacts & Resources",
|
||||
"contacts":"Contacts",
|
||||
"corpulence":"Corpulence",
|
||||
"craft":"Craft",
|
||||
"craft-place":"Craft",
|
||||
"credit":"Credit",
|
||||
"criminalistics":"Criminalistics",
|
||||
"critical-result":"Critical !",
|
||||
"cthulhu-mythos":"Cthulhu Mythos",
|
||||
"damage":"Damage",
|
||||
"damage-dice":"Damage Dice",
|
||||
"damages":"Damages",
|
||||
"description":"Description",
|
||||
"direction":"Direction",
|
||||
"do-it-yourself":"Do It Yourself",
|
||||
"drive":"Drive",
|
||||
"drive-name-place":"Drive",
|
||||
"earth-science-place":"Earth Sciences",
|
||||
"earth-sciences":"Earth Sciences",
|
||||
"effect":"Effect",
|
||||
"enemy":"Enemy",
|
||||
"equipment":"Equipment",
|
||||
"exotic-weapons":"Exotic Weapons",
|
||||
"exotic-weapons-name-place":"Exotic Weapons",
|
||||
"expertise":"Expertise",
|
||||
"fail-result":"Fail",
|
||||
"far":"Far",
|
||||
"favorite-equipment":"Favorite Equipment",
|
||||
"feet":"Feet",
|
||||
"firearms":"Firearms",
|
||||
"firearms-name-place":"Firearms",
|
||||
"first-aid":"First Aid",
|
||||
"first-name":"FirstName",
|
||||
"formal-sciences":"Formal Sciences",
|
||||
"formal-sciences-place":"Formal Sciences",
|
||||
"game":"Game",
|
||||
"game-name-place":"Game",
|
||||
"gunnery":"Gunnery",
|
||||
"gunnery-name-place":"Gunnery",
|
||||
"hand-to-hand":"Hand To Hand",
|
||||
"hand-to-hand-name-place":"Hand To Hand",
|
||||
"hands":"Hands",
|
||||
"head":"Head",
|
||||
"health":"Health",
|
||||
"hide":"Hide",
|
||||
"hit-points":"Hit Points",
|
||||
"human-sciences":"Human Sciences",
|
||||
"human-sciences-place":"Human Sciences",
|
||||
"hypnosis":"Hypnosis",
|
||||
"impact":"Impact",
|
||||
"imposture":"Imposture",
|
||||
"influence":"Influence",
|
||||
"initial-sanity":"Inital SAN",
|
||||
"insight":"Insight",
|
||||
"interview":"Interview",
|
||||
"intuition":"Intuition",
|
||||
"investigator-info":"Investigator Info",
|
||||
"knowledge":"Knowledge",
|
||||
"known-creatures":"Known Creatures",
|
||||
"known-investigators":"Known Investigators",
|
||||
"language-place":"Language",
|
||||
"languages":"Languages",
|
||||
"last-name":"LastName",
|
||||
"level":"Level",
|
||||
"library-use":"Library Use",
|
||||
"life-sciences":"Life Science",
|
||||
"life-sciences-place":"Life Science",
|
||||
"listen":"Listen",
|
||||
"magic-points":"Magic Points",
|
||||
"manners":"Manners",
|
||||
"medicine":"Medicine",
|
||||
"misc-skill-place":"Misc",
|
||||
"mother-tongue":"Mother Tongue",
|
||||
"mother-tongue-place":"Mother Tongue",
|
||||
"motivation":"Motivation",
|
||||
"name":"Name",
|
||||
"nationality":"Nationality",
|
||||
"navigate":"Navigate",
|
||||
"notes":"Notes",
|
||||
"occult-sciences":"Occult Sciences",
|
||||
"occupation":"Occupation",
|
||||
"opposed":"Opposed",
|
||||
"other-equipment":"Other equipment",
|
||||
"others":"Others",
|
||||
"personal-story":"Personal Stroy",
|
||||
"personal-story-details":"Personal Stroy Details",
|
||||
"personality":"Personality",
|
||||
"persuade":"Persuade",
|
||||
"photography":"Photography",
|
||||
"physical-aftereffects":"Physical AfterEffects",
|
||||
"pilot":"Pilot",
|
||||
"pilot-name-place":"Pilot",
|
||||
"presence":"Presence",
|
||||
"profession":"Profession",
|
||||
"protections":"Protections",
|
||||
"psychoanalysis":"Psychoanalysis",
|
||||
"psychology":"Psychology",
|
||||
"psycological-aftereffects":"Psycological AfterEffects",
|
||||
"public":"Public",
|
||||
"quality-of-life":"Quality of Life",
|
||||
"range":"Range",
|
||||
"rate":"Rate",
|
||||
"result":"Result",
|
||||
"ride":"Ride",
|
||||
"rolls-results":"Rolls results",
|
||||
"sanity":"Sanity",
|
||||
"sanity-max":"SAN Max",
|
||||
"sanity-points":"Sanity Points",
|
||||
"scenario":"Scenario",
|
||||
"sensory":"Sensory",
|
||||
"sex":"Sex",
|
||||
"skill":"Skill",
|
||||
"skills":"Skills",
|
||||
"social-mod":"Social Modificater",
|
||||
"special":"Special",
|
||||
"spiel":"Spiel",
|
||||
"spot-hidden-object":"Spot Hidden Object",
|
||||
"stamina":"Stamina",
|
||||
"stealth":"Stealth",
|
||||
"strength":"Strength",
|
||||
"success-result":"Success",
|
||||
"survival":"Survival",
|
||||
"track":"Track",
|
||||
"unholy-knowledge":"Unholy Knowledge",
|
||||
"value":"Value",
|
||||
"vigilance":"Vigilance",
|
||||
"weapon":"Weapon",
|
||||
"weapons":"Weapons",
|
||||
"whisper-to-guardian":"Only for Guardian",
|
||||
"willpower":"Willpower",
|
||||
"wound-threshold":"WoundThreshold",
|
||||
"wounds":"Wounds"
|
||||
}
|
||||
@@ -0,0 +1,169 @@
|
||||
{
|
||||
"APP":"crwdns11755:0crwdne11755:0",
|
||||
"CON":"crwdns11756:0crwdne11756:0",
|
||||
"DEX":"crwdns11757:0crwdne11757:0",
|
||||
"EDU":"crwdns11758:0crwdne11758:0",
|
||||
"INT":"crwdns11759:0crwdne11759:0",
|
||||
"POW":"crwdns11760:0crwdne11760:0",
|
||||
"SIZ":"crwdns11761:0crwdne11761:0",
|
||||
"STR":"crwdns11762:0crwdne11762:0",
|
||||
"action":"crwdns11763:0crwdne11763:0",
|
||||
"aftereffect":"crwdns11764:0crwdne11764:0",
|
||||
"aftereffects":"crwdns11765:0crwdne11765:0",
|
||||
"age":"crwdns11766:0crwdne11766:0",
|
||||
"agility":"crwdns11767:0crwdne11767:0",
|
||||
"aplomb":"crwdns11768:0crwdne11768:0",
|
||||
"art":"crwdns11769:0crwdne11769:0",
|
||||
"art-place":"crwdns11770:0crwdne11770:0",
|
||||
"artistic-culture":"crwdns11771:0crwdne11771:0",
|
||||
"artistic-culture-place":"crwdns11772:0crwdne11772:0",
|
||||
"athleticism":"crwdns11773:0crwdne11773:0",
|
||||
"attitude":"crwdns11774:0crwdne11774:0",
|
||||
"bargain":"crwdns11775:0crwdne11775:0",
|
||||
"bladed-weapons":"crwdns11776:0crwdne11776:0",
|
||||
"bladed-weapons-name-place":"crwdns11777:0crwdne11777:0",
|
||||
"bureaucracy":"crwdns11778:0crwdne11778:0",
|
||||
"call-of-cthulhu":"crwdns11779:0crwdne11779:0",
|
||||
"cartridge":"crwdns11780:0crwdne11780:0",
|
||||
"characteristic":"crwdns11781:0crwdne11781:0",
|
||||
"characteristics-and-rolls":"crwdns11782:0crwdne11782:0",
|
||||
"circles-of-influence":"crwdns11783:0crwdne11783:0",
|
||||
"circumstances":"crwdns11784:0crwdne11784:0",
|
||||
"close":"crwdns11785:0crwdne11785:0",
|
||||
"concealment":"crwdns11786:0crwdne11786:0",
|
||||
"configuration":"crwdns11787:0crwdne11787:0",
|
||||
"consulted-books":"crwdns11788:0crwdne11788:0",
|
||||
"contact":"crwdns11789:0crwdne11789:0",
|
||||
"contact-and-resources":"crwdns11790:0crwdne11790:0",
|
||||
"contacts":"crwdns11791:0crwdne11791:0",
|
||||
"corpulence":"crwdns11792:0crwdne11792:0",
|
||||
"craft":"crwdns11793:0crwdne11793:0",
|
||||
"craft-place":"crwdns11794:0crwdne11794:0",
|
||||
"credit":"crwdns11795:0crwdne11795:0",
|
||||
"criminalistics":"crwdns11796:0crwdne11796:0",
|
||||
"critical-result":"crwdns11797:0crwdne11797:0",
|
||||
"cthulhu-mythos":"crwdns11798:0crwdne11798:0",
|
||||
"damage":"crwdns11799:0crwdne11799:0",
|
||||
"damage-dice":"crwdns11800:0crwdne11800:0",
|
||||
"damages":"crwdns11801:0crwdne11801:0",
|
||||
"description":"crwdns11802:0crwdne11802:0",
|
||||
"direction":"crwdns11803:0crwdne11803:0",
|
||||
"do-it-yourself":"crwdns11804:0crwdne11804:0",
|
||||
"drive":"crwdns11805:0crwdne11805:0",
|
||||
"drive-name-place":"crwdns11806:0crwdne11806:0",
|
||||
"earth-science-place":"crwdns11807:0crwdne11807:0",
|
||||
"earth-sciences":"crwdns11808:0crwdne11808:0",
|
||||
"effect":"crwdns11809:0crwdne11809:0",
|
||||
"enemy":"crwdns11810:0crwdne11810:0",
|
||||
"equipment":"crwdns11811:0crwdne11811:0",
|
||||
"exotic-weapons":"crwdns11812:0crwdne11812:0",
|
||||
"exotic-weapons-name-place":"crwdns11813:0crwdne11813:0",
|
||||
"expertise":"crwdns11814:0crwdne11814:0",
|
||||
"fail-result":"crwdns11815:0crwdne11815:0",
|
||||
"far":"crwdns11816:0crwdne11816:0",
|
||||
"favorite-equipment":"crwdns11817:0crwdne11817:0",
|
||||
"feet":"crwdns11818:0crwdne11818:0",
|
||||
"firearms":"crwdns11819:0crwdne11819:0",
|
||||
"firearms-name-place":"crwdns11820:0crwdne11820:0",
|
||||
"first-aid":"crwdns11821:0crwdne11821:0",
|
||||
"first-name":"crwdns11822:0crwdne11822:0",
|
||||
"formal-sciences":"crwdns11823:0crwdne11823:0",
|
||||
"formal-sciences-place":"crwdns11824:0crwdne11824:0",
|
||||
"game":"crwdns11825:0crwdne11825:0",
|
||||
"game-name-place":"crwdns11826:0crwdne11826:0",
|
||||
"gunnery":"crwdns11827:0crwdne11827:0",
|
||||
"gunnery-name-place":"crwdns11828:0crwdne11828:0",
|
||||
"hand-to-hand":"crwdns11829:0crwdne11829:0",
|
||||
"hand-to-hand-name-place":"crwdns11830:0crwdne11830:0",
|
||||
"hands":"crwdns11831:0crwdne11831:0",
|
||||
"head":"crwdns11832:0crwdne11832:0",
|
||||
"health":"crwdns11833:0crwdne11833:0",
|
||||
"hide":"crwdns11834:0crwdne11834:0",
|
||||
"hit-points":"crwdns11835:0crwdne11835:0",
|
||||
"human-sciences":"crwdns11836:0crwdne11836:0",
|
||||
"human-sciences-place":"crwdns11837:0crwdne11837:0",
|
||||
"hypnosis":"crwdns11838:0crwdne11838:0",
|
||||
"impact":"crwdns11839:0crwdne11839:0",
|
||||
"imposture":"crwdns11840:0crwdne11840:0",
|
||||
"influence":"crwdns11841:0crwdne11841:0",
|
||||
"initial-sanity":"crwdns11842:0crwdne11842:0",
|
||||
"insight":"crwdns11843:0crwdne11843:0",
|
||||
"interview":"crwdns11844:0crwdne11844:0",
|
||||
"intuition":"crwdns11845:0crwdne11845:0",
|
||||
"investigator-info":"crwdns11846:0crwdne11846:0",
|
||||
"knowledge":"crwdns11847:0crwdne11847:0",
|
||||
"known-creatures":"crwdns11848:0crwdne11848:0",
|
||||
"known-investigators":"crwdns11849:0crwdne11849:0",
|
||||
"language-place":"crwdns11850:0crwdne11850:0",
|
||||
"languages":"crwdns11851:0crwdne11851:0",
|
||||
"last-name":"crwdns11852:0crwdne11852:0",
|
||||
"level":"crwdns11853:0crwdne11853:0",
|
||||
"library-use":"crwdns11854:0crwdne11854:0",
|
||||
"life-sciences":"crwdns11855:0crwdne11855:0",
|
||||
"life-sciences-place":"crwdns11856:0crwdne11856:0",
|
||||
"listen":"crwdns11857:0crwdne11857:0",
|
||||
"magic-points":"crwdns11858:0crwdne11858:0",
|
||||
"manners":"crwdns11859:0crwdne11859:0",
|
||||
"medicine":"crwdns11860:0crwdne11860:0",
|
||||
"misc-skill-place":"crwdns11861:0crwdne11861:0",
|
||||
"mother-tongue":"crwdns11862:0crwdne11862:0",
|
||||
"mother-tongue-place":"crwdns11863:0crwdne11863:0",
|
||||
"motivation":"crwdns11864:0crwdne11864:0",
|
||||
"name":"crwdns11865:0crwdne11865:0",
|
||||
"nationality":"crwdns11866:0crwdne11866:0",
|
||||
"navigate":"crwdns11867:0crwdne11867:0",
|
||||
"notes":"crwdns11868:0crwdne11868:0",
|
||||
"occult-sciences":"crwdns11869:0crwdne11869:0",
|
||||
"occupation":"crwdns11870:0crwdne11870:0",
|
||||
"opposed":"crwdns11871:0crwdne11871:0",
|
||||
"other-equipment":"crwdns11872:0crwdne11872:0",
|
||||
"others":"crwdns11873:0crwdne11873:0",
|
||||
"personal-story":"crwdns11874:0crwdne11874:0",
|
||||
"personal-story-details":"crwdns11875:0crwdne11875:0",
|
||||
"personality":"crwdns11876:0crwdne11876:0",
|
||||
"persuade":"crwdns11877:0crwdne11877:0",
|
||||
"photography":"crwdns11878:0crwdne11878:0",
|
||||
"physical-aftereffects":"crwdns11879:0crwdne11879:0",
|
||||
"pilot":"crwdns11880:0crwdne11880:0",
|
||||
"pilot-name-place":"crwdns11881:0crwdne11881:0",
|
||||
"presence":"crwdns11882:0crwdne11882:0",
|
||||
"profession":"crwdns11883:0crwdne11883:0",
|
||||
"protections":"crwdns11884:0crwdne11884:0",
|
||||
"psychoanalysis":"crwdns11885:0crwdne11885:0",
|
||||
"psychology":"crwdns11886:0crwdne11886:0",
|
||||
"psycological-aftereffects":"crwdns11887:0crwdne11887:0",
|
||||
"public":"crwdns11888:0crwdne11888:0",
|
||||
"quality-of-life":"crwdns11889:0crwdne11889:0",
|
||||
"range":"crwdns11890:0crwdne11890:0",
|
||||
"rate":"crwdns11891:0crwdne11891:0",
|
||||
"result":"crwdns11892:0crwdne11892:0",
|
||||
"ride":"crwdns11893:0crwdne11893:0",
|
||||
"rolls-results":"crwdns11894:0crwdne11894:0",
|
||||
"sanity":"crwdns11895:0crwdne11895:0",
|
||||
"sanity-max":"crwdns11896:0crwdne11896:0",
|
||||
"sanity-points":"crwdns11897:0crwdne11897:0",
|
||||
"scenario":"crwdns11898:0crwdne11898:0",
|
||||
"sensory":"crwdns11899:0crwdne11899:0",
|
||||
"sex":"crwdns11900:0crwdne11900:0",
|
||||
"skill":"crwdns11901:0crwdne11901:0",
|
||||
"skills":"crwdns11902:0crwdne11902:0",
|
||||
"social-mod":"crwdns11903:0crwdne11903:0",
|
||||
"special":"crwdns11904:0crwdne11904:0",
|
||||
"spiel":"crwdns11905:0crwdne11905:0",
|
||||
"spot-hidden-object":"crwdns11906:0crwdne11906:0",
|
||||
"stamina":"crwdns11907:0crwdne11907:0",
|
||||
"stealth":"crwdns11908:0crwdne11908:0",
|
||||
"strength":"crwdns11909:0crwdne11909:0",
|
||||
"success-result":"crwdns11910:0crwdne11910:0",
|
||||
"survival":"crwdns11911:0crwdne11911:0",
|
||||
"track":"crwdns11912:0crwdne11912:0",
|
||||
"unholy-knowledge":"crwdns11913:0crwdne11913:0",
|
||||
"value":"crwdns11914:0crwdne11914:0",
|
||||
"vigilance":"crwdns11915:0crwdne11915:0",
|
||||
"weapon":"crwdns11916:0crwdne11916:0",
|
||||
"weapons":"crwdns11917:0crwdne11917:0",
|
||||
"whisper-to-guardian":"crwdns11918:0crwdne11918:0",
|
||||
"willpower":"crwdns11919:0crwdne11919:0",
|
||||
"wound-threshold":"crwdns11920:0crwdne11920:0",
|
||||
"wounds":"crwdns11921:0crwdne11921:0"
|
||||
}
|
||||
@@ -0,0 +1,152 @@
|
||||
/* W3Data ver 1.3 by W3Schools.com */
|
||||
var w3DataObject = {};
|
||||
function w3DisplayData(id, data) {
|
||||
var htmlObj, htmlTemplate, html, arr = [], a, l, rowClone, x, j, i, ii, cc, repeat, repeatObj, repeatX = "";
|
||||
htmlObj = document.getElementById(id);
|
||||
htmlTemplate = w3InitTemplate(id, htmlObj);
|
||||
html = htmlTemplate.cloneNode(true);
|
||||
arr = w3GetElementsByAttribute(html, "w3-repeat");
|
||||
l = arr.length;
|
||||
for (j = (l - 1); j >= 0; j -= 1) {
|
||||
cc = arr[j].getAttribute("w3-repeat").split(" ");
|
||||
if (cc.length == 1) {
|
||||
repeat = cc[0];
|
||||
} else {
|
||||
repeatX = cc[0];
|
||||
repeat = cc[2];
|
||||
}
|
||||
arr[j].removeAttribute("w3-repeat");
|
||||
repeatObj = data[repeat];
|
||||
if (repeatObj && typeof repeatObj == "object" && repeatObj.length != "undefined") {
|
||||
i = 0;
|
||||
for (x in repeatObj) {
|
||||
i += 1;
|
||||
rowClone = arr[j];
|
||||
rowClone = w3NeedleInHaystack(rowClone, "element", repeatX, repeatObj[x]);
|
||||
a = rowClone.attributes;
|
||||
for (ii = 0; ii < a.length; ii += 1) {
|
||||
a[ii].value = w3NeedleInHaystack(a[ii], "attribute", repeatX, repeatObj[x]).value;
|
||||
}
|
||||
(i === repeatObj.length) ? arr[j].parentNode.replaceChild(rowClone, arr[j]) : arr[j].parentNode.insertBefore(rowClone, arr[j]);
|
||||
}
|
||||
} else {
|
||||
console.log("w3-repeat must be an array. " + repeat + " is not an array.");
|
||||
continue;
|
||||
}
|
||||
}
|
||||
html = w3NeedleInHaystack(html, "element");
|
||||
htmlObj.parentNode.replaceChild(html, htmlObj);
|
||||
function w3InitTemplate(id, obj) {
|
||||
var template;
|
||||
template = obj.cloneNode(true);
|
||||
if (w3DataObject.hasOwnProperty(id)) {return w3DataObject[id];}
|
||||
w3DataObject[id] = template;
|
||||
return template;
|
||||
}
|
||||
function w3GetElementsByAttribute(x, att) {
|
||||
var arr = [], arrCount = -1, i, l, y = x.getElementsByTagName("*"), z = att.toUpperCase();
|
||||
l = y.length;
|
||||
for (i = -1; i < l; i += 1) {
|
||||
if (i == -1) {y[i] = x; }
|
||||
if (y[i].getAttribute(z) !== null) {arrCount += 1; arr[arrCount] = y[i];}
|
||||
}
|
||||
return arr;
|
||||
}
|
||||
function w3NeedleInHaystack(elmnt, typ, repeatX, x) {
|
||||
var value, rowClone, pos1, haystack, pos2, needle = [], needleToReplace, i, cc, r;
|
||||
rowClone = elmnt.cloneNode(true);
|
||||
pos1 = 0;
|
||||
while (pos1 > -1) {
|
||||
haystack = (typ == "attribute") ? rowClone.value : rowClone.innerHTML;
|
||||
pos1 = haystack.indexOf("{{", pos1);
|
||||
if (pos1 === -1) {break; }
|
||||
pos2 = haystack.indexOf("}}", pos1 + 1);
|
||||
needleToReplace = haystack.substring(pos1 + 2, pos2);
|
||||
needle = needleToReplace.split("||");
|
||||
value = undefined;
|
||||
for (i = 0; i < needle.length; i += 1) {
|
||||
needle[i] = needle[i].replace(/^\s+|\s+$/gm,''); //trim
|
||||
//value = ((x && x[needle[i]]) || (data && data[needle[i]]));
|
||||
if (x) {value = x[needle[i]];}
|
||||
if (value == undefined && data) {value = data[needle[i]];}
|
||||
if (value == undefined) {
|
||||
cc = needle[i].split(".");
|
||||
if (cc[0] == repeatX) {value = x[cc[1]]; }
|
||||
}
|
||||
if (value == undefined) {
|
||||
if (needle[i] == repeatX) {value = x; }
|
||||
}
|
||||
if (value == undefined) {
|
||||
if (needle[i].substr(0,1) == '"') {
|
||||
value = needle[i].replace(/"/g, "");
|
||||
} else if (needle[i].substr(0,1) == "'") {
|
||||
value = needle[i].replace(/'/g, "");
|
||||
}
|
||||
}
|
||||
if (value != undefined) {break;}
|
||||
}
|
||||
if (value != undefined) {
|
||||
r = "{{" + needleToReplace + "}}";
|
||||
if (typ == "attribute") {
|
||||
rowClone.value = rowClone.value.replace(r, value);
|
||||
} else {
|
||||
w3ReplaceHTML(rowClone, r, value);
|
||||
}
|
||||
}
|
||||
pos1 = pos1 + 1;
|
||||
}
|
||||
return rowClone;
|
||||
}
|
||||
function w3ReplaceHTML(a, r, result) {
|
||||
var b, l, i, a, x, y, j, ll, nam;
|
||||
if (a.hasAttributes()) {
|
||||
b = a.attributes;
|
||||
l = b.length;
|
||||
for (i = 0; i < l; i += 1) {
|
||||
if (b[i].value.indexOf(r) > -1) {b[i].value = b[i].value.replace(r, result); }
|
||||
}
|
||||
}
|
||||
x = a.getElementsByTagName("*");
|
||||
l = x.length;
|
||||
a.innerHTML = a.innerHTML.replace(r, result);
|
||||
}
|
||||
}
|
||||
function w3IncludeHTML() {
|
||||
var z, i, elmnt, a, file, xhttp;
|
||||
z = document.getElementsByTagName("*");
|
||||
for (i = 0; i < z.length; i++) {
|
||||
if (z[i].getAttribute("w3-include-html")) {
|
||||
elmnt = z[i];
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (elmnt) {
|
||||
a = z[i].cloneNode(false);
|
||||
file = elmnt.getAttribute("w3-include-html");
|
||||
xhttp = new XMLHttpRequest();
|
||||
xhttp.onreadystatechange = function() {
|
||||
if (this.readyState == 4 && this.status == 200) {
|
||||
a.removeAttribute("w3-include-html");
|
||||
a.innerHTML = this.responseText;
|
||||
elmnt.parentNode.replaceChild(a, elmnt);
|
||||
w3IncludeHTML();
|
||||
}
|
||||
}
|
||||
xhttp.open("GET", file, true);
|
||||
xhttp.send();
|
||||
}
|
||||
}
|
||||
function w3Http(target, readyfunc, xml, method) {
|
||||
var httpObj;
|
||||
if (!method) {method = "GET"; }
|
||||
if (window.XMLHttpRequest) {
|
||||
httpObj = new XMLHttpRequest();
|
||||
} else if (window.ActiveXObject) {
|
||||
httpObj = new ActiveXObject("Microsoft.XMLHTTP");
|
||||
}
|
||||
if (httpObj) {
|
||||
if (readyfunc) {httpObj.onreadystatechange = readyfunc; }
|
||||
httpObj.open(method, target, true);
|
||||
httpObj.send(xml);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user