Add more bed sheet variants and kelp bed sheets
|
@ -102,21 +102,26 @@ public class FancyBedBlock extends BedBlock {
|
|||
BLACK(DyeColor.BLACK),
|
||||
BROWN(DyeColor.BROWN),
|
||||
RED(DyeColor.RED),
|
||||
ORANGE(DyeColor.ORANGE),//
|
||||
ORANGE(DyeColor.ORANGE),
|
||||
YELLOW(DyeColor.YELLOW),
|
||||
LIME(DyeColor.LIME),
|
||||
GREEN(DyeColor.GREEN),
|
||||
CYAN(DyeColor.CYAN),
|
||||
LIGHT_BLUE(DyeColor.LIGHT_BLUE),
|
||||
BLUE(DyeColor.BLUE),//
|
||||
BLUE(DyeColor.BLUE),
|
||||
PURPLE(DyeColor.PURPLE),
|
||||
MAGENTA(DyeColor.MAGENTA),
|
||||
PINK(DyeColor.PINK), //
|
||||
PINK(DyeColor.PINK),
|
||||
|
||||
APPLE(null),
|
||||
BARS(null),
|
||||
CHECKER(null),
|
||||
RAINBOW(null);
|
||||
KELP(null),
|
||||
RAINBOW(null),
|
||||
RAINBOW_BPW(null),
|
||||
RAINBOW_BPY(null),
|
||||
RAINBOW_PBG(null),
|
||||
RAINBOW_PWR(null);
|
||||
|
||||
@SuppressWarnings("deprecation")
|
||||
public static final Codec<SheetPattern> CODEC = StringIdentifiable.createCodec(SheetPattern::values);
|
||||
|
|
|
@ -182,7 +182,12 @@ public interface UItems {
|
|||
Item APPLE_BED_SHEETS = register(CloudBedBlock.SheetPattern.APPLE);
|
||||
Item BARRED_BED_SHEETS = register("barred_bed_sheets", new BedsheetsItem(CloudBedBlock.SheetPattern.BARS, new Item.Settings().maxCount(1)), ItemGroups.FUNCTIONAL);
|
||||
Item CHECKERED_BED_SHEETS = register("checkered_bed_sheets", new BedsheetsItem(CloudBedBlock.SheetPattern.CHECKER, new Item.Settings().maxCount(1)), ItemGroups.FUNCTIONAL);
|
||||
Item KELP_BED_SHEETS = register(CloudBedBlock.SheetPattern.KELP);
|
||||
Item RAINBOW_BED_SHEETS = register(CloudBedBlock.SheetPattern.RAINBOW);
|
||||
Item RAINBOW_BPW_BED_SHEETS = register(CloudBedBlock.SheetPattern.RAINBOW_BPW);
|
||||
Item RAINBOW_BPY_BED_SHEETS = register(CloudBedBlock.SheetPattern.RAINBOW_BPY);
|
||||
Item RAINBOW_PBG_BED_SHEETS = register(CloudBedBlock.SheetPattern.RAINBOW_PBG);
|
||||
Item RAINBOW_PWR_BED_SHEETS = register(CloudBedBlock.SheetPattern.RAINBOW_PWR);
|
||||
|
||||
AmuletItem PEGASUS_AMULET = register("pegasus_amulet", new PegasusAmuletItem(new FabricItemSettings()
|
||||
.maxCount(1)
|
||||
|
|
|
@ -200,7 +200,12 @@
|
|||
"item.unicopia.apple_bed_sheets": "Apple Patterned Bed Sheets",
|
||||
"item.unicopia.barred_bed_sheets": "Bar Patterned Bed Sheets",
|
||||
"item.unicopia.checkered_bed_sheets": "Checker Patterned Bed Sheets",
|
||||
"item.unicopia.kelp_bed_sheets": "Kelp Bed Sheets",
|
||||
"item.unicopia.rainbow_bed_sheets": "Rainbow Patterned Bed Sheets",
|
||||
"item.unicopia.rainbow_bpw_bed_sheets": "BPW Rainbow Patterned Bed Sheets",
|
||||
"item.unicopia.rainbow_bpy_bed_sheets": "BPY Rainbow Patterned Bed Sheets",
|
||||
"item.unicopia.rainbow_pbg_bed_sheets": "PGB Rainbow Patterned Bed Sheets",
|
||||
"item.unicopia.rainbow_pwr_bed_sheets": "PWR Rainbow Patterned Bed Sheets",
|
||||
|
||||
"block.unicopia.rocks": "Rocks",
|
||||
"block.unicopia.bananas": "Bananas",
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "unicopia:item/kelp_bed_sheets"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "unicopia:item/rainbow_bpw_bed_sheets"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "unicopia:item/rainbow_bpy_bed_sheets"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "unicopia:item/rainbow_pbg_bed_sheets"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "unicopia:item/rainbow_pwr_bed_sheets"
|
||||
}
|
||||
}
|
After Width: | Height: | Size: 6.2 KiB |
After Width: | Height: | Size: 6.1 KiB |
After Width: | Height: | Size: 5.9 KiB |
After Width: | Height: | Size: 6 KiB |
After Width: | Height: | Size: 6.3 KiB |
After Width: | Height: | Size: 7.5 KiB |
After Width: | Height: | Size: 7.1 KiB |
After Width: | Height: | Size: 7.1 KiB |
After Width: | Height: | Size: 7.1 KiB |
After Width: | Height: | Size: 7.1 KiB |
|
@ -21,6 +21,11 @@
|
|||
"unicopia:apple_bed_sheets",
|
||||
"unicopia:barred_bed_sheets",
|
||||
"unicopia:checkered_bed_sheets",
|
||||
"unicopia:rainbow_bed_sheets"
|
||||
"unicopia:kelp_bed_sheets",
|
||||
"unicopia:rainbow_bed_sheets",
|
||||
"unicopia:rainbow_bpw_bed_sheets",
|
||||
"unicopia:rainbow_bpy_bed_sheets",
|
||||
"unicopia:rainbow_pbg_bed_sheets",
|
||||
"unicopia:rainbow_pwr_bed_sheets"
|
||||
]
|
||||
}
|
||||
|
|