From fad41f99479319cda9f975d33b2a3bf380fddc05 Mon Sep 17 00:00:00 2001 From: MatthewBishop <55411296+MatthewBishop@users.noreply.github.com> Date: Mon, 6 Feb 2023 21:08:48 -0500 Subject: [PATCH] Merge pull request #609 * tokkul pricing --- .../com/rs2/game/shops/ShopAssistant.java | 20 ++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/2006Scape Server/src/main/java/com/rs2/game/shops/ShopAssistant.java b/2006Scape Server/src/main/java/com/rs2/game/shops/ShopAssistant.java index dc65fd21..b7b584ff 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/shops/ShopAssistant.java +++ b/2006Scape Server/src/main/java/com/rs2/game/shops/ShopAssistant.java @@ -266,7 +266,25 @@ public class ShopAssistant { return 75000; case 6568: return 90000; - } + case 440: // Iron ore + return 25; + case 442: // Silver ore + return 112; + case 444: // Gold ore + return 225; + case 447: // Mithril ore + return 243; + case 449: // Adamantite ore + return 600; + case 451: // Runite ore + return 4800; + case 1619: // Uncut ruby + return 150; + case 1617: // Uncut diamond + return 300; + case 1631: // Uncut dragonstone + return 1500; + } return 0; }