Skip to content

Commit

Permalink
feat: add new custom characters (#287)
Browse files Browse the repository at this point in the history
  • Loading branch information
Snabeldier authored Jan 24, 2025
1 parent 8914cfa commit abfce26
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 13 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package minevalley.core.api.enums;
package minevalley.core.api.messaging.characters;

import lombok.AccessLevel;
import lombok.RequiredArgsConstructor;
Expand All @@ -25,13 +25,15 @@ public enum CustomCharacter {
CROSS('\uea03'),
CHECKMARK('\uea04'),
LOG('\uea05'),
BUG('\uea06'),
EYE('\uea07'),
WRENCH('\uea08'),
CIRCLE('\uea09'),
HOUSE('\uea10'),
EURO_NOTES('\uea11'),
DRIFTING_CAR('\uea12'),
INPUT('\uea06'),
BUG('\uea07'),
EYE('\uea08'),
WRENCH('\uea09'),
CIRCLE('\uea10'),
HOUSE('\uea11'),
EURO_NOTES('\uea12'),
DRIFTING_CAR('\uea13'),
NPC('\uea14'),

BELL('\ueb00'),
PHONE('\ueb01'),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
import lombok.AccessLevel;
import lombok.Getter;
import lombok.RequiredArgsConstructor;
import minevalley.core.api.enums.CustomCharacter;
import minevalley.core.api.messaging.characters.CustomCharacter;
import net.kyori.adventure.text.Component;
import net.kyori.adventure.text.TextComponent;
import net.kyori.adventure.text.format.NamedTextColor;

import javax.annotation.Nonnull;

import static minevalley.core.api.enums.CustomCharacter.CHECKMARK;
import static minevalley.core.api.enums.CustomCharacter.CROSS;
import static minevalley.core.api.messaging.characters.CustomCharacter.CHECKMARK;
import static minevalley.core.api.messaging.characters.CustomCharacter.CROSS;
import static net.kyori.adventure.text.format.NamedTextColor.*;

@Getter(onMethod_ = @Nonnull)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
import lombok.AccessLevel;
import lombok.Getter;
import lombok.RequiredArgsConstructor;
import minevalley.core.api.enums.CustomCharacter;
import minevalley.core.api.messaging.characters.CustomCharacter;
import net.kyori.adventure.text.Component;
import net.kyori.adventure.text.TextComponent;
import net.kyori.adventure.text.format.NamedTextColor;

import javax.annotation.Nonnull;

import static minevalley.core.api.enums.CustomCharacter.*;
import static minevalley.core.api.messaging.characters.CustomCharacter.*;
import static net.kyori.adventure.text.format.NamedTextColor.*;

@Getter(onMethod_ = @Nonnull)
Expand Down

0 comments on commit abfce26

Please sign in to comment.