remove lore from main skills

This commit is contained in:
Arthur Lu 2023-04-13 18:06:43 -07:00
parent f884e02c23
commit 47ee2a1f29

View File

@ -168,11 +168,6 @@ let rpModifiers = [
type: "full",
value: function (e) { return e.INT + e.training + (e.mb * e.mastery); }
},
{
name: "Lore",
type: "textarea",
value: function (e) { return e.INT + e.training + (e.mb * e.mastery); }
},
{
name: "Deception",
type: "full",
@ -235,10 +230,10 @@ function populateModifiers(container, data) {
</div>
`;
}
else if (item.type === "textarea") {
else if (item.type === "input") {
categoryDiv.innerHTML += `
<div style="display: contents;">
<textarea></textarea>
<label>Lore<input type="text"></label>
<label>Training<input id="${category.category}-${item.name}-training" name="${category.category}-${item.name}-training" type="number"></label>
<label>MB<input id="${category.category}-${item.name}-mb" name="${category.category}-${item.name}-mb" type="checkbox"></label>
<output id="${category.category}-${item.name}-result"></output>