Skip to content

Commit

Permalink
interface styles: add Moons of Peril HD healthbars
Browse files Browse the repository at this point in the history
  • Loading branch information
Enriath committed Jan 4, 2025
1 parent f654e1c commit e1baa23
Show file tree
Hide file tree
Showing 14 changed files with 32 additions and 3 deletions.
18 changes: 16 additions & 2 deletions runelite-api/src/main/java/net/runelite/api/SpriteID.java
Original file line number Diff line number Diff line change
Expand Up @@ -1752,7 +1752,14 @@ public final class SpriteID
public static final int ACTIVATED_PRAYER_BACKGROUND = 4892;
/* Unmapped: 4893~5250 */
public static final int EMOTE_FORTIS_SALUTE = 5251;
/* Unmapped: 5252~5620 */
/* Unmapped: 5252~5578 */
public static final int HEALTHBAR_BLOOD_MOON_FRONT_120PX = 5579;
public static final int HEALTHBAR_BLOOD_MOON_BACK_120PX = 5580;
public static final int HEALTHBAR_BLUE_MOON_FRONT_120PX = 5581;
public static final int HEALTHBAR_BLUE_MOON_BACK_120PX = 5582;
public static final int HEALTHBAR_ECLIPSE_MOON_FRONT_120PX = 5583;
public static final int HEALTHBAR_ECLIPSE_MOON_BACK_120PX = 5584;
/* Unmapped: 5585~5620 */
public static final int HISCORE_CHAOS_ELEMENTAL = 5621;
public static final int HISCORE_ARTIO_CALLISTO = 5622;
public static final int HISCORE_CALVARION_VETION = 5623;
Expand All @@ -1773,7 +1780,14 @@ public final class SpriteID
public static final int HISCORE_ARAXXOR = 5638;
public static final int HISCORE_AMOXLIATL = 5639;
public static final int HISCORE_THE_HUEYCOATL = 5640;
/* Unmapped: 5641~5852 */
/* Unmapped: 5641~5643 */
public static final int HEALTHBAR_BLOOD_MOON_FRONT_90PX = 5644;
public static final int HEALTHBAR_BLOOD_MOON_BACK_90PX = 5645;
public static final int HEALTHBAR_BLUE_MOON_FRONT_90PX = 5646;
public static final int HEALTHBAR_BLUE_MOON_BACK_90PX = 5647;
public static final int HEALTHBAR_ECLIPSE_MOON_FRONT_90PX = 5648;
public static final int HEALTHBAR_ECLIPSE_MOON_BACK_90PX = 5649;
/* Unmapped: 5650~5852 */
public static final int HISCORE_CLUE_SCROLL_ALL = 5853;
public static final int HISCORE_BOUNTY_HUNTER_HUNTER = 5854;
public static final int HISCORE_BOUNTY_HUNTER_ROGUE = 5855;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,22 @@ enum HealthbarOverride implements SpriteOverride
COX_GREEN(HEALTHBAR_COX_GREEN, "cox_green.png"),
COX_BLUE(HEALTHBAR_COX_BLUE, "cox_blue.png"),
COX_YELLOW(HEALTHBAR_COX_YELLOW, "cox_yellow.png"),
COX_RED(HEALTHBAR_COX_RED, "cox_red.png");
COX_RED(HEALTHBAR_COX_RED, "cox_red.png"),

BLOOD_MOON_FRONT_120PX(HEALTHBAR_BLOOD_MOON_FRONT_120PX, "blood_moon_front_120px.png"),
BLOOD_MOON_BACK_120PX(HEALTHBAR_BLOOD_MOON_BACK_120PX, "blood_moon_back_120px.png"),
BLUE_MOON_FRONT_120PX(HEALTHBAR_BLUE_MOON_FRONT_120PX, "blue_moon_front_120px.png"),
BLUE_MOON_BACK_120PX(HEALTHBAR_BLUE_MOON_BACK_120PX, "blue_moon_back_120px.png"),
ECLIPSE_MOON_FRONT_120PX(HEALTHBAR_ECLIPSE_MOON_FRONT_120PX, "eclipse_moon_front_120px.png"),
ECLIPSE_MOON_BACK_120PX(HEALTHBAR_ECLIPSE_MOON_BACK_120PX, "eclipse_moon_back_120px.png"),

BLOOD_MOON_FRONT_90PX(HEALTHBAR_BLOOD_MOON_FRONT_90PX, "blood_moon_front_90px.png"),
BLOOD_MOON_BACK_90PX(HEALTHBAR_BLOOD_MOON_BACK_90PX, "blood_moon_back_90px.png"),
BLUE_MOON_FRONT_90PX(HEALTHBAR_BLUE_MOON_FRONT_90PX, "blue_moon_front_90px.png"),
BLUE_MOON_BACK_90PX(HEALTHBAR_BLUE_MOON_BACK_90PX, "blue_moon_back_90px.png"),
ECLIPSE_MOON_FRONT_90PX(HEALTHBAR_ECLIPSE_MOON_FRONT_90PX, "eclipse_moon_front_90px.png"),
ECLIPSE_MOON_BACK_90PX(HEALTHBAR_ECLIPSE_MOON_BACK_90PX, "eclipse_moon_back_90px.png"),
;

@Getter
private final int spriteId;
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit e1baa23

Please sign in to comment.