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", type: "full",
value: function (e) { return e.INT + e.training + (e.mb * e.mastery); } 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", name: "Deception",
type: "full", type: "full",
@ -235,10 +230,10 @@ function populateModifiers(container, data) {
</div> </div>
`; `;
} }
else if (item.type === "textarea") { else if (item.type === "input") {
categoryDiv.innerHTML += ` categoryDiv.innerHTML += `
<div style="display: contents;"> <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>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> <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> <output id="${category.category}-${item.name}-result"></output>