From c2f0284b10a61d6e7454f885d610f4c648ce5b36 Mon Sep 17 00:00:00 2001 From: Wlowscha <54003515+Wlowscha@users.noreply.github.com> Date: Sat, 21 Jun 2025 12:13:51 +0200 Subject: [PATCH] Updated encounter with correct sprite --- public/images/items.json | 23 ++++++++++++++++++- .../encounters/the-strong-stuff-encounter.ts | 2 +- 2 files changed, 23 insertions(+), 2 deletions(-) diff --git a/public/images/items.json b/public/images/items.json index 4312f2a58c4..d689604c501 100644 --- a/public/images/items.json +++ b/public/images/items.json @@ -3307,7 +3307,28 @@ } }, { - "filename": "berry_juice", + "filename": "berry_juice_good", + "rotated": false, + "trimmed": true, + "sourceSize": { + "w": 32, + "h": 32 + }, + "spriteSourceSize": { + "x": 5, + "y": 5, + "w": 22, + "h": 21 + }, + "frame": { + "x": 312, + "y": 21, + "w": 22, + "h": 21 + } + }, + { + "filename": "berry_juice_bad", "rotated": false, "trimmed": true, "sourceSize": { diff --git a/src/data/mystery-encounters/encounters/the-strong-stuff-encounter.ts b/src/data/mystery-encounters/encounters/the-strong-stuff-encounter.ts index 15baad24075..0878cefa9bb 100644 --- a/src/data/mystery-encounters/encounters/the-strong-stuff-encounter.ts +++ b/src/data/mystery-encounters/encounters/the-strong-stuff-encounter.ts @@ -54,7 +54,7 @@ export const TheStrongStuffEncounter: MysteryEncounter = MysteryEncounterBuilder .withFleeAllowed(false) .withIntroSpriteConfigs([ { - spriteKey: "berry_juice", + spriteKey: "berry_juice_good", fileRoot: "items", hasShadow: true, isItem: true,