update default buttons

This commit is contained in:
Ryder Belserion 2024-09-12 19:15:35 -04:00
parent 3bb542f20c
commit f903db5af5
No known key found for this signature in database

View File

@ -30,8 +30,7 @@ public class ButtonProperty {
case "expired-item" -> {
this.displayName = "<gold>Expired Items";
this.displayLore = List.of(
"<green>Click here to view, and collect all",
"<green>items that have expired."
"<bold><gray>(<gold>!<gray>)</bold> <gray>Click here to view, and collect all items that have expired."
);
this.material = "poisonous_potato";
this.slot = 46;
@ -40,8 +39,7 @@ public class ButtonProperty {
case "selling-item" -> {
this.displayName = "<gold>Currently looking at items being sold";
this.displayLore = List.of(
"<bold><gray>(<gold>!<gray>)</bold> <gray>Click here to see items",
"<gray>that you can bid on."
"<bold><gray>(<gold>!<gray>)</bold> <gray>Click here to see items that you can bid on."
);
this.material = "emerald";
this.slot = 49;
@ -50,8 +48,7 @@ public class ButtonProperty {
case "bidding-item" -> {
this.displayName = "<gold>Currently looking at items that can be bid on";
this.displayLore = List.of(
"<bold><gray>(<gold>!<gray>)</bold> <gray>Click here to see items",
"<gray>that you can buy at a price."
"<bold><gray>(<gold>!<gray>)</bold> <gray>Click here to see items that you can buy at a price."
);
this.material = "magma_cream";
this.slot = 49;
@ -60,11 +57,10 @@ public class ButtonProperty {
case "sold-item" -> {
this.displayName = "<gold>Items you are currently selling";
this.displayLore = List.of(
"<green>Click to view all the items you,",
"<green>currently up for auction."
"<bold><gray>(<gold>!<gray>)</bold> <gray>Click to view all the items you, currently up for auction."
);
this.material = "magma_cream";
this.slot = 53;
this.material = "gold_ingot";
this.slot = 52;
}
}