Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

need test if bookmarketlet works. #282

Merged
merged 1 commit into from
Jan 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions data/arrays.js
Original file line number Diff line number Diff line change
Expand Up @@ -497,6 +497,8 @@ var basesArray = {
"Molten Shrapnel Base": [350, 12, 5, 8, "Extremely Stale"],
"Monkey Jade Base": [350, 12, 10, 10, "Stale"],
"Monolith Base": [500, 12, 0, 0, "No Effect"],
"Naughty List Printing Press (Paperless)": [500,15,0,10,"Fresh"],
"Naughty List Printing Press": [4500,35,35,57,"Fresh"],
"Overgrown Ember Stone Base": [450, 10, 18, 12, "Ultimately Stale"],
"Ox Jade Base": [375, 12, 10, 10, "Stale"],
"Papyrus Base": [400, 8, 0, 10, "Fresh"],
Expand Down
5 changes: 5 additions & 0 deletions src/bookmarklet/bm-setup-items.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@
bases.push("Signature Series Denture Base (Toothless)");
}

// Auto-add Naughty List Printing Press Base variants
if (bases.indexOf("Naughty List Printing Press Base") >= 0) {
bases.push("Naughty List Printing Press (Paperless)");
}

var weapons = arr
.filter(function(el) {
return el.classification === "weapon" && el.quantity > 0;
Expand Down
Loading