From 44edf7917b0e91d03d604c10b27896fa46138b25 Mon Sep 17 00:00:00 2001 From: Veradictus <45127244+Veradictus@users.noreply.github.com> Date: Fri, 15 Sep 2023 14:03:22 -0600 Subject: [PATCH] fix(server): bosses minions --- packages/server/data/plugins/mobs/hellhound.ts | 4 ++-- packages/server/data/plugins/mobs/ogrelord.ts | 8 ++++---- .../server/data/plugins/mobs/piratecaptain.ts | 16 ++++++++-------- .../server/data/plugins/mobs/skeletonking.ts | 4 ++-- 4 files changed, 16 insertions(+), 16 deletions(-) diff --git a/packages/server/data/plugins/mobs/hellhound.ts b/packages/server/data/plugins/mobs/hellhound.ts index 1b8a2dd98d..be4bea774b 100644 --- a/packages/server/data/plugins/mobs/hellhound.ts +++ b/packages/server/data/plugins/mobs/hellhound.ts @@ -10,8 +10,8 @@ const MAX_MINIONS = 8; export default class Hellhound extends Default { // Positions where minions will spawn. private positions: Position[] = [ - { x: 963, y: 668 }, - { x: 948, y: 666 } + { x: 1059, y: 765 }, + { x: 1047, y: 768 } ]; private minionsSpawned = 0; diff --git a/packages/server/data/plugins/mobs/ogrelord.ts b/packages/server/data/plugins/mobs/ogrelord.ts index 7698782480..b79984c643 100644 --- a/packages/server/data/plugins/mobs/ogrelord.ts +++ b/packages/server/data/plugins/mobs/ogrelord.ts @@ -13,10 +13,10 @@ export default class OgreLord extends Default { ]; private positions: Position[] = [ - { x: 240, y: 65 }, - { x: 248, y: 65 }, - { x: 240, y: 70 }, - { x: 248, y: 70 } + { x: 338, y: 160 }, + { x: 346, y: 164 }, + { x: 342, y: 169 }, + { x: 335, y: 164 } ]; // Waves of minions the boss spawns. diff --git a/packages/server/data/plugins/mobs/piratecaptain.ts b/packages/server/data/plugins/mobs/piratecaptain.ts index 5609b99c0a..d3dc4597ee 100644 --- a/packages/server/data/plugins/mobs/piratecaptain.ts +++ b/packages/server/data/plugins/mobs/piratecaptain.ts @@ -15,17 +15,17 @@ export default class PirateCaptain extends Default { private lastPickedTeleport: Position = { x: 0, y: 0 }; private teleportSpots: Position[] = [ - { x: 822, y: 649 }, - { x: 825, y: 659 }, - { x: 836, y: 659 }, - { x: 834, y: 649 } + { x: 935, y: 743 }, + { x: 930, y: 755 }, + { x: 920, y: 753 }, + { x: 918, y: 743 } ]; private minionSpots: Position[] = [ - { x: 826, y: 651 }, - { x: 837, y: 650 }, - { x: 835, y: 657 }, - { x: 824, y: 654 } + { x: 923, y: 745 }, + { x: 931, y: 746 }, + { x: 929, y: 754 }, + { x: 923, y: 752 } ]; public constructor(mob: Mob) { diff --git a/packages/server/data/plugins/mobs/skeletonking.ts b/packages/server/data/plugins/mobs/skeletonking.ts index a3e3333fe6..e61111e22b 100644 --- a/packages/server/data/plugins/mobs/skeletonking.ts +++ b/packages/server/data/plugins/mobs/skeletonking.ts @@ -10,8 +10,8 @@ const MAX_MINIONS = 6; export default class SkeletonKing extends Default { // Two positions where the minions will spawn. private positions: Position[] = [ - { x: 22, y: 684 }, - { x: 28, y: 684 } + { x: 139, y: 782 }, + { x: 125, y: 785 } ]; private minionsSpawned = 0;