diff --git a/src/lib/data/buyables/buyables.ts b/src/lib/data/buyables/buyables.ts index 95e45e5136..eff647fe62 100644 --- a/src/lib/data/buyables/buyables.ts +++ b/src/lib/data/buyables/buyables.ts @@ -739,6 +739,12 @@ const noveltyFood: Buyable[] = [ ]; const Buyables: Buyable[] = [ + { + name: 'Rope', + aliases: ['rope'], + gpCost: 100, + ironmanPrice: 25 + }, { name: 'Fishing Bait', aliases: ['fishing bait'], diff --git a/src/lib/simulation/tempoross.ts b/src/lib/simulation/tempoross.ts index b7036d9840..9b281fb6f5 100644 --- a/src/lib/simulation/tempoross.ts +++ b/src/lib/simulation/tempoross.ts @@ -1,7 +1,7 @@ import { Bank } from 'oldschooljs'; import LootTable from 'oldschooljs/dist/structures/LootTable'; -const replaceItems = ['Fish barrel', 'Tackle box', 'Big harpoonfish', 'Tiny tempor']; +const replaceItems = ['Fish barrel', 'Tackle box', 'Big harpoonfish']; const PoolCasketTable = new LootTable() .add('Rune med helm', 1, 9) diff --git a/tests/unit/snapshots/banksnapshots.test.ts.snap b/tests/unit/snapshots/banksnapshots.test.ts.snap index 24e9c10938..5bb2d2a5de 100644 --- a/tests/unit/snapshots/banksnapshots.test.ts.snap +++ b/tests/unit/snapshots/banksnapshots.test.ts.snap @@ -2,6 +2,19 @@ exports[`OSB Buyables 1`] = ` [ + { + "aliases": [ + "rope", + ], + "gpCost": 100, + "ironmanPrice": 25, + "itemCost": Bank { + "bank": {}, + "frozen": false, + }, + "name": "Rope", + "outputItems": undefined, + }, { "aliases": [ "fishing bait",