Skip to content

Instantly share code, notes, and snippets.

@Flexiboi
Last active January 28, 2023 23:32
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
} else if (itemData.name == "markedbills") {
$(".item-info-title").html("<p>" + itemData.label + "</p>");
$(".item-info-description").html(
"<p><strong>Worth: </strong><span>$" +
itemData.info.worth +
"</span></p>"
);
} else if (itemData.name == "workbench1" || itemData.name == "workbench2") {
$(".item-info-title").html("<p>" + itemData.label + "</p>");
$(".item-info-description").html(
"<p><strong>Level: </strong><span>" +
itemData.info.benchlevel +
"</span></p>" +
"<p><strong>Leven: </strong><span>" +
itemData.info.benchhealth +
"</span></p>"
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment