40 lines
653 B
Text
40 lines
653 B
Text
h2 Attribute Rolls
|
|
-
|
|
var attr_rolls = [
|
|
{
|
|
name: "Surprise",
|
|
roll: "",
|
|
shorthand: "(R+I)"
|
|
},
|
|
{
|
|
name: "Composure",
|
|
roll: "",
|
|
shorthand: "(C+W)"
|
|
},
|
|
{
|
|
name: "Judge Intentions",
|
|
roll: "",
|
|
shorthand: "(C+I)"
|
|
},
|
|
{
|
|
name: "Memory",
|
|
roll: "",
|
|
shorthand: "(L+W)"
|
|
},
|
|
{
|
|
name: "Poison/Drug",
|
|
roll: "",
|
|
shorthand: "(B+W)"
|
|
},
|
|
{
|
|
name: "Carry/Lift",
|
|
roll: "",
|
|
shorthand: "(B+S)"
|
|
}
|
|
];
|
|
|
|
.attr-rolls-grid
|
|
include ./_attr-rollsRow
|
|
each val in attr_rolls
|
|
+attr-rollsRow(val.name, val.roll, val.shorthand)
|
|
|