diff --git a/src/main/java/net/id/paradiselost/blocks/ParadiseLostBlocks.java b/src/main/java/net/id/paradiselost/blocks/ParadiseLostBlocks.java index d30696998..7ae9ea8ec 100644 --- a/src/main/java/net/id/paradiselost/blocks/ParadiseLostBlocks.java +++ b/src/main/java/net/id/paradiselost/blocks/ParadiseLostBlocks.java @@ -310,11 +310,6 @@ private static Settings crop() { public static final GroundcoverBlock SHAMROCK = add("shamrock", new GroundcoverBlock(shrub().sounds(BlockSoundGroup.AZALEA_LEAVES), 0.99999), flammablePlant, cutoutRenderLayer); public static final GroundcoverBlock MALT_SPRIG = add("malt_sprig", new GroundcoverBlock(shrub().sounds(BlockSoundGroup.AZALEA_LEAVES), 1), flammablePlant, cutoutRenderLayer); public static final TallWaterPlantBlock HONEY_NETTLE = add("honey_nettle", new TallWaterPlantBlock(shrub().sounds(BlockSoundGroup.SMALL_DRIPLEAF)), cutoutRenderLayer); - public static final ParadiseLostSeagrassBlock HALOPHIA = add("halophia", new ParadiseLostSeagrassBlock(shrub().sounds(BlockSoundGroup.WET_GRASS)), cutoutRenderLayer); - public static final GiantLilypadBlock GIANT_LILY = add("giant_lily", new GiantLilypadBlock(copy(LILY_PAD).mapColor(MapColor.PALE_GREEN)), cutoutMippedRenderLayer); - public static final WeepingCloudburstBlock WEEPING_CLOUDBURST = add("weeping_cloudburst", new WeepingCloudburstBlock(copy(SUGAR_CANE).mapColor(MapColor.PALE_PURPLE)), cutoutMippedRenderLayer); - public static final MossStarBlock MOSS_STAR = add("moss_star", new MossStarBlock(copy(MOSS_BLOCK).dynamicBounds().luminance(state -> state.get(Properties.WATERLOGGED) ? 5 : 0)), cutoutRenderLayer); - public static final MossBallBlock MOSS_BALL = add("moss_ball", new MossBallBlock(copy(MOSS_BLOCK).dynamicBounds()), flammablePlant); public static final Block LIVERWORT = add("liverwort", new Block(copy(MOSS_BLOCK).sounds(BlockSoundGroup.AZALEA_LEAVES))); public static final CarpetBlock LIVERWORT_CARPET = add("liverwort_carpet", new CarpetBlock(copy(MOSS_BLOCK).sounds(BlockSoundGroup.AZALEA_LEAVES))); @@ -322,11 +317,6 @@ private static Settings lichen() { return copy(OAK_WOOD).mapColor(MapColor.DULL_RED).sounds(BlockSoundGroup.MOSS_BLOCK); } - public static final LichenBlock LICHEN = add("lichen", new LichenBlock(lichen().ticksRandomly(), false)); - public static final LichenPileBlock LICHEN_PILE = add("lichen_pile", new LichenPileBlock(lichen(), false)); - public static final LichenBlock LUCATIEL_LICHEN = add("lucatiel_lichen", new LichenBlock(lichen().ticksRandomly(), true)); - public static final LichenPileBlock LUCATIEL_LICHEN_PILE = add("lucatiel_lichen_pile", new LichenPileBlock(lichen(), true)); - public static final GlowLichenBlock SWEDROOT_SPREAD = add("swedroot_spread", new GlowLichenBlock(Settings.of(Material.REPLACEABLE_PLANT, MapColor.OAK_TAN).noCollision().strength(1F).sounds(BlockSoundGroup.SHROOMLIGHT)), cutoutRenderLayer); public static final WallClingingPlantBlock ROOTCAP = add("rootcap", new WallClingingPlantBlock(copy(BROWN_MUSHROOM), ParadiseLostBlockTags.FUNGI_CLINGABLES), cutoutRenderLayer); diff --git a/src/main/java/net/id/paradiselost/client/rendering/util/ParadiseLostColorProviders.java b/src/main/java/net/id/paradiselost/client/rendering/util/ParadiseLostColorProviders.java index 5ecd86290..3c70c2fc5 100644 --- a/src/main/java/net/id/paradiselost/client/rendering/util/ParadiseLostColorProviders.java +++ b/src/main/java/net/id/paradiselost/client/rendering/util/ParadiseLostColorProviders.java @@ -21,7 +21,6 @@ public static void initClient() { private static void initBlocks() { ColorProviderRegistryImpl.BLOCK.register(((state, world, pos, tintIndex) -> world != null && pos != null ? BiomeColors.getFoliageColor(world, pos) : FoliageColors.getDefaultColor()), ParadiseLostBlocks.AUREL_LEAVES, ParadiseLostBlocks.AUREL_LEAF_PILE, ParadiseLostBlocks.SHAMROCK); ColorProviderRegistryImpl.BLOCK.register(((state, world, pos, tintIndex) -> world != null && pos != null ? BiomeColors.getGrassColor(world, pos) : GrassColors.getColor(0.5D, 1.0D)), ParadiseLostBlocks.HIGHLANDS_GRASS, ParadiseLostBlocks.GRASS, ParadiseLostBlocks.GRASS_FLOWERING, ParadiseLostBlocks.SHORT_GRASS, ParadiseLostBlocks.TALL_GRASS, ParadiseLostBlocks.FERN, ParadiseLostBlocks.BUSH); - ColorProviderRegistryImpl.BLOCK.register(((state, world, pos, tintIndex) -> world != null && pos != null ? BiomeColors.getGrassColor(world, pos) : -1), ParadiseLostBlocks.HONEY_NETTLE, ParadiseLostBlocks.WEEPING_CLOUDBURST); ColorProviderRegistryImpl.BLOCK.register(((state, world, pos, tintIndex) -> world != null && pos != null ? BiomeColors.getWaterColor(world, pos) : -1), ParadiseLostBlocks.SPRING_WATER); } diff --git a/src/main/java/net/id/paradiselost/entities/util/FloatingBlockHelperImpls.java b/src/main/java/net/id/paradiselost/entities/util/FloatingBlockHelperImpls.java index 6d8bc62b9..ea277ae9a 100644 --- a/src/main/java/net/id/paradiselost/entities/util/FloatingBlockHelperImpls.java +++ b/src/main/java/net/id/paradiselost/entities/util/FloatingBlockHelperImpls.java @@ -45,22 +45,19 @@ public static Any getInstance() { @Override public boolean tryCreate(World world, BlockPos pos, boolean force) { // try making a pusher, then a double, then a generic - return PUSHER.tryCreate(world, pos, force) - || DOUBLE.tryCreate(world, pos, force) - || STANDARD.tryCreate(world, pos, force); + return DOUBLE.tryCreate(world, pos, force) || STANDARD.tryCreate(world, pos, force); } @Override public boolean isSuitableFor(BlockState state) { - return STANDARD.isSuitableFor(state) || DOUBLE.isSuitableFor(state) || PUSHER.isSuitableFor(state); + return STANDARD.isSuitableFor(state) || DOUBLE.isSuitableFor(state); } @Override public boolean isBlocked(boolean shouldDrop, World world, BlockPos pos) { BlockState state = world.getBlockState(pos); return STANDARD.isBlocked(shouldDrop, world, pos) - && (DOUBLE.isSuitableFor(state) && DOUBLE.isBlocked(shouldDrop, world, pos)) - && (PUSHER.isSuitableFor(state) && PUSHER.isBlocked(shouldDrop, world, pos)); + && (DOUBLE.isSuitableFor(state) && DOUBLE.isBlocked(shouldDrop, world, pos)); } } diff --git a/src/main/java/net/id/paradiselost/items/ParadiseLostItemGroups.java b/src/main/java/net/id/paradiselost/items/ParadiseLostItemGroups.java index abba7dcce..b81015f2b 100644 --- a/src/main/java/net/id/paradiselost/items/ParadiseLostItemGroups.java +++ b/src/main/java/net/id/paradiselost/items/ParadiseLostItemGroups.java @@ -14,7 +14,7 @@ public class ParadiseLostItemGroups { public static final ItemGroup PARADISE_LOST_DECORATIONS = build( ParadiseLost.locate("decorations"), - () -> new ItemStack(ParadiseLostBlocks.GIANT_LILY)); + () -> new ItemStack(ParadiseLostBlocks.CHERINE_LANTERN)); public static final ItemGroup PARADISE_LOST_TOOLS = build( ParadiseLost.locate("tools"), diff --git a/src/main/java/net/id/paradiselost/items/ParadiseLostItems.java b/src/main/java/net/id/paradiselost/items/ParadiseLostItems.java index defe3d676..374e1080e 100644 --- a/src/main/java/net/id/paradiselost/items/ParadiseLostItems.java +++ b/src/main/java/net/id/paradiselost/items/ParadiseLostItems.java @@ -337,11 +337,6 @@ private static FabricItemSettings decoration() { public static final BlockItem BUSH = add("bush", ParadiseLostBlocks.BUSH, decoration, compostable30); public static final BlockItem SHAMROCK = add("shamrock", ParadiseLostBlocks.SHAMROCK, decoration, compostable50); public static final BlockItem MALT_SPRIG = add("malt_sprig", ParadiseLostBlocks.MALT_SPRIG, decoration, compostable30); - public static final BlockItem HALOPHIA = add("halophia", ParadiseLostBlocks.HALOPHIA, decoration, compostable30); - public static final BlockItem GIANT_LILY = add("giant_lily", new BlockItem(ParadiseLostBlocks.GIANT_LILY, hat), compostable100); - public static final BlockItem WEEPING_CLOUDBURST = add("weeping_cloudburst", ParadiseLostBlocks.WEEPING_CLOUDBURST, decoration, compostable30); - public static final BlockItem MOSS_STAR = add("moss_star", ParadiseLostBlocks.MOSS_STAR, decoration, compostable50); - public static final BlockItem MOSS_BALL = add("moss_ball", ParadiseLostBlocks.MOSS_BALL, decoration, compostable30); public static final BlockItem ANCIENT_FLOWER = add("ancient_flower", ParadiseLostBlocks.ANCIENT_FLOWER, decoration, compostable65); public static final BlockItem ATARAXIA = add("ataraxia", ParadiseLostBlocks.ATARAXIA, decoration, compostable65); @@ -366,12 +361,6 @@ private static FabricItemSettings decoration() { public static final BlockItem LIVERWORT = add("liverwort", ParadiseLostBlocks.LIVERWORT, decoration, compostable100); public static final BlockItem LIVERWORT_CARPET = add("liverwort_carpet", ParadiseLostBlocks.LIVERWORT_CARPET, decoration, compostable65); - // FUNGI BAYBEEE - public static final BlockItem LICHEN = add("lichen", ParadiseLostBlocks.LICHEN, decoration, compostable50); - public static final BlockItem LUCATIEL_LICHEN = add("lucatiel_lichen", ParadiseLostBlocks.LUCATIEL_LICHEN, decoration, compostable50); - public static final BlockItem LICHEN_PILE = add("lichen_pile", ParadiseLostBlocks.LICHEN_PILE, decoration, compostable30); - public static final BlockItem LUCATIEL_LICHEN_PILE = add("lucatiel_lichen_pile", ParadiseLostBlocks.LUCATIEL_LICHEN_PILE, decoration, compostable100); - public static final BlockItem ROOTCAP = add("rootcap", ParadiseLostBlocks.ROOTCAP, decoration(), compostable65); public static final BlockItem BROWN_SPORECAP = add("brown_sporecap", ParadiseLostBlocks.BROWN_SPORECAP, decoration(), compostable65); public static final BlockItem PINK_SPORECAP = add("pink_sporecap", ParadiseLostBlocks.PINK_SPORECAP, decoration(), compostable65); diff --git a/src/main/resources/assets/paradise_lost/blockstates/dungeonswitch.json b/src/main/resources/assets/paradise_lost/blockstates/dungeonswitch.json deleted file mode 100644 index 8f233a1c9..000000000 --- a/src/main/resources/assets/paradise_lost/blockstates/dungeonswitch.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "paradise_lost:block/dungeon_switch" - } - } -} diff --git a/src/main/resources/assets/paradise_lost/blockstates/freezer.json b/src/main/resources/assets/paradise_lost/blockstates/freezer.json deleted file mode 100644 index 2bc640598..000000000 --- a/src/main/resources/assets/paradise_lost/blockstates/freezer.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "paradise_lost:block/freezer" - } - } -} diff --git a/src/main/resources/assets/paradise_lost/blockstates/giant_lily.json b/src/main/resources/assets/paradise_lost/blockstates/giant_lily.json deleted file mode 100644 index 0dada433d..000000000 --- a/src/main/resources/assets/paradise_lost/blockstates/giant_lily.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "variants": { - "flowering=false": [ - { - "model": "paradise_lost:block/giant_lilypad" - }, - { - "model": "paradise_lost:block/giant_lilypad", - "y": 90 - }, - { - "model": "paradise_lost:block/giant_lilypad", - "y": 180 - }, - { - "model": "paradise_lost:block/giant_lilypad", - "y": 270 - } - ], - "flowering=true": [ - { - "model": "paradise_lost:block/giant_lotus" - }, - { - "model": "paradise_lost:block/giant_lotus", - "y": 90 - }, - { - "model": "paradise_lost:block/giant_lotus", - "y": 180 - }, - { - "model": "paradise_lost:block/giant_lotus", - "y": 270 - } - ] - } -} diff --git a/src/main/resources/assets/paradise_lost/blockstates/halophia.json b/src/main/resources/assets/paradise_lost/blockstates/halophia.json deleted file mode 100644 index a7e15e046..000000000 --- a/src/main/resources/assets/paradise_lost/blockstates/halophia.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "paradise_lost:block/halophia" - } - } -} diff --git a/src/main/resources/assets/paradise_lost/blockstates/lichen.json b/src/main/resources/assets/paradise_lost/blockstates/lichen.json deleted file mode 100644 index 7f92d04a2..000000000 --- a/src/main/resources/assets/paradise_lost/blockstates/lichen.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "variants": { - "": [ - { - "model": "paradise_lost:block/lichen" - } - ] - } -} diff --git a/src/main/resources/assets/paradise_lost/blockstates/lichen_pile.json b/src/main/resources/assets/paradise_lost/blockstates/lichen_pile.json deleted file mode 100644 index 1506d517f..000000000 --- a/src/main/resources/assets/paradise_lost/blockstates/lichen_pile.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "variants": { - "": [ - { - "model": "paradise_lost:block/lichen_pile" - } - ] - } -} diff --git a/src/main/resources/assets/paradise_lost/blockstates/lucatiel_lichen.json b/src/main/resources/assets/paradise_lost/blockstates/lucatiel_lichen.json deleted file mode 100644 index 20fb5ef1e..000000000 --- a/src/main/resources/assets/paradise_lost/blockstates/lucatiel_lichen.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "variants": { - "": [ - { - "model": "paradise_lost:block/lucatiel_lichen" - } - ] - } -} diff --git a/src/main/resources/assets/paradise_lost/blockstates/lucatiel_lichen_pile.json b/src/main/resources/assets/paradise_lost/blockstates/lucatiel_lichen_pile.json deleted file mode 100644 index 890917f17..000000000 --- a/src/main/resources/assets/paradise_lost/blockstates/lucatiel_lichen_pile.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "variants": { - "": [ - { - "model": "paradise_lost:block/lucatiel_lichen_pile" - } - ] - } -} diff --git a/src/main/resources/assets/paradise_lost/blockstates/moss_ball.json b/src/main/resources/assets/paradise_lost/blockstates/moss_ball.json deleted file mode 100644 index 966664520..000000000 --- a/src/main/resources/assets/paradise_lost/blockstates/moss_ball.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "variants": { - "": [ - { - "model": "paradise_lost:block/moss_ball_large" - }, - { - "model": "paradise_lost:block/moss_ball_medium" - }, - { - "model": "paradise_lost:block/moss_ball_medium", - "y": 90 - }, - { - "model": "paradise_lost:block/moss_ball_medium", - "y": 180 - }, - { - "model": "paradise_lost:block/moss_ball_medium", - "y": 270 - }, - { - "model": "paradise_lost:block/moss_ball_small" - }, - { - "model": "paradise_lost:block/moss_ball_small", - "y": 90 - }, - { - "model": "paradise_lost:block/moss_ball_small", - "y": 180 - }, - { - "model": "paradise_lost:block/moss_ball_small", - "y": 270 - } - ] - } -} diff --git a/src/main/resources/assets/paradise_lost/blockstates/moss_star.json b/src/main/resources/assets/paradise_lost/blockstates/moss_star.json deleted file mode 100644 index 2244f981a..000000000 --- a/src/main/resources/assets/paradise_lost/blockstates/moss_star.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "variants": { - "waterlogged=false": { - "model": "paradise_lost:block/dry_moss_star" - }, - "waterlogged=true": { - "model": "paradise_lost:block/moss_star" - } - } -} diff --git a/src/main/resources/assets/paradise_lost/blockstates/surtrum_air.json b/src/main/resources/assets/paradise_lost/blockstates/surtrum_air.json new file mode 100644 index 000000000..2c8f02f06 --- /dev/null +++ b/src/main/resources/assets/paradise_lost/blockstates/surtrum_air.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/air" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/paradise_lost/blockstates/weeping_cloudburst.json b/src/main/resources/assets/paradise_lost/blockstates/weeping_cloudburst.json deleted file mode 100644 index 2cc8e8115..000000000 --- a/src/main/resources/assets/paradise_lost/blockstates/weeping_cloudburst.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "section=bottom": { - "model": "paradise_lost:block/weeping_cloudburst_bottom" - }, - "section=body": { - "model": "paradise_lost:block/weeping_cloudburst_body" - }, - "section=top": { - "model": "paradise_lost:block/weeping_cloudburst_top" - } - } -} diff --git a/src/main/resources/assets/paradise_lost/models/block/dead_moss_star.json b/src/main/resources/assets/paradise_lost/models/block/dead_moss_star.json deleted file mode 100644 index 4254790d0..000000000 --- a/src/main/resources/assets/paradise_lost/models/block/dead_moss_star.json +++ /dev/null @@ -1,101 +0,0 @@ -{ - "parent": "block/block", - "textures": { - "particle": "paradise_lost:block/moss_star", - "all": "paradise_lost:block/moss_star" - }, - "elements": [ - { - "from": [ - 6, - 0, - 6 - ], - "to": [ - 10, - 6, - 10 - ], - "faces": { - "down": { - "uv": [ - 8, - 1, - 12, - 5 - ], - "texture": "#all", - "cullface": "down" - }, - "up": { - "uv": [ - 4, - 1, - 8, - 5 - ], - "texture": "#all" - }, - "north": { - "uv": [ - 4, - 5, - 8, - 11 - ], - "texture": "#all" - }, - "south": { - "uv": [ - 0, - 5, - 4, - 11 - ], - "texture": "#all" - }, - "west": { - "uv": [ - 8, - 5, - 12, - 11 - ], - "texture": "#all" - }, - "east": { - "uv": [ - 12, - 5, - 16, - 11 - ], - "texture": "#all" - } - } - }, - { - "from": [ - 6, - 5.95, - 6 - ], - "to": [ - 10, - 5.95, - 10 - ], - "faces": { - "up": { - "uv": [ - 8, - 1, - 12, - 5 - ], - "texture": "#all" - } - } - } - ] -} diff --git a/src/main/resources/assets/paradise_lost/models/block/dry_moss_star.json b/src/main/resources/assets/paradise_lost/models/block/dry_moss_star.json deleted file mode 100644 index 2ceb3dbd9..000000000 --- a/src/main/resources/assets/paradise_lost/models/block/dry_moss_star.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cross", - "textures": { - "cross": "paradise_lost:block/dry_moss_star" - } -} diff --git a/src/main/resources/assets/paradise_lost/models/block/four_dead_moss_stars.json b/src/main/resources/assets/paradise_lost/models/block/four_dead_moss_stars.json deleted file mode 100644 index 403efc022..000000000 --- a/src/main/resources/assets/paradise_lost/models/block/four_dead_moss_stars.json +++ /dev/null @@ -1,377 +0,0 @@ -{ - "parent": "block/block", - "textures": { - "particle": "paradise_lost:block/moss_star", - "all": "paradise_lost:block/moss_star" - }, - "elements": [ - { - "from": [ - 2, - 0, - 2 - ], - "to": [ - 6, - 6, - 6 - ], - "faces": { - "down": { - "uv": [ - 8, - 1, - 12, - 5 - ], - "texture": "#all", - "cullface": "down" - }, - "up": { - "uv": [ - 4, - 1, - 8, - 5 - ], - "texture": "#all" - }, - "north": { - "uv": [ - 4, - 5, - 8, - 11 - ], - "texture": "#all" - }, - "south": { - "uv": [ - 0, - 5, - 4, - 11 - ], - "texture": "#all" - }, - "west": { - "uv": [ - 8, - 5, - 12, - 11 - ], - "texture": "#all" - }, - "east": { - "uv": [ - 12, - 5, - 16, - 11 - ], - "texture": "#all" - } - } - }, - { - "from": [ - 2, - 5.95, - 2 - ], - "to": [ - 6, - 5.95, - 6 - ], - "faces": { - "up": { - "uv": [ - 8, - 1, - 12, - 5 - ], - "texture": "#all" - } - } - }, - { - "from": [ - 9, - 0, - 10 - ], - "to": [ - 13, - 4, - 14 - ], - "faces": { - "down": { - "uv": [ - 8, - 1, - 12, - 5 - ], - "texture": "#all", - "cullface": "down" - }, - "up": { - "uv": [ - 4, - 1, - 8, - 5 - ], - "texture": "#all" - }, - "north": { - "uv": [ - 4, - 5, - 8, - 9 - ], - "texture": "#all" - }, - "south": { - "uv": [ - 0, - 5, - 4, - 9 - ], - "texture": "#all" - }, - "west": { - "uv": [ - 8, - 5, - 12, - 9 - ], - "texture": "#all" - }, - "east": { - "uv": [ - 12, - 5, - 16, - 9 - ], - "texture": "#all" - } - } - }, - { - "from": [ - 9, - 3.95, - 10 - ], - "to": [ - 13, - 3.95, - 14 - ], - "faces": { - "up": { - "uv": [ - 8, - 1, - 12, - 5 - ], - "texture": "#all" - } - } - }, - { - "from": [ - 9, - 0, - 2 - ], - "to": [ - 13, - 6, - 6 - ], - "faces": { - "down": { - "uv": [ - 8, - 1, - 12, - 5 - ], - "texture": "#all", - "cullface": "down" - }, - "up": { - "uv": [ - 4, - 1, - 8, - 5 - ], - "texture": "#all" - }, - "north": { - "uv": [ - 4, - 5, - 8, - 11 - ], - "texture": "#all" - }, - "south": { - "uv": [ - 0, - 5, - 4, - 11 - ], - "texture": "#all" - }, - "west": { - "uv": [ - 8, - 5, - 12, - 11 - ], - "texture": "#all" - }, - "east": { - "uv": [ - 12, - 5, - 16, - 11 - ], - "texture": "#all" - } - } - }, - { - "from": [ - 9, - 5.95, - 2 - ], - "to": [ - 13, - 5.95, - 6 - ], - "faces": { - "up": { - "uv": [ - 8, - 1, - 12, - 5 - ], - "texture": "#all" - } - } - }, - { - "from": [ - 2, - 0, - 8 - ], - "to": [ - 6, - 7, - 12 - ], - "faces": { - "down": { - "uv": [ - 8, - 1, - 12, - 5 - ], - "texture": "#all", - "cullface": "down" - }, - "up": { - "uv": [ - 4, - 1, - 8, - 5 - ], - "texture": "#all" - }, - "north": { - "uv": [ - 4, - 5, - 8, - 12 - ], - "texture": "#all" - }, - "south": { - "uv": [ - 0, - 5, - 4, - 12 - ], - "texture": "#all" - }, - "west": { - "uv": [ - 8, - 5, - 12, - 12 - ], - "texture": "#all" - }, - "east": { - "uv": [ - 12, - 5, - 16, - 12 - ], - "texture": "#all" - } - } - }, - { - "from": [ - 2, - 6.95, - 8 - ], - "to": [ - 6, - 6.95, - 12 - ], - "faces": { - "up": { - "uv": [ - 8, - 1, - 12, - 5 - ], - "texture": "#all" - } - } - } - ] -} diff --git a/src/main/resources/assets/paradise_lost/models/block/four_moss_stars.json b/src/main/resources/assets/paradise_lost/models/block/four_moss_stars.json deleted file mode 100644 index 1f7411d5f..000000000 --- a/src/main/resources/assets/paradise_lost/models/block/four_moss_stars.json +++ /dev/null @@ -1,721 +0,0 @@ -{ - "parent": "block/block", - "textures": { - "particle": "paradise_lost:block/moss_star", - "all": "paradise_lost:block/moss_star" - }, - "elements": [ - { - "from": [ - 2, - 0, - 2 - ], - "to": [ - 6, - 6, - 6 - ], - "faces": { - "down": { - "uv": [ - 8, - 1, - 12, - 5 - ], - "texture": "#all", - "cullface": "down" - }, - "up": { - "uv": [ - 4, - 1, - 8, - 5 - ], - "texture": "#all" - }, - "north": { - "uv": [ - 4, - 5, - 8, - 11 - ], - "texture": "#all" - }, - "south": { - "uv": [ - 0, - 5, - 4, - 11 - ], - "texture": "#all" - }, - "west": { - "uv": [ - 8, - 5, - 12, - 11 - ], - "texture": "#all" - }, - "east": { - "uv": [ - 12, - 5, - 16, - 11 - ], - "texture": "#all" - } - } - }, - { - "from": [ - 2, - 5.95, - 2 - ], - "to": [ - 6, - 5.95, - 6 - ], - "faces": { - "up": { - "uv": [ - 8, - 1, - 12, - 5 - ], - "texture": "#all" - } - } - }, - { - "from": [ - 9, - 0, - 10 - ], - "to": [ - 13, - 4, - 14 - ], - "faces": { - "down": { - "uv": [ - 8, - 1, - 12, - 5 - ], - "texture": "#all", - "cullface": "down" - }, - "up": { - "uv": [ - 4, - 1, - 8, - 5 - ], - "texture": "#all" - }, - "north": { - "uv": [ - 4, - 5, - 8, - 9 - ], - "texture": "#all" - }, - "south": { - "uv": [ - 0, - 5, - 4, - 9 - ], - "texture": "#all" - }, - "west": { - "uv": [ - 8, - 5, - 12, - 9 - ], - "texture": "#all" - }, - "east": { - "uv": [ - 12, - 5, - 16, - 9 - ], - "texture": "#all" - } - } - }, - { - "from": [ - 9, - 3.95, - 10 - ], - "to": [ - 13, - 3.95, - 14 - ], - "faces": { - "up": { - "uv": [ - 8, - 1, - 12, - 5 - ], - "texture": "#all" - } - } - }, - { - "from": [ - 9, - 0, - 2 - ], - "to": [ - 13, - 6, - 6 - ], - "faces": { - "down": { - "uv": [ - 8, - 1, - 12, - 5 - ], - "texture": "#all", - "cullface": "down" - }, - "up": { - "uv": [ - 4, - 1, - 8, - 5 - ], - "texture": "#all" - }, - "north": { - "uv": [ - 4, - 5, - 8, - 11 - ], - "texture": "#all" - }, - "south": { - "uv": [ - 0, - 5, - 4, - 11 - ], - "texture": "#all" - }, - "west": { - "uv": [ - 8, - 5, - 12, - 11 - ], - "texture": "#all" - }, - "east": { - "uv": [ - 12, - 5, - 16, - 11 - ], - "texture": "#all" - } - } - }, - { - "from": [ - 9, - 5.95, - 2 - ], - "to": [ - 13, - 5.95, - 6 - ], - "faces": { - "up": { - "uv": [ - 8, - 1, - 12, - 5 - ], - "texture": "#all" - } - } - }, - { - "from": [ - 2, - 0, - 8 - ], - "to": [ - 6, - 7, - 12 - ], - "faces": { - "down": { - "uv": [ - 8, - 1, - 12, - 5 - ], - "texture": "#all", - "cullface": "down" - }, - "up": { - "uv": [ - 4, - 1, - 8, - 5 - ], - "texture": "#all" - }, - "north": { - "uv": [ - 4, - 5, - 8, - 12 - ], - "texture": "#all" - }, - "south": { - "uv": [ - 0, - 5, - 4, - 12 - ], - "texture": "#all" - }, - "west": { - "uv": [ - 8, - 5, - 12, - 12 - ], - "texture": "#all" - }, - "east": { - "uv": [ - 12, - 5, - 16, - 12 - ], - "texture": "#all" - } - } - }, - { - "from": [ - 2, - 6.95, - 8 - ], - "to": [ - 6, - 6.95, - 12 - ], - "faces": { - "up": { - "uv": [ - 8, - 1, - 12, - 5 - ], - "texture": "#all" - } - } - }, - { - "from": [ - 3.5, - 5.2, - 4 - ], - "to": [ - 4.5, - 8.7, - 4 - ], - "rotation": { - "origin": [ - 4, - 8, - 4 - ], - "axis": "y", - "angle": 45, - "rescale": true - }, - "shade": false, - "faces": { - "north": { - "uv": [ - 1, - 0, - 3, - 5 - ], - "texture": "#all" - }, - "south": { - "uv": [ - 3, - 0, - 1, - 5 - ], - "texture": "#all" - } - } - }, - { - "from": [ - 4, - 5.2, - 3.5 - ], - "to": [ - 4, - 8.7, - 4.5 - ], - "rotation": { - "origin": [ - 4, - 8, - 4 - ], - "axis": "y", - "angle": 45, - "rescale": true - }, - "shade": false, - "faces": { - "west": { - "uv": [ - 13, - 0, - 15, - 5 - ], - "texture": "#all" - }, - "east": { - "uv": [ - 15, - 0, - 13, - 5 - ], - "texture": "#all" - } - } - }, - { - "from": [ - 10.5, - 3.2, - 12 - ], - "to": [ - 11.5, - 6.7, - 12 - ], - "rotation": { - "origin": [ - 11, - 8, - 12 - ], - "axis": "y", - "angle": 45, - "rescale": true - }, - "shade": false, - "faces": { - "north": { - "uv": [ - 1, - 0, - 3, - 5 - ], - "texture": "#all" - }, - "south": { - "uv": [ - 3, - 0, - 1, - 5 - ], - "texture": "#all" - } - } - }, - { - "from": [ - 11, - 3.2, - 11.5 - ], - "to": [ - 11, - 6.7, - 12.5 - ], - "rotation": { - "origin": [ - 11, - 8, - 12 - ], - "axis": "y", - "angle": 45, - "rescale": true - }, - "shade": false, - "faces": { - "west": { - "uv": [ - 13, - 0, - 15, - 5 - ], - "texture": "#all" - }, - "east": { - "uv": [ - 15, - 0, - 13, - 5 - ], - "texture": "#all" - } - } - }, - { - "from": [ - 10.5, - 5.2, - 4 - ], - "to": [ - 11.5, - 8.7, - 4 - ], - "rotation": { - "origin": [ - 11, - 8, - 4 - ], - "axis": "y", - "angle": 45, - "rescale": true - }, - "shade": false, - "faces": { - "north": { - "uv": [ - 1, - 0, - 3, - 5 - ], - "texture": "#all" - }, - "south": { - "uv": [ - 3, - 0, - 1, - 5 - ], - "texture": "#all" - } - } - }, - { - "from": [ - 11, - 5.2, - 3.5 - ], - "to": [ - 11, - 8.7, - 4.5 - ], - "rotation": { - "origin": [ - 11, - 8, - 4 - ], - "axis": "y", - "angle": 45, - "rescale": true - }, - "shade": false, - "faces": { - "west": { - "uv": [ - 13, - 0, - 15, - 5 - ], - "texture": "#all" - }, - "east": { - "uv": [ - 15, - 0, - 13, - 5 - ], - "texture": "#all" - } - } - }, - { - "from": [ - 3.5, - 6.2, - 10 - ], - "to": [ - 4.5, - 9.7, - 10 - ], - "rotation": { - "origin": [ - 4, - 8, - 10 - ], - "axis": "y", - "angle": 45, - "rescale": true - }, - "shade": false, - "faces": { - "north": { - "uv": [ - 1, - 0, - 3, - 5 - ], - "texture": "#all" - }, - "south": { - "uv": [ - 3, - 0, - 1, - 5 - ], - "texture": "#all" - } - } - }, - { - "from": [ - 4, - 6.2, - 9.5 - ], - "to": [ - 4, - 9.7, - 10.5 - ], - "rotation": { - "origin": [ - 4, - 8, - 10 - ], - "axis": "y", - "angle": 45, - "rescale": true - }, - "shade": false, - "faces": { - "west": { - "uv": [ - 13, - 0, - 15, - 5 - ], - "texture": "#all" - }, - "east": { - "uv": [ - 15, - 0, - 13, - 5 - ], - "texture": "#all" - } - } - } - ] -} diff --git a/src/main/resources/assets/paradise_lost/models/block/giant_lilypad.json b/src/main/resources/assets/paradise_lost/models/block/giant_lilypad.json deleted file mode 100755 index dc7c9ad69..000000000 --- a/src/main/resources/assets/paradise_lost/models/block/giant_lilypad.json +++ /dev/null @@ -1,145 +0,0 @@ -{ - "credit": "Made by Azazelthedemonlord", - "textures": { - "0": "paradise_lost:block/giant_lilypad", - "particle": "paradise_lost:block/giant_lilypad" - }, - "elements": [ - { - "from": [ - -8, - 0.5, - -8 - ], - "to": [ - 24, - 0.5, - 24 - ], - "faces": { - "up": { - "uv": [ - 0, - 0, - 16, - 16 - ], - "texture": "#0" - }, - "down": { - "uv": [ - 0, - 0, - 16, - 16 - ], - "rotation": 270, - "texture": "#0" - } - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [ - 75, - 45, - 0 - ], - "translation": [ - 0, - 2.5, - 0 - ], - "scale": [ - 0.375, - 0.375, - 0.375 - ] - }, - "thirdperson_lefthand": { - "rotation": [ - 75, - 45, - 0 - ], - "translation": [ - 0, - 2.5, - 0 - ], - "scale": [ - 0.375, - 0.375, - 0.375 - ] - }, - "firstperson_righthand": { - "rotation": [ - 0, - 45, - 0 - ], - "scale": [ - 0.4, - 0.4, - 0.4 - ] - }, - "firstperson_lefthand": { - "rotation": [ - 0, - 225, - 0 - ], - "scale": [ - 0.4, - 0.4, - 0.4 - ] - }, - "ground": { - "translation": [ - 0, - 3, - 0 - ], - "scale": [ - 0.25, - 0.25, - 0.25 - ] - }, - "gui": { - "rotation": [ - 30, - 225, - 0 - ], - "scale": [ - 0.625, - 0.625, - 0.625 - ] - }, - "head": { - "rotation": [ - 0, - 180, - 0 - ], - "translation": [ - 0, - 13, - 7 - ] - }, - "fixed": { - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } -} diff --git a/src/main/resources/assets/paradise_lost/models/block/giant_lotus.json b/src/main/resources/assets/paradise_lost/models/block/giant_lotus.json deleted file mode 100755 index be8e06734..000000000 --- a/src/main/resources/assets/paradise_lost/models/block/giant_lotus.json +++ /dev/null @@ -1,518 +0,0 @@ -{ - "credit": "Made by Azazelthedemonlord", - "textures": { - "0": "paradise_lost:block/giant_lilypad", - "1": "paradise_lost:block/giant_lotus", - "2": "paradise_lost:block/giant_lotus_pistil", - "particle": "paradise_lost:block/giant_lilypad" - }, - "elements": [ - { - "name": "lilypad", - "from": [ - -8, - 0.5, - -8 - ], - "to": [ - 24, - 0.5, - 24 - ], - "faces": { - "up": { - "uv": [ - 0, - 0, - 16, - 16 - ], - "texture": "#0" - }, - "down": { - "uv": [ - 0, - 0, - 16, - 16 - ], - "rotation": 270, - "texture": "#0" - } - } - }, - { - "name": "flower", - "from": [ - 7, - 1.5, - 1 - ], - "to": [ - 7, - 17.5, - 17 - ], - "rotation": { - "angle": 45, - "axis": "z", - "origin": [ - 8, - 0.5, - 9 - ] - }, - "faces": { - "east": { - "uv": [ - 0, - 0, - 16, - 16 - ], - "texture": "#1" - }, - "west": { - "uv": [ - 0, - 0, - 16, - 16 - ], - "texture": "#1" - } - } - }, - { - "name": "flower", - "from": [ - 0, - 1.5, - 8 - ], - "to": [ - 16, - 17.5, - 8 - ], - "rotation": { - "angle": -45, - "axis": "x", - "origin": [ - 8, - 0.5, - 9 - ] - }, - "faces": { - "north": { - "uv": [ - 0, - 0, - 16, - 16 - ], - "texture": "#1" - }, - "south": { - "uv": [ - 0, - 0, - 16, - 16 - ], - "texture": "#1" - } - } - }, - { - "name": "flower", - "from": [ - 9, - 1.5, - 1 - ], - "to": [ - 9, - 17.5, - 17 - ], - "rotation": { - "angle": -45, - "axis": "z", - "origin": [ - 8, - 0.5, - 9 - ] - }, - "faces": { - "east": { - "uv": [ - 0, - 0, - 16, - 16 - ], - "texture": "#1" - }, - "west": { - "uv": [ - 0, - 0, - 16, - 16 - ], - "texture": "#1" - } - } - }, - { - "name": "flower", - "from": [ - 0, - 1.5, - 10 - ], - "to": [ - 16, - 17.5, - 10 - ], - "rotation": { - "angle": 45, - "axis": "x", - "origin": [ - 8, - 0.5, - 9 - ] - }, - "faces": { - "north": { - "uv": [ - 0, - 0, - 16, - 16 - ], - "texture": "#1" - }, - "south": { - "uv": [ - 0, - 0, - 16, - 16 - ], - "texture": "#1" - } - } - }, - { - "name": "flower_outer", - "from": [ - -10, - 0.5, - 1 - ], - "to": [ - 6, - 0.5, - 17 - ], - "rotation": { - "angle": -22.5, - "axis": "z", - "origin": [ - 8, - 0.5, - 9 - ] - }, - "faces": { - "up": { - "uv": [ - 0, - 0, - 16, - 16 - ], - "rotation": 270, - "texture": "#1" - }, - "down": { - "uv": [ - 0, - 0, - 16, - 16 - ], - "rotation": 270, - "texture": "#1" - } - } - }, - { - "name": "flower_outer", - "from": [ - 0, - 0.5, - -9 - ], - "to": [ - 16, - 0.5, - 7 - ], - "rotation": { - "angle": 22.5, - "axis": "x", - "origin": [ - 8, - 0.5, - 9 - ] - }, - "faces": { - "up": { - "uv": [ - 0, - 0, - 16, - 16 - ], - "texture": "#1" - }, - "down": { - "uv": [ - 0, - 0, - 16, - 16 - ], - "rotation": 180, - "texture": "#1" - } - } - }, - { - "name": "flower_outer", - "from": [ - 10, - 0.5, - 1 - ], - "to": [ - 26, - 0.5, - 17 - ], - "rotation": { - "angle": 22.5, - "axis": "z", - "origin": [ - 8, - 0.5, - 9 - ] - }, - "faces": { - "up": { - "uv": [ - 0, - 0, - 16, - 16 - ], - "rotation": 90, - "texture": "#1" - }, - "down": { - "uv": [ - 0, - 0, - 16, - 16 - ], - "rotation": 90, - "texture": "#1" - } - } - }, - { - "name": "flower_outer", - "from": [ - 0, - 0.5, - 11 - ], - "to": [ - 16, - 0.5, - 27 - ], - "rotation": { - "angle": -22.5, - "axis": "x", - "origin": [ - 8, - 0.5, - 9 - ] - }, - "faces": { - "up": { - "uv": [ - 0, - 0, - 16, - 16 - ], - "rotation": 180, - "texture": "#1" - }, - "down": { - "uv": [ - 0, - 0, - 16, - 16 - ], - "texture": "#1" - } - } - }, - { - "name": "pistill", - "from": [ - 5, - 1, - 6 - ], - "to": [ - 11, - 1, - 12 - ], - "faces": { - "up": { - "uv": [ - 0, - 0, - 6, - 6 - ], - "texture": "#2" - }, - "down": { - "uv": [ - 0, - 0, - 6, - 6 - ], - "texture": "#2" - } - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [ - 75, - 45, - 0 - ], - "translation": [ - 0, - 2.5, - 0 - ], - "scale": [ - 0.375, - 0.375, - 0.375 - ] - }, - "thirdperson_lefthand": { - "rotation": [ - 75, - 45, - 0 - ], - "translation": [ - 0, - 2.5, - 0 - ], - "scale": [ - 0.375, - 0.375, - 0.375 - ] - }, - "firstperson_righthand": { - "rotation": [ - 0, - 45, - 0 - ], - "scale": [ - 0.4, - 0.4, - 0.4 - ] - }, - "firstperson_lefthand": { - "rotation": [ - 0, - 225, - 0 - ], - "scale": [ - 0.4, - 0.4, - 0.4 - ] - }, - "ground": { - "translation": [ - 0, - 3, - 0 - ], - "scale": [ - 0.25, - 0.25, - 0.25 - ] - }, - "gui": { - "rotation": [ - 30, - 225, - 0 - ], - "scale": [ - 0.625, - 0.625, - 0.625 - ] - }, - "head": { - "translation": [ - 0, - 14, - 0 - ] - }, - "fixed": { - "scale": [ - 0.5, - 0.5, - 0.5 - ] - } - } -} diff --git a/src/main/resources/assets/paradise_lost/models/block/halophia.json b/src/main/resources/assets/paradise_lost/models/block/halophia.json deleted file mode 100644 index 4b8c289c2..000000000 --- a/src/main/resources/assets/paradise_lost/models/block/halophia.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_seagrass", - "textures": { - "texture": "paradise_lost:block/halophia" - } -} diff --git a/src/main/resources/assets/paradise_lost/models/block/lichen.json b/src/main/resources/assets/paradise_lost/models/block/lichen.json deleted file mode 100644 index 58703ccb0..000000000 --- a/src/main/resources/assets/paradise_lost/models/block/lichen.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "paradise_lost:block/lichen" - } -} diff --git a/src/main/resources/assets/paradise_lost/models/block/lichen_pile.json b/src/main/resources/assets/paradise_lost/models/block/lichen_pile.json deleted file mode 100644 index eb6b63f07..000000000 --- a/src/main/resources/assets/paradise_lost/models/block/lichen_pile.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "parent": "block/thin_block", - "textures": { - "particle": "paradise_lost:block/lichen", - "texture": "paradise_lost:block/lichen" - }, - "elements": [ - { - "from": [ - 0, - 0, - 0 - ], - "to": [ - 16, - 2, - 16 - ], - "faces": { - "down": { - "uv": [ - 0, - 0, - 16, - 16 - ], - "texture": "#texture", - "cullface": "down" - }, - "up": { - "uv": [ - 0, - 0, - 16, - 16 - ], - "texture": "#texture" - }, - "north": { - "uv": [ - 0, - 14, - 16, - 16 - ], - "texture": "#texture", - "cullface": "north" - }, - "south": { - "uv": [ - 0, - 14, - 16, - 16 - ], - "texture": "#texture", - "cullface": "south" - }, - "west": { - "uv": [ - 0, - 14, - 16, - 16 - ], - "texture": "#texture", - "cullface": "west" - }, - "east": { - "uv": [ - 0, - 14, - 16, - 16 - ], - "texture": "#texture", - "cullface": "east" - } - } - } - ] -} diff --git a/src/main/resources/assets/paradise_lost/models/block/lucatiel_lichen.json b/src/main/resources/assets/paradise_lost/models/block/lucatiel_lichen.json deleted file mode 100644 index aad57689c..000000000 --- a/src/main/resources/assets/paradise_lost/models/block/lucatiel_lichen.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cube_all", - "textures": { - "all": "paradise_lost:block/lucatiel_lichen" - } -} diff --git a/src/main/resources/assets/paradise_lost/models/block/lucatiel_lichen_pile.json b/src/main/resources/assets/paradise_lost/models/block/lucatiel_lichen_pile.json deleted file mode 100644 index 55f1a88d2..000000000 --- a/src/main/resources/assets/paradise_lost/models/block/lucatiel_lichen_pile.json +++ /dev/null @@ -1,82 +0,0 @@ -{ - "parent": "block/thin_block", - "textures": { - "particle": "paradise_lost:block/lucatiel_lichen", - "texture": "paradise_lost:block/lucatiel_lichen" - }, - "elements": [ - { - "from": [ - 0, - 0, - 0 - ], - "to": [ - 16, - 2, - 16 - ], - "faces": { - "down": { - "uv": [ - 0, - 0, - 16, - 16 - ], - "texture": "#texture", - "cullface": "down" - }, - "up": { - "uv": [ - 0, - 0, - 16, - 16 - ], - "texture": "#texture" - }, - "north": { - "uv": [ - 0, - 14, - 16, - 16 - ], - "texture": "#texture", - "cullface": "north" - }, - "south": { - "uv": [ - 0, - 14, - 16, - 16 - ], - "texture": "#texture", - "cullface": "south" - }, - "west": { - "uv": [ - 0, - 14, - 16, - 16 - ], - "texture": "#texture", - "cullface": "west" - }, - "east": { - "uv": [ - 0, - 14, - 16, - 16 - ], - "texture": "#texture", - "cullface": "east" - } - } - } - ] -} diff --git a/src/main/resources/assets/paradise_lost/models/block/moss_ball_large.json b/src/main/resources/assets/paradise_lost/models/block/moss_ball_large.json deleted file mode 100755 index fa484ef60..000000000 --- a/src/main/resources/assets/paradise_lost/models/block/moss_ball_large.json +++ /dev/null @@ -1,81 +0,0 @@ -{ - "credit": "Made by Azazelthedemonlord", - "texture_size": [ - 32, - 32 - ], - "textures": { - "0": "paradise_lost:block/moss_ball_large", - "particle": "paradise_lost:block/moss_ball_large" - }, - "elements": [ - { - "from": [ - 2, - 0, - 2 - ], - "to": [ - 14, - 12, - 14 - ], - "faces": { - "north": { - "uv": [ - 1, - 1, - 7, - 7 - ], - "texture": "#0" - }, - "east": { - "uv": [ - 1, - 1, - 7, - 7 - ], - "texture": "#0" - }, - "south": { - "uv": [ - 1, - 1, - 7, - 7 - ], - "texture": "#0" - }, - "west": { - "uv": [ - 1, - 1, - 7, - 7 - ], - "texture": "#0" - }, - "up": { - "uv": [ - 9, - 1, - 15, - 7 - ], - "texture": "#0" - }, - "down": { - "uv": [ - 1, - 9, - 7, - 15 - ], - "texture": "#0" - } - } - } - ] -} diff --git a/src/main/resources/assets/paradise_lost/models/block/moss_ball_medium.json b/src/main/resources/assets/paradise_lost/models/block/moss_ball_medium.json deleted file mode 100755 index 26536b2c3..000000000 --- a/src/main/resources/assets/paradise_lost/models/block/moss_ball_medium.json +++ /dev/null @@ -1,149 +0,0 @@ -{ - "credit": "Made by Azazelthedemonlord", - "texture_size": [ - 32, - 32 - ], - "textures": { - "0": "paradise_lost:block/moss_ball_small", - "particle": "paradise_lost:block/moss_ball_small" - }, - "elements": [ - { - "from": [ - 2, - 0, - 2 - ], - "to": [ - 11, - 9, - 11 - ], - "faces": { - "north": { - "uv": [ - 0.5, - 0.5, - 5, - 5 - ], - "texture": "#0" - }, - "east": { - "uv": [ - 0.5, - 0.5, - 5, - 5 - ], - "texture": "#0" - }, - "south": { - "uv": [ - 0.5, - 0.5, - 5, - 5 - ], - "texture": "#0" - }, - "west": { - "uv": [ - 0.5, - 0.5, - 5, - 5 - ], - "texture": "#0" - }, - "up": { - "uv": [ - 5.5, - 0.5, - 10, - 5 - ], - "texture": "#0" - }, - "down": { - "uv": [ - 0.5, - 5.5, - 5, - 10 - ], - "texture": "#0" - } - } - }, - { - "from": [ - 6, - -1, - 6 - ], - "to": [ - 14, - 5, - 14 - ], - "faces": { - "north": { - "uv": [ - 11, - 2, - 15, - 5 - ], - "texture": "#0" - }, - "east": { - "uv": [ - 11, - 2, - 15, - 5 - ], - "texture": "#0" - }, - "south": { - "uv": [ - 11, - 2, - 15, - 5 - ], - "texture": "#0" - }, - "west": { - "uv": [ - 11, - 2, - 15, - 5 - ], - "texture": "#0" - }, - "up": { - "uv": [ - 11, - 6, - 15, - 10 - ], - "texture": "#0" - }, - "down": { - "uv": [ - 6, - 6, - 10, - 10 - ], - "texture": "#0" - } - } - } - ] -} diff --git a/src/main/resources/assets/paradise_lost/models/block/moss_ball_small.json b/src/main/resources/assets/paradise_lost/models/block/moss_ball_small.json deleted file mode 100755 index 3065f6761..000000000 --- a/src/main/resources/assets/paradise_lost/models/block/moss_ball_small.json +++ /dev/null @@ -1,81 +0,0 @@ -{ - "credit": "Made by Azazelthedemonlord", - "texture_size": [ - 32, - 32 - ], - "textures": { - "0": "paradise_lost:block/moss_ball_small", - "particle": "paradise_lost:block/moss_ball_small" - }, - "elements": [ - { - "from": [ - 3.5, - 0, - 3.5 - ], - "to": [ - 12.5, - 9, - 12.5 - ], - "faces": { - "north": { - "uv": [ - 0.5, - 0.5, - 5, - 5 - ], - "texture": "#0" - }, - "east": { - "uv": [ - 0.5, - 0.5, - 5, - 5 - ], - "texture": "#0" - }, - "south": { - "uv": [ - 0.5, - 0.5, - 5, - 5 - ], - "texture": "#0" - }, - "west": { - "uv": [ - 0.5, - 0.5, - 5, - 5 - ], - "texture": "#0" - }, - "up": { - "uv": [ - 5.5, - 0.5, - 10, - 5 - ], - "texture": "#0" - }, - "down": { - "uv": [ - 0.5, - 5.5, - 5, - 10 - ], - "texture": "#0" - } - } - } - ] -} diff --git a/src/main/resources/assets/paradise_lost/models/block/moss_star.json b/src/main/resources/assets/paradise_lost/models/block/moss_star.json deleted file mode 100644 index b2d248726..000000000 --- a/src/main/resources/assets/paradise_lost/models/block/moss_star.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cross", - "textures": { - "cross": "paradise_lost:block/moss_star" - } -} diff --git a/src/main/resources/assets/paradise_lost/models/block/three_dead_moss_stars.json b/src/main/resources/assets/paradise_lost/models/block/three_dead_moss_stars.json deleted file mode 100644 index d66c4a792..000000000 --- a/src/main/resources/assets/paradise_lost/models/block/three_dead_moss_stars.json +++ /dev/null @@ -1,285 +0,0 @@ -{ - "parent": "block/block", - "textures": { - "particle": "paradise_lost:block/moss_star", - "all": "paradise_lost:block/moss_star" - }, - "elements": [ - { - "from": [ - 6, - 0, - 9 - ], - "to": [ - 10, - 6, - 13 - ], - "faces": { - "down": { - "uv": [ - 8, - 1, - 12, - 5 - ], - "texture": "#all", - "cullface": "down" - }, - "up": { - "uv": [ - 4, - 1, - 8, - 5 - ], - "texture": "#all" - }, - "north": { - "uv": [ - 4, - 5, - 8, - 11 - ], - "texture": "#all" - }, - "south": { - "uv": [ - 0, - 5, - 4, - 11 - ], - "texture": "#all" - }, - "west": { - "uv": [ - 8, - 5, - 12, - 11 - ], - "texture": "#all" - }, - "east": { - "uv": [ - 12, - 5, - 16, - 11 - ], - "texture": "#all" - } - } - }, - { - "from": [ - 6, - 5.95, - 9 - ], - "to": [ - 10, - 5.95, - 13 - ], - "faces": { - "up": { - "uv": [ - 8, - 1, - 12, - 5 - ], - "texture": "#all" - } - } - }, - { - "from": [ - 2, - 0, - 2 - ], - "to": [ - 6, - 4, - 6 - ], - "faces": { - "down": { - "uv": [ - 8, - 1, - 12, - 5 - ], - "texture": "#all", - "cullface": "down" - }, - "up": { - "uv": [ - 4, - 1, - 8, - 5 - ], - "texture": "#all" - }, - "north": { - "uv": [ - 4, - 5, - 8, - 9 - ], - "texture": "#all" - }, - "south": { - "uv": [ - 0, - 5, - 4, - 9 - ], - "texture": "#all" - }, - "west": { - "uv": [ - 8, - 5, - 12, - 9 - ], - "texture": "#all" - }, - "east": { - "uv": [ - 12, - 5, - 16, - 9 - ], - "texture": "#all" - } - } - }, - { - "from": [ - 2, - 3.95, - 2 - ], - "to": [ - 6, - 3.95, - 6 - ], - "faces": { - "up": { - "uv": [ - 8, - 1, - 12, - 5 - ], - "texture": "#all" - } - } - }, - { - "from": [ - 8, - 0, - 4 - ], - "to": [ - 12, - 6, - 8 - ], - "faces": { - "down": { - "uv": [ - 8, - 1, - 12, - 5 - ], - "texture": "#all", - "cullface": "down" - }, - "up": { - "uv": [ - 4, - 1, - 8, - 5 - ], - "texture": "#all" - }, - "north": { - "uv": [ - 4, - 5, - 8, - 11 - ], - "texture": "#all" - }, - "south": { - "uv": [ - 0, - 5, - 4, - 11 - ], - "texture": "#all" - }, - "west": { - "uv": [ - 8, - 5, - 12, - 11 - ], - "texture": "#all" - }, - "east": { - "uv": [ - 12, - 5, - 16, - 11 - ], - "texture": "#all" - } - } - }, - { - "from": [ - 8, - 5.95, - 4 - ], - "to": [ - 12, - 5.95, - 8 - ], - "faces": { - "up": { - "uv": [ - 8, - 1, - 12, - 5 - ], - "texture": "#all" - } - } - } - ] -} diff --git a/src/main/resources/assets/paradise_lost/models/block/three_moss_stars.json b/src/main/resources/assets/paradise_lost/models/block/three_moss_stars.json deleted file mode 100644 index 82c4a86ef..000000000 --- a/src/main/resources/assets/paradise_lost/models/block/three_moss_stars.json +++ /dev/null @@ -1,543 +0,0 @@ -{ - "parent": "block/block", - "textures": { - "particle": "paradise_lost:block/moss_star", - "all": "paradise_lost:block/moss_star" - }, - "elements": [ - { - "from": [ - 6, - 0, - 9 - ], - "to": [ - 10, - 6, - 13 - ], - "faces": { - "down": { - "uv": [ - 8, - 1, - 12, - 5 - ], - "texture": "#all", - "cullface": "down" - }, - "up": { - "uv": [ - 4, - 1, - 8, - 5 - ], - "texture": "#all" - }, - "north": { - "uv": [ - 4, - 5, - 8, - 11 - ], - "texture": "#all" - }, - "south": { - "uv": [ - 0, - 5, - 4, - 11 - ], - "texture": "#all" - }, - "west": { - "uv": [ - 8, - 5, - 12, - 11 - ], - "texture": "#all" - }, - "east": { - "uv": [ - 12, - 5, - 16, - 11 - ], - "texture": "#all" - } - } - }, - { - "from": [ - 6, - 5.95, - 9 - ], - "to": [ - 10, - 5.95, - 13 - ], - "faces": { - "up": { - "uv": [ - 8, - 1, - 12, - 5 - ], - "texture": "#all" - } - } - }, - { - "from": [ - 2, - 0, - 2 - ], - "to": [ - 6, - 4, - 6 - ], - "faces": { - "down": { - "uv": [ - 8, - 1, - 12, - 5 - ], - "texture": "#all", - "cullface": "down" - }, - "up": { - "uv": [ - 4, - 1, - 8, - 5 - ], - "texture": "#all" - }, - "north": { - "uv": [ - 4, - 5, - 8, - 9 - ], - "texture": "#all" - }, - "south": { - "uv": [ - 0, - 5, - 4, - 9 - ], - "texture": "#all" - }, - "west": { - "uv": [ - 8, - 5, - 12, - 9 - ], - "texture": "#all" - }, - "east": { - "uv": [ - 12, - 5, - 16, - 9 - ], - "texture": "#all" - } - } - }, - { - "from": [ - 2, - 3.95, - 2 - ], - "to": [ - 6, - 3.95, - 6 - ], - "faces": { - "up": { - "uv": [ - 8, - 1, - 12, - 5 - ], - "texture": "#all" - } - } - }, - { - "from": [ - 8, - 0, - 4 - ], - "to": [ - 12, - 6, - 8 - ], - "faces": { - "down": { - "uv": [ - 8, - 1, - 12, - 5 - ], - "texture": "#all", - "cullface": "down" - }, - "up": { - "uv": [ - 4, - 1, - 8, - 5 - ], - "texture": "#all" - }, - "north": { - "uv": [ - 4, - 5, - 8, - 11 - ], - "texture": "#all" - }, - "south": { - "uv": [ - 0, - 5, - 4, - 11 - ], - "texture": "#all" - }, - "west": { - "uv": [ - 8, - 5, - 12, - 11 - ], - "texture": "#all" - }, - "east": { - "uv": [ - 12, - 5, - 16, - 11 - ], - "texture": "#all" - } - } - }, - { - "from": [ - 8, - 5.95, - 4 - ], - "to": [ - 12, - 5.95, - 8 - ], - "faces": { - "up": { - "uv": [ - 8, - 1, - 12, - 5 - ], - "texture": "#all" - } - } - }, - { - "from": [ - 7.5, - 5.2, - 11 - ], - "to": [ - 8.5, - 8.7, - 11 - ], - "rotation": { - "origin": [ - 8, - 8, - 11 - ], - "axis": "y", - "angle": 45, - "rescale": true - }, - "shade": false, - "faces": { - "north": { - "uv": [ - 1, - 0, - 3, - 5 - ], - "texture": "#all" - }, - "south": { - "uv": [ - 3, - 0, - 1, - 5 - ], - "texture": "#all" - } - } - }, - { - "from": [ - 8, - 5.2, - 10.5 - ], - "to": [ - 8, - 8.7, - 11.5 - ], - "rotation": { - "origin": [ - 8, - 8, - 11 - ], - "axis": "y", - "angle": 45, - "rescale": true - }, - "shade": false, - "faces": { - "west": { - "uv": [ - 13, - 0, - 15, - 5 - ], - "texture": "#all" - }, - "east": { - "uv": [ - 15, - 0, - 13, - 5 - ], - "texture": "#all" - } - } - }, - { - "from": [ - 3.5, - 3.2, - 4 - ], - "to": [ - 4.5, - 6.7, - 4 - ], - "rotation": { - "origin": [ - 4, - 8, - 4 - ], - "axis": "y", - "angle": 45, - "rescale": true - }, - "shade": false, - "faces": { - "north": { - "uv": [ - 1, - 0, - 3, - 5 - ], - "texture": "#all" - }, - "south": { - "uv": [ - 3, - 0, - 1, - 5 - ], - "texture": "#all" - } - } - }, - { - "from": [ - 4, - 3.2, - 3.5 - ], - "to": [ - 4, - 6.7, - 4.5 - ], - "rotation": { - "origin": [ - 4, - 8, - 4 - ], - "axis": "y", - "angle": 45, - "rescale": true - }, - "shade": false, - "faces": { - "west": { - "uv": [ - 13, - 0, - 15, - 5 - ], - "texture": "#all" - }, - "east": { - "uv": [ - 15, - 0, - 13, - 5 - ], - "texture": "#all" - } - } - }, - { - "from": [ - 9.5, - 5.2, - 6 - ], - "to": [ - 10.5, - 8.7, - 6 - ], - "rotation": { - "origin": [ - 10, - 8, - 6 - ], - "axis": "y", - "angle": 45, - "rescale": true - }, - "shade": false, - "faces": { - "north": { - "uv": [ - 1, - 0, - 3, - 5 - ], - "texture": "#all" - }, - "south": { - "uv": [ - 3, - 0, - 1, - 5 - ], - "texture": "#all" - } - } - }, - { - "from": [ - 10, - 5.2, - 5.5 - ], - "to": [ - 10, - 8.7, - 6.5 - ], - "rotation": { - "origin": [ - 10, - 8, - 6 - ], - "axis": "y", - "angle": 45, - "rescale": true - }, - "shade": false, - "faces": { - "west": { - "uv": [ - 13, - 0, - 15, - 5 - ], - "texture": "#all" - }, - "east": { - "uv": [ - 15, - 0, - 13, - 5 - ], - "texture": "#all" - } - } - } - ] -} diff --git a/src/main/resources/assets/paradise_lost/models/block/two_dead_moss_stars.json b/src/main/resources/assets/paradise_lost/models/block/two_dead_moss_stars.json deleted file mode 100644 index 0e0579d57..000000000 --- a/src/main/resources/assets/paradise_lost/models/block/two_dead_moss_stars.json +++ /dev/null @@ -1,193 +0,0 @@ -{ - "parent": "block/block", - "textures": { - "particle": "paradise_lost:block/moss_star", - "all": "paradise_lost:block/moss_star" - }, - "elements": [ - { - "from": [ - 3, - 0, - 3 - ], - "to": [ - 7, - 6, - 7 - ], - "faces": { - "down": { - "uv": [ - 8, - 1, - 12, - 5 - ], - "texture": "#all", - "cullface": "down" - }, - "up": { - "uv": [ - 4, - 1, - 8, - 5 - ], - "texture": "#all" - }, - "north": { - "uv": [ - 4, - 5, - 8, - 11 - ], - "texture": "#all" - }, - "south": { - "uv": [ - 0, - 5, - 4, - 11 - ], - "texture": "#all" - }, - "west": { - "uv": [ - 8, - 5, - 12, - 11 - ], - "texture": "#all" - }, - "east": { - "uv": [ - 12, - 5, - 16, - 11 - ], - "texture": "#all" - } - } - }, - { - "from": [ - 3, - 5.95, - 3 - ], - "to": [ - 7, - 5.95, - 7 - ], - "faces": { - "up": { - "uv": [ - 8, - 1, - 12, - 5 - ], - "texture": "#all" - } - } - }, - { - "from": [ - 8, - 0, - 8 - ], - "to": [ - 12, - 4, - 12 - ], - "faces": { - "down": { - "uv": [ - 8, - 1, - 12, - 5 - ], - "texture": "#all", - "cullface": "down" - }, - "up": { - "uv": [ - 4, - 1, - 8, - 5 - ], - "texture": "#all" - }, - "north": { - "uv": [ - 4, - 5, - 8, - 9 - ], - "texture": "#all" - }, - "south": { - "uv": [ - 0, - 5, - 4, - 9 - ], - "texture": "#all" - }, - "west": { - "uv": [ - 8, - 5, - 12, - 9 - ], - "texture": "#all" - }, - "east": { - "uv": [ - 12, - 5, - 16, - 9 - ], - "texture": "#all" - } - } - }, - { - "from": [ - 8, - 3.95, - 8 - ], - "to": [ - 12, - 3.95, - 12 - ], - "faces": { - "up": { - "uv": [ - 8, - 1, - 12, - 5 - ], - "texture": "#all" - } - } - } - ] -} diff --git a/src/main/resources/assets/paradise_lost/models/block/two_moss_stars.json b/src/main/resources/assets/paradise_lost/models/block/two_moss_stars.json deleted file mode 100644 index 44605a11e..000000000 --- a/src/main/resources/assets/paradise_lost/models/block/two_moss_stars.json +++ /dev/null @@ -1,365 +0,0 @@ -{ - "parent": "block/block", - "textures": { - "particle": "paradise_lost:block/moss_star", - "all": "paradise_lost:block/moss_star" - }, - "elements": [ - { - "from": [ - 3, - 0, - 3 - ], - "to": [ - 7, - 6, - 7 - ], - "faces": { - "down": { - "uv": [ - 8, - 1, - 12, - 5 - ], - "texture": "#all", - "cullface": "down" - }, - "up": { - "uv": [ - 4, - 1, - 8, - 5 - ], - "texture": "#all" - }, - "north": { - "uv": [ - 4, - 5, - 8, - 11 - ], - "texture": "#all" - }, - "south": { - "uv": [ - 0, - 5, - 4, - 11 - ], - "texture": "#all" - }, - "west": { - "uv": [ - 8, - 5, - 12, - 11 - ], - "texture": "#all" - }, - "east": { - "uv": [ - 12, - 5, - 16, - 11 - ], - "texture": "#all" - } - } - }, - { - "from": [ - 3, - 5.95, - 3 - ], - "to": [ - 7, - 5.95, - 7 - ], - "faces": { - "up": { - "uv": [ - 8, - 1, - 12, - 5 - ], - "texture": "#all" - } - } - }, - { - "from": [ - 8, - 0, - 8 - ], - "to": [ - 12, - 4, - 12 - ], - "faces": { - "down": { - "uv": [ - 8, - 1, - 12, - 5 - ], - "texture": "#all", - "cullface": "down" - }, - "up": { - "uv": [ - 4, - 1, - 8, - 5 - ], - "texture": "#all" - }, - "north": { - "uv": [ - 4, - 5, - 8, - 9 - ], - "texture": "#all" - }, - "south": { - "uv": [ - 0, - 5, - 4, - 9 - ], - "texture": "#all" - }, - "west": { - "uv": [ - 8, - 5, - 12, - 9 - ], - "texture": "#all" - }, - "east": { - "uv": [ - 12, - 5, - 16, - 9 - ], - "texture": "#all" - } - } - }, - { - "from": [ - 8, - 3.95, - 8 - ], - "to": [ - 12, - 3.95, - 12 - ], - "faces": { - "up": { - "uv": [ - 8, - 1, - 12, - 5 - ], - "texture": "#all" - } - } - }, - { - "from": [ - 4.5, - 5.2, - 5 - ], - "to": [ - 5.5, - 8.7, - 5 - ], - "rotation": { - "origin": [ - 5, - 5.6, - 5 - ], - "axis": "y", - "angle": 45, - "rescale": true - }, - "shade": false, - "faces": { - "north": { - "uv": [ - 1, - 0, - 3, - 5 - ], - "texture": "#all" - }, - "south": { - "uv": [ - 3, - 0, - 1, - 5 - ], - "texture": "#all" - } - } - }, - { - "from": [ - 5, - 5.2, - 4.5 - ], - "to": [ - 5, - 8.7, - 5.5 - ], - "rotation": { - "origin": [ - 5, - 5.6, - 5 - ], - "axis": "y", - "angle": 45, - "rescale": true - }, - "shade": false, - "faces": { - "west": { - "uv": [ - 13, - 0, - 15, - 5 - ], - "texture": "#all" - }, - "east": { - "uv": [ - 15, - 0, - 13, - 5 - ], - "texture": "#all" - } - } - }, - { - "from": [ - 9.5, - 3.2, - 10 - ], - "to": [ - 10.5, - 6.7, - 10 - ], - "rotation": { - "origin": [ - 10, - 8, - 10 - ], - "axis": "y", - "angle": 45, - "rescale": true - }, - "shade": false, - "faces": { - "north": { - "uv": [ - 1, - 0, - 3, - 5 - ], - "texture": "#all" - }, - "south": { - "uv": [ - 3, - 0, - 1, - 5 - ], - "texture": "#all" - } - } - }, - { - "from": [ - 10, - 3.2, - 9.5 - ], - "to": [ - 10, - 6.7, - 10.5 - ], - "rotation": { - "origin": [ - 10, - 8, - 10 - ], - "axis": "y", - "angle": 45, - "rescale": true - }, - "shade": false, - "faces": { - "west": { - "uv": [ - 13, - 0, - 15, - 5 - ], - "texture": "#all" - }, - "east": { - "uv": [ - 15, - 0, - 13, - 5 - ], - "texture": "#all" - } - } - } - ] -} diff --git a/src/main/resources/assets/paradise_lost/models/block/weeping_cloudburst_body.json b/src/main/resources/assets/paradise_lost/models/block/weeping_cloudburst_body.json deleted file mode 100644 index 5a4a8a6a0..000000000 --- a/src/main/resources/assets/paradise_lost/models/block/weeping_cloudburst_body.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "paradise_lost:template/stellated_tint", - "textures": { - "face": "paradise_lost:block/weeping_cloudburst_body" - } -} diff --git a/src/main/resources/assets/paradise_lost/models/block/weeping_cloudburst_bottom.json b/src/main/resources/assets/paradise_lost/models/block/weeping_cloudburst_bottom.json deleted file mode 100644 index e856ca5ab..000000000 --- a/src/main/resources/assets/paradise_lost/models/block/weeping_cloudburst_bottom.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "paradise_lost:template/stellated_tint", - "textures": { - "face": "paradise_lost:block/weeping_cloudburst_bottom" - } -} diff --git a/src/main/resources/assets/paradise_lost/models/block/weeping_cloudburst_top.json b/src/main/resources/assets/paradise_lost/models/block/weeping_cloudburst_top.json deleted file mode 100644 index 86b4ad2f7..000000000 --- a/src/main/resources/assets/paradise_lost/models/block/weeping_cloudburst_top.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "paradise_lost:template/bilayer_stellated", - "textures": { - "face": "paradise_lost:block/weeping_cloudburst_top_flower", - "face_tint": "paradise_lost:block/weeping_cloudburst_top_stalk" - } -} diff --git a/src/main/resources/assets/paradise_lost/models/item/giant_lily.json b/src/main/resources/assets/paradise_lost/models/item/giant_lily.json deleted file mode 100644 index f3994c4f4..000000000 --- a/src/main/resources/assets/paradise_lost/models/item/giant_lily.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "paradise_lost:block/giant_lotus" -} diff --git a/src/main/resources/assets/paradise_lost/models/item/halophia.json b/src/main/resources/assets/paradise_lost/models/item/halophia.json deleted file mode 100644 index 2f27ae15c..000000000 --- a/src/main/resources/assets/paradise_lost/models/item/halophia.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "paradise_lost:block/halophia" - } -} diff --git a/src/main/resources/assets/paradise_lost/models/item/lichen.json b/src/main/resources/assets/paradise_lost/models/item/lichen.json deleted file mode 100644 index e8f8b5089..000000000 --- a/src/main/resources/assets/paradise_lost/models/item/lichen.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "paradise_lost:block/lichen" -} diff --git a/src/main/resources/assets/paradise_lost/models/item/lichen_pile.json b/src/main/resources/assets/paradise_lost/models/item/lichen_pile.json deleted file mode 100644 index b75174cfa..000000000 --- a/src/main/resources/assets/paradise_lost/models/item/lichen_pile.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "paradise_lost:block/lichen_pile" -} diff --git a/src/main/resources/assets/paradise_lost/models/item/lucatiel_lichen.json b/src/main/resources/assets/paradise_lost/models/item/lucatiel_lichen.json deleted file mode 100644 index cae24b459..000000000 --- a/src/main/resources/assets/paradise_lost/models/item/lucatiel_lichen.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "paradise_lost:block/lucatiel_lichen" -} diff --git a/src/main/resources/assets/paradise_lost/models/item/lucatiel_lichen_pile.json b/src/main/resources/assets/paradise_lost/models/item/lucatiel_lichen_pile.json deleted file mode 100644 index 1c6b6ae57..000000000 --- a/src/main/resources/assets/paradise_lost/models/item/lucatiel_lichen_pile.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "paradise_lost:block/lucatiel_lichen_pile" -} diff --git a/src/main/resources/assets/paradise_lost/models/item/moss_ball.json b/src/main/resources/assets/paradise_lost/models/item/moss_ball.json deleted file mode 100644 index 27a7aa0bd..000000000 --- a/src/main/resources/assets/paradise_lost/models/item/moss_ball.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "paradise_lost:item/moss_ball" - } -} diff --git a/src/main/resources/assets/paradise_lost/models/item/moss_star.json b/src/main/resources/assets/paradise_lost/models/item/moss_star.json deleted file mode 100644 index b6244afae..000000000 --- a/src/main/resources/assets/paradise_lost/models/item/moss_star.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "paradise_lost:block/moss_star" - } -} diff --git a/src/main/resources/assets/paradise_lost/models/item/weeping_cloudburst.json b/src/main/resources/assets/paradise_lost/models/item/weeping_cloudburst.json deleted file mode 100644 index 249dc803b..000000000 --- a/src/main/resources/assets/paradise_lost/models/item/weeping_cloudburst.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "paradise_lost:item/weeping_cloudburst" - } -} diff --git a/src/main/resources/assets/paradise_lost/textures/block/dry_moss_star.png b/src/main/resources/assets/paradise_lost/textures/block/dry_moss_star.png deleted file mode 100644 index bf11babe5..000000000 Binary files a/src/main/resources/assets/paradise_lost/textures/block/dry_moss_star.png and /dev/null differ diff --git a/src/main/resources/assets/paradise_lost/textures/block/giant_lilypad.png b/src/main/resources/assets/paradise_lost/textures/block/giant_lilypad.png deleted file mode 100644 index 910108d4e..000000000 Binary files a/src/main/resources/assets/paradise_lost/textures/block/giant_lilypad.png and /dev/null differ diff --git a/src/main/resources/assets/paradise_lost/textures/block/giant_lotus.png b/src/main/resources/assets/paradise_lost/textures/block/giant_lotus.png deleted file mode 100644 index ddb2d4130..000000000 Binary files a/src/main/resources/assets/paradise_lost/textures/block/giant_lotus.png and /dev/null differ diff --git a/src/main/resources/assets/paradise_lost/textures/block/giant_lotus_pistil.png b/src/main/resources/assets/paradise_lost/textures/block/giant_lotus_pistil.png deleted file mode 100644 index 3f5365038..000000000 Binary files a/src/main/resources/assets/paradise_lost/textures/block/giant_lotus_pistil.png and /dev/null differ diff --git a/src/main/resources/assets/paradise_lost/textures/block/halophia.png b/src/main/resources/assets/paradise_lost/textures/block/halophia.png deleted file mode 100644 index b8d15f003..000000000 Binary files a/src/main/resources/assets/paradise_lost/textures/block/halophia.png and /dev/null differ diff --git a/src/main/resources/assets/paradise_lost/textures/block/halophia.png.mcmeta b/src/main/resources/assets/paradise_lost/textures/block/halophia.png.mcmeta deleted file mode 100644 index 66a0930c9..000000000 --- a/src/main/resources/assets/paradise_lost/textures/block/halophia.png.mcmeta +++ /dev/null @@ -1,5 +0,0 @@ -{ - "animation": { - "frametime": 2 - } -} \ No newline at end of file diff --git a/src/main/resources/assets/paradise_lost/textures/block/lichen.png b/src/main/resources/assets/paradise_lost/textures/block/lichen.png deleted file mode 100644 index 18a305e25..000000000 Binary files a/src/main/resources/assets/paradise_lost/textures/block/lichen.png and /dev/null differ diff --git a/src/main/resources/assets/paradise_lost/textures/block/lucatiel_lichen.png b/src/main/resources/assets/paradise_lost/textures/block/lucatiel_lichen.png deleted file mode 100644 index 9cad2b356..000000000 Binary files a/src/main/resources/assets/paradise_lost/textures/block/lucatiel_lichen.png and /dev/null differ diff --git a/src/main/resources/assets/paradise_lost/textures/block/moss_ball_large.png b/src/main/resources/assets/paradise_lost/textures/block/moss_ball_large.png deleted file mode 100644 index 3d91982de..000000000 Binary files a/src/main/resources/assets/paradise_lost/textures/block/moss_ball_large.png and /dev/null differ diff --git a/src/main/resources/assets/paradise_lost/textures/block/moss_ball_small.png b/src/main/resources/assets/paradise_lost/textures/block/moss_ball_small.png deleted file mode 100644 index 91fe723f1..000000000 Binary files a/src/main/resources/assets/paradise_lost/textures/block/moss_ball_small.png and /dev/null differ diff --git a/src/main/resources/assets/paradise_lost/textures/block/moss_star.png b/src/main/resources/assets/paradise_lost/textures/block/moss_star.png deleted file mode 100644 index c8ba35d8a..000000000 Binary files a/src/main/resources/assets/paradise_lost/textures/block/moss_star.png and /dev/null differ diff --git a/src/main/resources/assets/paradise_lost/textures/block/weeping_cloudburst_body.png b/src/main/resources/assets/paradise_lost/textures/block/weeping_cloudburst_body.png deleted file mode 100644 index 08fe5039b..000000000 Binary files a/src/main/resources/assets/paradise_lost/textures/block/weeping_cloudburst_body.png and /dev/null differ diff --git a/src/main/resources/assets/paradise_lost/textures/block/weeping_cloudburst_bottom.png b/src/main/resources/assets/paradise_lost/textures/block/weeping_cloudburst_bottom.png deleted file mode 100644 index 900626671..000000000 Binary files a/src/main/resources/assets/paradise_lost/textures/block/weeping_cloudburst_bottom.png and /dev/null differ diff --git a/src/main/resources/assets/paradise_lost/textures/block/weeping_cloudburst_top_flower.png b/src/main/resources/assets/paradise_lost/textures/block/weeping_cloudburst_top_flower.png deleted file mode 100644 index 4b4c76d38..000000000 Binary files a/src/main/resources/assets/paradise_lost/textures/block/weeping_cloudburst_top_flower.png and /dev/null differ diff --git a/src/main/resources/assets/paradise_lost/textures/block/weeping_cloudburst_top_stalk.png b/src/main/resources/assets/paradise_lost/textures/block/weeping_cloudburst_top_stalk.png deleted file mode 100644 index a6fef7ebf..000000000 Binary files a/src/main/resources/assets/paradise_lost/textures/block/weeping_cloudburst_top_stalk.png and /dev/null differ diff --git a/src/main/resources/assets/paradise_lost/textures/item/moss_ball.png b/src/main/resources/assets/paradise_lost/textures/item/moss_ball.png deleted file mode 100644 index 0d44f7232..000000000 Binary files a/src/main/resources/assets/paradise_lost/textures/item/moss_ball.png and /dev/null differ diff --git a/src/main/resources/assets/paradise_lost/textures/item/weeping_cloudburst.png b/src/main/resources/assets/paradise_lost/textures/item/weeping_cloudburst.png deleted file mode 100644 index cd8e29095..000000000 Binary files a/src/main/resources/assets/paradise_lost/textures/item/weeping_cloudburst.png and /dev/null differ diff --git a/src/main/resources/data/paradise_lost/loot_tables/blocks/giant_lily.json b/src/main/resources/data/paradise_lost/loot_tables/blocks/giant_lily.json deleted file mode 100644 index 09593b51f..000000000 --- a/src/main/resources/data/paradise_lost/loot_tables/blocks/giant_lily.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1.0, - "bonus_rolls": 0.0, - "entries": [ - { - "type": "minecraft:item", - "name": "paradise_lost:giant_lily" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/paradise_lost/loot_tables/blocks/halophia.json b/src/main/resources/data/paradise_lost/loot_tables/blocks/halophia.json deleted file mode 100644 index 466b41008..000000000 --- a/src/main/resources/data/paradise_lost/loot_tables/blocks/halophia.json +++ /dev/null @@ -1,53 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1.0, - "bonus_rolls": 0.0, - "entries": [ - { - "type": "minecraft:alternatives", - "children": [ - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:match_tool", - "predicate": { - "items": [ - "minecraft:shears" - ] - } - } - ], - "name": "paradise_lost:halophia" - }, - { - "type": "minecraft:item", - "conditions": [ - { - "condition": "minecraft:random_chance", - "chance": 0.0 - } - ], - "functions": [ - { - "function": "minecraft:apply_bonus", - "enchantment": "minecraft:fortune", - "formula": "minecraft:uniform_bonus_count", - "parameters": { - "bonusMultiplier": 0 - } - }, - { - "function": "minecraft:explosion_decay" - } - ], - "name": "minecraft:wheat_seeds" - } - ] - } - ] - } - ] -} diff --git a/src/main/resources/data/paradise_lost/loot_tables/blocks/lichen.json b/src/main/resources/data/paradise_lost/loot_tables/blocks/lichen.json deleted file mode 100644 index 65d08c4d9..000000000 --- a/src/main/resources/data/paradise_lost/loot_tables/blocks/lichen.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1.0, - "bonus_rolls": 0.0, - "entries": [ - { - "type": "minecraft:item", - "name": "paradise_lost:lichen" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/paradise_lost/loot_tables/blocks/lichen_pile.json b/src/main/resources/data/paradise_lost/loot_tables/blocks/lichen_pile.json deleted file mode 100644 index 82cbe2526..000000000 --- a/src/main/resources/data/paradise_lost/loot_tables/blocks/lichen_pile.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1.0, - "bonus_rolls": 0.0, - "entries": [ - { - "type": "minecraft:item", - "name": "paradise_lost:lichen_pile" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/paradise_lost/loot_tables/blocks/lucatiel_lichen.json b/src/main/resources/data/paradise_lost/loot_tables/blocks/lucatiel_lichen.json deleted file mode 100644 index 480c6bfce..000000000 --- a/src/main/resources/data/paradise_lost/loot_tables/blocks/lucatiel_lichen.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1.0, - "bonus_rolls": 0.0, - "entries": [ - { - "type": "minecraft:item", - "name": "paradise_lost:lucatiel_lichen" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/paradise_lost/loot_tables/blocks/lucatiel_lichen_pile.json b/src/main/resources/data/paradise_lost/loot_tables/blocks/lucatiel_lichen_pile.json deleted file mode 100644 index 78db94967..000000000 --- a/src/main/resources/data/paradise_lost/loot_tables/blocks/lucatiel_lichen_pile.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1.0, - "bonus_rolls": 0.0, - "entries": [ - { - "type": "minecraft:item", - "name": "paradise_lost:lucatiel_lichen_pile" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/paradise_lost/loot_tables/blocks/moss_ball.json b/src/main/resources/data/paradise_lost/loot_tables/blocks/moss_ball.json deleted file mode 100644 index 66594afd2..000000000 --- a/src/main/resources/data/paradise_lost/loot_tables/blocks/moss_ball.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1.0, - "bonus_rolls": 0.0, - "entries": [ - { - "type": "minecraft:item", - "name": "paradise_lost:moss_ball" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/paradise_lost/loot_tables/blocks/moss_star.json b/src/main/resources/data/paradise_lost/loot_tables/blocks/moss_star.json deleted file mode 100644 index fab42d753..000000000 --- a/src/main/resources/data/paradise_lost/loot_tables/blocks/moss_star.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1.0, - "bonus_rolls": 0.0, - "entries": [ - { - "type": "minecraft:item", - "name": "paradise_lost:moss_star" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/paradise_lost/loot_tables/blocks/weeping_cloudburst.json b/src/main/resources/data/paradise_lost/loot_tables/blocks/weeping_cloudburst.json deleted file mode 100644 index e74eeb643..000000000 --- a/src/main/resources/data/paradise_lost/loot_tables/blocks/weeping_cloudburst.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "minecraft:block", - "pools": [ - { - "rolls": 1.0, - "bonus_rolls": 0.0, - "entries": [ - { - "type": "minecraft:item", - "name": "paradise_lost:weeping_cloudburst" - } - ], - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ] - } - ] -} diff --git a/src/main/resources/data/paradise_lost/tags/blocks/mineable_by_axe.json b/src/main/resources/data/paradise_lost/tags/blocks/mineable_by_axe.json index 55ecf1c01..0c5dce23f 100644 --- a/src/main/resources/data/paradise_lost/tags/blocks/mineable_by_axe.json +++ b/src/main/resources/data/paradise_lost/tags/blocks/mineable_by_axe.json @@ -3,7 +3,6 @@ "values": [ "paradise_lost:aurel_bookshelf", "paradise_lost:food_bowl", - "paradise_lost:giant_lily", "paradise_lost:packed_swedroot", "paradise_lost:swedroot_spread", "#paradise_lost:leaf_piles", diff --git a/src/main/resources/data/paradise_lost/tags/blocks/plants/lichen_spreadable.json b/src/main/resources/data/paradise_lost/tags/blocks/plants/lichen_spreadable.json deleted file mode 100644 index 8aef203cc..000000000 --- a/src/main/resources/data/paradise_lost/tags/blocks/plants/lichen_spreadable.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "replace": false, - "values": [ - "#minecraft:dirt", - "minecraft:stone", - "minecraft:blackstone", - "minecraft:deepslate", - "paradise_lost:floestone" - ] -} diff --git a/src/main/resources/data/paradise_lost/tags/blocks/underwater_bonemeals.json b/src/main/resources/data/paradise_lost/tags/blocks/underwater_bonemeals.json index 990911d42..d275da3f4 100644 --- a/src/main/resources/data/paradise_lost/tags/blocks/underwater_bonemeals.json +++ b/src/main/resources/data/paradise_lost/tags/blocks/underwater_bonemeals.json @@ -1,6 +1,5 @@ { "replace": false, "values": [ - "paradise_lost:halophia" ] }