@@ -94,7 +94,7 @@ public static class Messages {
94
94
public String failedToDeleteParcel = "&4✘ &cAn error occurred while deleting the parcel." ;
95
95
public String failedToCreateParcelLocker = "&4✘ &cCould not create the parcel locker." ;
96
96
public String parcelLockerSuccessfullyCreated = "&7» &aParcel locker created successfully." ;
97
- public String enterDescriptionPrompt = "&6❀ &eEnter a description for the parcel locker:" ;
97
+ public String enterDescriptionPrompt = "&6↵ &eEnter a description for the parcel locker:" ;
98
98
public String cannotBreakParcelLocker = "&4✘ &cYou have no permission to break the parcel locker." ;
99
99
public String parcelLockerSuccessfullyDeleted = "&2✔ &aParcel locker deleted successfully." ;
100
100
public String broadcastParcelLockerRemoved = "&4❣ &cThe parcel locker at &4{X} {Y} {Z} &cin &4{WORLD} &chas been removed by &4{PLAYER}!" ;
@@ -149,52 +149,52 @@ public static class GuiSettings {
149
149
150
150
@ Description ({ " " , "# The item of the small parcel size button" })
151
151
public ConfigItem smallParcelSizeItem = new ConfigItem ()
152
- .setName ("&a✧ Small" )
152
+ .setName ("&a➻ Small" )
153
153
.setLore (List .of ("&bClick to select the small parcel size." ))
154
154
.setType (Material .LIME_WOOL );
155
155
156
156
@ Description ({ " " , "# The item of the medium parcel size button" })
157
157
public ConfigItem mediumParcelSizeItem = new ConfigItem ()
158
- .setName ("&e✧ Medium" )
158
+ .setName ("&e➼ Medium" )
159
159
.setLore (List .of ("&bClick to select the medium parcel size." ))
160
160
.setType (Material .YELLOW_WOOL );
161
161
162
162
@ Description ({ " " , "# The item of the large parcel size button" })
163
163
public ConfigItem largeParcelSizeItem = new ConfigItem ()
164
- .setName ("&c✧ Large" )
164
+ .setName ("&c➽ Large" )
165
165
.setLore (List .of ("&bClick to select the large parcel size." ))
166
166
.setType (Material .RED_WOOL );
167
167
168
168
@ Description ({ " " , "# The item represents selected small parcel size." })
169
169
public ConfigItem selectedSmallParcelSizeItem = new ConfigItem ()
170
- .setName ("&a✧ Small" )
170
+ .setName ("&a➻ Small" )
171
171
.setLore (List .of ("&a✧ Currently selected!" ))
172
172
.setGlow (true )
173
173
.setType (Material .OAK_CHEST_BOAT );
174
174
175
175
@ Description ({ " " , "# The item represents selected medium parcel size." })
176
176
public ConfigItem selectedMediumParcelSizeItem = new ConfigItem ()
177
- .setName ("&e✧ Medium" )
177
+ .setName ("&e➼ Medium" )
178
178
.setLore (List .of ("&aCurrently selected!" ))
179
179
.setGlow (true )
180
180
.setType (Material .CHEST_MINECART );
181
181
182
182
@ Description ({ " " , "# The item represents selected large parcel size." })
183
183
public ConfigItem selectedLargeParcelSizeItem = new ConfigItem ()
184
- .setName ("&c✧ Large" )
184
+ .setName ("&c➽ Large" )
185
185
.setLore (List .of ("&aCurrently selected!" ))
186
186
.setGlow (true )
187
187
.setType (Material .TNT_MINECART );
188
188
189
189
@ Description ({ " " , "# The item of the priority button" })
190
190
public ConfigItem priorityItem = new ConfigItem ()
191
- .setName ("&a✧ Priority" )
191
+ .setName ("&a❀ Priority" )
192
192
.setLore (List .of ("&bClick to select the priority." ))
193
193
.setType (Material .REDSTONE );
194
194
195
195
@ Description ({ " " , "# The item of the selected priority button" })
196
196
public ConfigItem selectedPriorityItem = new ConfigItem ()
197
- .setName ("&a✧ Priority" )
197
+ .setName ("&a✿ Priority" )
198
198
.setLore (List .of ("&aCurrently selected!" , "&c&oClick to unselect." ))
199
199
.setType (Material .REDSTONE_BLOCK )
200
200
.setGlow (true );
@@ -219,27 +219,27 @@ public static class GuiSettings {
219
219
220
220
@ Description ({ " " , "# The item of the parcel submit button" })
221
221
public ConfigItem submitParcelItem = new ConfigItem ()
222
- .setName ("&a✔ Submit parcel" )
223
- .setLore (List .of ("&aClick to submit the parcel." , "&cProceed with caution! This action is final and cannot be undone." ))
222
+ .setName ("&a&l ✔ Submit parcel" )
223
+ .setLore (List .of ("<bold><gradient:#26BF68:#4CE275>Click to submit the parcel.</gradient> " , "<bold><gradient:#C40E0E:#EC2465>Proceed with caution! This action is final and cannot be undone.</gradient> " ))
224
224
.setType (Material .WAXED_OXIDIZED_COPPER )
225
225
.setGlow (true );
226
226
227
227
@ Description ({ " " , "# The item of the parcel list button" })
228
228
public ConfigItem myParcelsItem = new ConfigItem ()
229
- .setName ("&3♪ My parcels" )
229
+ .setName ("&3⌬ My parcels" )
230
230
.setLore (List .of ("&bClick to open your parcels." ))
231
231
.setType (Material .ENDER_CHEST );
232
232
233
233
@ Description ({ " " , "# The item of the sent parcels button" })
234
234
public ConfigItem sentParcelsItem = new ConfigItem ()
235
- .setName ("&6♚ Sent parcels" )
235
+ .setName ("&6↪ Sent parcels" )
236
236
.setLore (List .of ("&eClick to show parcels, which you sent." , "&eYou can also cancel them here, if you want to." ))
237
237
.setType (Material .FILLED_MAP )
238
238
.setGlow (true );
239
239
240
240
@ Description ({ " " , "# The parcel archive item button." })
241
241
public ConfigItem parcelArchiveItem = new ConfigItem ()
242
- .setName ("&5❄ Parcel archive" )
242
+ .setName ("&5♲ Parcel archive" )
243
243
.setLore (List .of ("&eClick to show all parcels, which you sent or received in the past." ))
244
244
.setType (Material .WRITTEN_BOOK );
245
245
@@ -252,14 +252,14 @@ public static class GuiSettings {
252
252
253
253
@ Description ({ " " , "# The item of the parcel locker send button" })
254
254
public ConfigItem parcelLockerSendItem = new ConfigItem ()
255
- .setName ("&b☴ Send parcels" )
255
+ .setName ("&b⛟ Send parcels" )
256
256
.setLore (List .of ("&bClick to send parcels." ))
257
257
.setType (Material .SCULK_SHRIEKER )
258
258
.setGlow (true );
259
259
260
260
@ Description ({ " " , "# The item of the parcel locker status button" })
261
261
public ConfigItem parcelLockerStatusItem = new ConfigItem ()
262
- .setName ("&3♖ Parcel locker status" )
262
+ .setName ("&3⌛ Parcel locker status" )
263
263
.setLore (List .of ("&bClick to show the status of your parcel locker." ))
264
264
.setType (Material .END_PORTAL_FRAME )
265
265
.setGlow (true );
@@ -281,7 +281,7 @@ public static class GuiSettings {
281
281
282
282
@ Description ({ " " , "# The item of the parcel item storage button" })
283
283
public ConfigItem parcelStorageItem = new ConfigItem ()
284
- .setName ("&6✉ Parcel storage" )
284
+ .setName ("&6\uD83D \uDCE4 Parcel storage" )
285
285
.setLore (List .of ("&eClick to edit the parcel content." ))
286
286
.setType (Material .CHEST );
287
287
@@ -296,48 +296,48 @@ public static class GuiSettings {
296
296
297
297
@ Description ({ " " , "# The item of the parcel description button" })
298
298
public ConfigItem parcelDescriptionItem = new ConfigItem ()
299
- .setName ("&2︙ &aParcel description" )
299
+ .setName ("&2☰ &aParcel description" )
300
300
.setLore (List .of ("&aClick to edit the parcel description." ))
301
301
.setType (Material .PAPER );
302
302
303
303
public String parcelDescriptionSetLine = "&2> &aCurrent parcel description: &2{DESCRIPTION}" ;
304
304
305
305
@ Description ({ " " , "# The item of the parcel receiver button" })
306
306
public ConfigItem parcelReceiverItem = new ConfigItem ()
307
- .setName ("&5✧ &dParcel receiver" )
307
+ .setName ("&5\uD83E \uDDCD &dParcel receiver" )
308
308
.setLore (List .of ("&dClick to edit the parcel receiver." ))
309
309
.setType (Material .PLAYER_HEAD );
310
310
311
311
@ Description ({ " " , "# The value of the GUI line, when parcel name is set" })
312
- public String parcelReceiverGuiSetLine = "&5> &dCurrent parcel receiver: &5{RECEIVER}" ;
312
+ public String parcelReceiverGuiSetLine = "&5» &dCurrent parcel receiver: &5{RECEIVER}" ;
313
313
314
314
@ Description ({ " " , "# The value of the player itemlore line, when parcel receiver is not set" })
315
- public String parcelReceiverNotSetLine = "&9ⓘ &bClick to select." ;
315
+ public String parcelReceiverNotSetLine = "&9› &bClick to select." ;
316
316
317
317
@ Description ({ " " , "# The value of the player item lore line, when parcel receiver is set" })
318
318
public String parcelReceiverSetLine = "&2✔ &aSelected!" ;
319
319
320
320
@ Description ({ " " , "# The item of the parcel destination locker button" })
321
321
public ConfigItem parcelDestinationLockerItem = new ConfigItem ()
322
- .setName ("&3➣ &bDestination locker" )
322
+ .setName ("&3↠ &bDestination locker" )
323
323
.setLore (List .of ("&bClick to edit the parcel destination locker." ))
324
324
.setType (Material .VAULT );
325
325
326
326
@ Description ({ " " , "# The item of the previous page button" })
327
327
public ConfigItem previousPageItem = new ConfigItem ()
328
- .setName ("&b✐ Previous page" )
328
+ .setName ("&b← Previous page" )
329
329
.setLore (List .of ("&bClick to go to the previous page." ))
330
330
.setType (Material .ARROW );
331
331
332
332
@ Description ({ " " , "# The item of the next page button" })
333
333
public ConfigItem nextPageItem = new ConfigItem ()
334
- .setName ("&b✐ Next page" )
334
+ .setName ("&b→ Next page" )
335
335
.setLore (List .of ("&bClick to go to the next page." ))
336
336
.setType (Material .ARROW );
337
337
338
338
@ Description ({ " " , "# The item of the confirm items button" })
339
339
public ConfigItem confirmItemsItem = new ConfigItem ()
340
- .setName ("&a✉ Confirm items" )
340
+ .setName ("&a✔ Confirm items" )
341
341
.setLore (List .of ("&aClick to confirm the items." ))
342
342
.setType (Material .LIME_WOOL );
343
343
@@ -360,13 +360,13 @@ public static class GuiSettings {
360
360
.setType (Material .CHEST );
361
361
362
362
@ Description ({ " " , "# The lore of the button in the sending GUI of the parcel destination locker selection GUI" })
363
- public String parcelDestinationLockerSetLine = "&6> &eCurrent destination locker: &6{DESCRIPTION}" ;
363
+ public String parcelDestinationLockerSetLine = "&6› &eCurrent destination locker: &6{DESCRIPTION}" ;
364
364
365
365
@ Description ({ " " , "# The destination GUI locker button lore in case the destination locker is set." })
366
366
public String parcelDestinationSetLine = "&2✔ &aSelected!" ;
367
367
368
368
@ Description ({ " " , "# The destination GUI locker button lore in case the destination locker is not set." })
369
- public String parcelDestinationNotSetLine = "&9ⓘ &bClick to select." ;
369
+ public String parcelDestinationNotSetLine = "&9› &bClick to select." ;
370
370
371
371
@ Description ({ " " , "# Illegal items list, that cannot be stored in the parcel." })
372
372
public List <Material > illegalItems = List .of (
0 commit comments