diff --git a/Server/data/configs/item_configs.json b/Server/data/configs/item_configs.json index a2a74570f..dbd54a16f 100644 --- a/Server/data/configs/item_configs.json +++ b/Server/data/configs/item_configs.json @@ -42022,14 +42022,16 @@ "shop_price": "1", "examine": "A handy little club made out of oak.", "durability": null, - "name": "Oak-blackjack", "weight": "1.8", - "archery_ticket_price": "0", "attack_speed": "4", - "id": "4599", "weapon_interface": "10", - "bonuses": "0,0,0,0,0,0,0,0,0,0,0,2,0,0,0", - "equipment_slot": "3" + "defence_anim": "425", + "equipment_slot": "3", + "attack_anims": "395,395,395,395", + "name": "Oak-blackjack", + "archery_ticket_price": "0", + "id": "4599", + "bonuses": "0,0,0,0,0,0,0,0,0,0,0,2,0,0,0" }, { "shop_price": "600", @@ -42039,7 +42041,9 @@ "weight": "1", "attack_speed": "4", "weapon_interface": "10", + "defence_anim": "425", "equipment_slot": "3", + "attack_anims": "395,395,395,395", "grand_exchange_price": "321", "name": "Willow-blackjack", "tradeable": "true", @@ -58387,7 +58391,9 @@ "weight": "1.8", "attack_speed": "4", "weapon_interface": "10", + "defence_anim": "425", "equipment_slot": "3", + "attack_anims": "395,395,395,395", "grand_exchange_price": "1432", "name": "Maple blackjack", "tradeable": "true", @@ -59239,7 +59245,9 @@ "turn90ccw_anim": "1208", "attack_speed": "5", "turn180_anim": "1206", + "defence_anim": "420", "equipment_slot": "3", + "attack_anims": "419,419,419,419", "grand_exchange_price": "368700", "stand_anim": "813", "tradeable": "true", @@ -99623,7 +99631,9 @@ "turn90ccw_anim": "1208", "attack_speed": "5", "turn180_anim": "1206", + "defence_anim": "420", "equipment_slot": "3", + "attack_anims": "419,419,419,419", "grand_exchange_price": "231300", "stand_anim": "813", "tradeable": "true", @@ -99651,29 +99661,31 @@ "id": "11737" }, { - "requirements": "{0,40}-{6,40}", "ge_buy_limit": "10", "turn90cw_anim": "1207", "examine": "It's a slightly magical stick.", "walk_anim": "1205", - "durability": null, - "weight": "2", "turn90ccw_anim": "1208", "attack_speed": "5", - "weapon_interface": "1", "turn180_anim": "1206", - "render_anim": "28", + "defence_anim": "420", "equipment_slot": "3", + "attack_anims": "419,419,419,419", "grand_exchange_price": "267600", "stand_anim": "813", - "attack_audios": "2555,0,0,0", "tradeable": "true", - "name": "Mystic steam staff", "run_anim": "1210", "archery_ticket_price": "0", "id": "11738", "stand_turn_anim": "1209", - "bonuses": "10,-1,40,14,0,2,3,1,14,0,0,50,0,0,0" + "bonuses": "10,-1,40,14,0,2,3,1,14,0,0,50,0,0,0", + "requirements": "{0,40}-{6,40}", + "durability": null, + "weight": "2", + "weapon_interface": "1", + "render_anim": "28", + "attack_audios": "2555,0,0,0", + "name": "Mystic steam staff" }, { "ge_buy_limit": "10", @@ -106091,7 +106103,9 @@ "weapon_interface": "10", "turn180_anim": "8684", "render_anim": "1157", + "defence_anim": "403", "equipment_slot": "3", + "attack_anims": "401,401,401,401", "grand_exchange_price": "77", "stand_anim": "8683", "name": "Ogre club", diff --git a/Server/src/main/java/core/game/content/zone/rellekka/RellekkaZone.java b/Server/src/main/java/core/game/content/zone/rellekka/RellekkaZone.java index 7b28796ce..47883a7f7 100644 --- a/Server/src/main/java/core/game/content/zone/rellekka/RellekkaZone.java +++ b/Server/src/main/java/core/game/content/zone/rellekka/RellekkaZone.java @@ -167,7 +167,7 @@ public final class RellekkaZone extends MapZone implements Plugin { case "climb-over": switch (node.getId()) { case 5847: - AgilityHandler.forceWalk(player, -1, player.getLocation(), player.getLocation().transform(0, player.getLocation().getY() <= 3657 ? 3 : -3, 0), Animation.create(840), 20, 1, null, 0); + AgilityHandler.forceWalk(player, -1, player.getLocation(), player.getLocation().transform(0, player.getLocation().getY() <= 3657 ? 3 : -3, 0), Animation.create(839), 20, 1, null, 0); break; } break;