diff --git a/src/main/java/org/polaris2023/wild_wind/common/init/ModBlocks.java b/src/main/java/org/polaris2023/wild_wind/common/init/ModBlocks.java index 5a5560e2..62bfc893 100644 --- a/src/main/java/org/polaris2023/wild_wind/common/init/ModBlocks.java +++ b/src/main/java/org/polaris2023/wild_wind/common/init/ModBlocks.java @@ -9,7 +9,6 @@ import net.minecraft.world.level.block.*; import net.minecraft.world.level.block.entity.BlockEntity; import net.minecraft.world.level.block.entity.BlockEntityType; -import net.minecraft.world.level.block.grower.TreeGrower; import net.minecraft.world.level.block.state.BlockBehaviour; import net.minecraft.world.level.block.state.properties.NoteBlockInstrument; import net.minecraft.world.level.material.MapColor; @@ -445,13 +444,13 @@ public class ModBlocks { //TODO: TreeGrower @I18n(en_us = "Palm Sapling", zh_cn = "棕榈树苗", zh_tw = "棕櫚樹苗") public static final DeferredBlock PALM_SAPLING = - register("palm_sapling", props -> new SaplingBlock(TreeGrower.OAK, props), BlockBehaviour.Properties.ofFullCopy(Blocks.SPRUCE_SAPLING)); + register("palm_sapling", props -> new SaplingBlock(ModTreeGrowers.PALM, props), BlockBehaviour.Properties.ofFullCopy(Blocks.SPRUCE_SAPLING)); @BasicBlockLocatedItem public static final DeferredItem PALM_SAPLING_ITEM = register("palm_sapling", PALM_SAPLING); @I18n(en_us = "Baobab Sapling", zh_cn = "猴面包树苗", zh_tw = "猴麵包樹苗") public static final DeferredBlock BAOBAB_SAPLING = - register("baobab_sapling", props -> new SaplingBlock(TreeGrower.OAK, props), BlockBehaviour.Properties.ofFullCopy(Blocks.ACACIA_SAPLING)); + register("baobab_sapling", props -> new SaplingBlock(ModTreeGrowers.BAOBAB, props), BlockBehaviour.Properties.ofFullCopy(Blocks.ACACIA_SAPLING)); @BasicBlockLocatedItem public static final DeferredItem BAOBAB_SAPLING_ITEM = register("baobab_sapling", BAOBAB_SAPLING); diff --git a/src/main/java/org/polaris2023/wild_wind/common/init/ModTreeGrowers.java b/src/main/java/org/polaris2023/wild_wind/common/init/ModTreeGrowers.java new file mode 100644 index 00000000..8c29c175 --- /dev/null +++ b/src/main/java/org/polaris2023/wild_wind/common/init/ModTreeGrowers.java @@ -0,0 +1,29 @@ +package org.polaris2023.wild_wind.common.init; + +import net.minecraft.data.worldgen.features.TreeFeatures; +import net.minecraft.world.level.block.grower.TreeGrower; + +import java.util.Optional; + +public class ModTreeGrowers { + public static final TreeGrower PALM = new TreeGrower( + "palm", + 0.1F, + Optional.empty(), + Optional.empty(), + Optional.of(TreeFeatures.OAK), + Optional.of(TreeFeatures.FANCY_OAK), + Optional.of(TreeFeatures.OAK_BEES_005), + Optional.of(TreeFeatures.FANCY_OAK_BEES_005) + ); + public static final TreeGrower BAOBAB = new TreeGrower( + "baobab", + 0.1F, + Optional.empty(), + Optional.empty(), + Optional.of(TreeFeatures.OAK), + Optional.of(TreeFeatures.FANCY_OAK), + Optional.of(TreeFeatures.OAK_BEES_005), + Optional.of(TreeFeatures.FANCY_OAK_BEES_005) + ); +} diff --git a/src/main/resources/assets/wild_wind/models/block/sculk_jaw.json b/src/main/resources/assets/wild_wind/models/block/sculk_jaw.json index 9b804e91..12db303a 100644 --- a/src/main/resources/assets/wild_wind/models/block/sculk_jaw.json +++ b/src/main/resources/assets/wild_wind/models/block/sculk_jaw.json @@ -1,11 +1,11 @@ { - "credit": "By KeepMeow", + "parent": "block/block", "textures": { + "particle": "wild_wind:block/sculk_catalyst_side", "teeth": "wild_wind:block/sculk_jaw_teeth", "top": "wild_wind:block/sculk_jaw_top", - "bottom": "minecraft:block/sculk_catalyst_bottom", - "particle": "minecraft:block/sculk_catalyst_side", - "side": "minecraft:block/sculk_catalyst_side" + "bottom": "wild_wind:block/sculk_catalyst_bottom", + "side": "wild_wind:block/sculk_catalyst_side" }, "elements": [ { @@ -20,19 +20,6 @@ "down": {"uv": [0, 0, 16, 16], "texture": "#bottom"} } }, - { - "from": [0, 0, 0], - "to": [16, 16, 16], - "color": 8, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#missing"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#missing"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#missing"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#missing"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#missing"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#missing"} - } - }, { "from": [2.75, 20.5, 0], "to": [7.75, 20.5, 16], @@ -59,41 +46,5 @@ "down": {"uv": [0, 0, 6, 16], "texture": "#teeth"} } } - ], - "display": { - "thirdperson_righthand": { - "rotation": [-110, 45, -180], - "translation": [0, 2.75, -1.25], - "scale": [0.4, 0.4, 0.4] - }, - "thirdperson_lefthand": { - "rotation": [-110, 45, -180], - "translation": [0, 2.75, -1.25], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_righthand": { - "rotation": [0, 45, 0], - "translation": [4.25, 0, -2.25], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [0, 45, 0], - "translation": [4.25, 0, -2.25], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.3, 0.3, 0.3] - }, - "gui": { - "rotation": [45, 45, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [-90, 0, 0] - }, - "fixed": { - "scale": [0.5, 0.5, 0.5] - } - } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/wild_wind/models/block/sculk_jaw_tendril_active.json b/src/main/resources/assets/wild_wind/models/block/sculk_jaw_tendril_active.json index b1b4deec..9057ef04 100644 --- a/src/main/resources/assets/wild_wind/models/block/sculk_jaw_tendril_active.json +++ b/src/main/resources/assets/wild_wind/models/block/sculk_jaw_tendril_active.json @@ -1,11 +1,11 @@ { - "credit": "By KeepMeow", + "parent": "block/block", "textures": { + "particle": "wild_wind:block/sculk_catalyst_side", + "tendril": "wild_wind:block/sculk_jaw_tendril_active", "teeth": "wild_wind:block/sculk_jaw_teeth", "top": "wild_wind:block/sculk_jaw_top", "bottom": "wild_wind:block/sculk_catalyst_bottom", - "tendril": "wild_wind:block/sculk_jaw_tendril_active", - "particle": "wild_wind:block/sculk_catalyst_side", "side": "wild_wind:block/sculk_catalyst_side" }, "elements": [ @@ -15,11 +15,7 @@ "rotation": {"angle": 0, "axis": "y", "origin": [0, -3, 0]}, "faces": { "north": {"uv": [0, 0, 16, 16], "texture": "#tendril"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#missing"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#tendril"}, - "west": {"uv": [0, 0, 1, 16], "texture": "#missing"}, - "up": {"uv": [0, 0, 1, 16], "texture": "#missing"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#missing"} + "south": {"uv": [0, 0, 16, 16], "texture": "#tendril"} } }, { @@ -34,19 +30,6 @@ "down": {"uv": [0, 0, 16, 16], "texture": "#bottom"} } }, - { - "from": [0, 0, 0], - "to": [16, 16, 16], - "color": 3, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#missing"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#missing"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#missing"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#missing"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#missing"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#missing"} - } - }, { "from": [2.75, 20.5, 0], "to": [7.75, 20.5, 16], @@ -73,54 +56,5 @@ "down": {"uv": [0, 0, 6, 16], "texture": "#teeth"} } } - ], - "display": { - "thirdperson_righthand": { - "rotation": [-110, 45, -180], - "translation": [0, 2.75, -1.25], - "scale": [0.4, 0.4, 0.4] - }, - "thirdperson_lefthand": { - "rotation": [-110, 45, -180], - "translation": [0, 2.75, -1.25], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_righthand": { - "rotation": [0, 45, 0], - "translation": [4.25, 0, -2.25], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [0, 45, 0], - "translation": [4.25, 0, -2.25], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.3, 0.3, 0.3] - }, - "gui": { - "rotation": [45, 45, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [-90, 0, 0] - }, - "fixed": { - "scale": [0.5, 0.5, 0.5] - } - }, - "groups": [ - 0, - { - "name": "group", - "origin": [8, 8, 8], - "color": 0, - "children": [] - }, - 1, - 2, - 3, - 4 ] } \ No newline at end of file diff --git a/src/main/resources/assets/wild_wind/models/block/sculk_jaw_tendril_extend.json b/src/main/resources/assets/wild_wind/models/block/sculk_jaw_tendril_extend.json index 1428fb89..d76302c3 100644 --- a/src/main/resources/assets/wild_wind/models/block/sculk_jaw_tendril_extend.json +++ b/src/main/resources/assets/wild_wind/models/block/sculk_jaw_tendril_extend.json @@ -1,11 +1,11 @@ { - "credit": "By KeepMeow", + "parent": "block/block", "textures": { - "4": "wild_wind:block/sculk_jaw_tendril_extend", + "particle": "wild_wind:block/sculk_catalyst_side", + "tendril": "wild_wind:block/sculk_jaw_tendril_extend", "teeth": "wild_wind:block/sculk_jaw_teeth", "top": "wild_wind:block/sculk_jaw_top", "bottom": "wild_wind:block/sculk_catalyst_bottom", - "particle": "wild_wind:block/sculk_catalyst_side", "side": "wild_wind:block/sculk_catalyst_side" }, "elements": [ @@ -14,12 +14,8 @@ "to": [15.75, 32, 8], "rotation": {"angle": 0, "axis": "y", "origin": [0, -3, 0]}, "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#missing"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "texture": "#missing"}, - "up": {"uv": [0, 0, 1, 16], "texture": "#missing"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#missing"} + "north": {"uv": [0, 0, 16, 16], "texture": "#tendril"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#tendril"} } }, { @@ -34,19 +30,6 @@ "down": {"uv": [0, 0, 16, 16], "texture": "#bottom"} } }, - { - "from": [0, 0, 0], - "to": [16, 16, 16], - "color": 3, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#missing"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#missing"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#missing"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#missing"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#missing"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#missing"} - } - }, { "from": [2.75, 20.5, 0], "to": [7.75, 20.5, 16], @@ -73,41 +56,5 @@ "down": {"uv": [0, 0, 6, 16], "texture": "#teeth"} } } - ], - "display": { - "thirdperson_righthand": { - "rotation": [-110, 45, -180], - "translation": [0, 2.75, -1.25], - "scale": [0.4, 0.4, 0.4] - }, - "thirdperson_lefthand": { - "rotation": [-110, 45, -180], - "translation": [0, 2.75, -1.25], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_righthand": { - "rotation": [0, 45, 0], - "translation": [4.25, 0, -2.25], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [0, 45, 0], - "translation": [4.25, 0, -2.25], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.3, 0.3, 0.3] - }, - "gui": { - "rotation": [45, 45, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [-90, 0, 0] - }, - "fixed": { - "scale": [0.5, 0.5, 0.5] - } - } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/wild_wind/models/block/sculk_jaw_tendril_inactive.json b/src/main/resources/assets/wild_wind/models/block/sculk_jaw_tendril_inactive.json index 0bb3caf7..9742fbf8 100644 --- a/src/main/resources/assets/wild_wind/models/block/sculk_jaw_tendril_inactive.json +++ b/src/main/resources/assets/wild_wind/models/block/sculk_jaw_tendril_inactive.json @@ -1,11 +1,11 @@ { - "credit": "By KeepMeow", + "parent": "block/block", "textures": { + "particle": "wild_wind:block/sculk_catalyst_side", + "tendril": "wild_wind:block/sculk_jaw_tendril_inactive", "teeth": "wild_wind:block/sculk_jaw_teeth", "top": "wild_wind:block/sculk_jaw_top", "bottom": "wild_wind:block/sculk_catalyst_bottom", - "tendril": "wild_wind:block/sculk_jaw_tendril_inactive", - "particle": "wild_wind:block/sculk_catalyst_side", "side": "wild_wind:block/sculk_catalyst_side" }, "elements": [ @@ -21,30 +21,13 @@ "down": {"uv": [0, 0, 16, 16], "texture": "#bottom"} } }, - { - "from": [0, 0, 0], - "to": [16, 16, 16], - "color": 8, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#missing"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#missing"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#missing"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#missing"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#missing"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#missing"} - } - }, { "from": [-0.25, 16, 8], "to": [15.75, 32, 8], "rotation": {"angle": 0, "axis": "y", "origin": [0, -3, 0]}, "faces": { "north": {"uv": [0, 0, 16, 16], "texture": "#tendril"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#missing"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#tendril"}, - "west": {"uv": [0, 0, 1, 16], "texture": "#missing"}, - "up": {"uv": [0, 0, 1, 16], "texture": "#missing"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#missing"} + "south": {"uv": [0, 0, 16, 16], "texture": "#tendril"} } }, { diff --git a/src/main/resources/assets/wild_wind/models/block/sculk_jaw_tendril_retract.json b/src/main/resources/assets/wild_wind/models/block/sculk_jaw_tendril_retract.json index ba95a273..59bdb3f1 100644 --- a/src/main/resources/assets/wild_wind/models/block/sculk_jaw_tendril_retract.json +++ b/src/main/resources/assets/wild_wind/models/block/sculk_jaw_tendril_retract.json @@ -1,11 +1,11 @@ { - "credit": "By KeepMeow", + "parent": "block/block", "textures": { - "4": "wild_wind:block/sculk_jaw_tendril_retract", + "particle": "wild_wind:block/sculk_catalyst_side", + "tendril": "wild_wind:block/sculk_jaw_tendril_retract", "teeth": "wild_wind:block/sculk_jaw_teeth", "top": "wild_wind:block/sculk_jaw_top", "bottom": "wild_wind:block/sculk_catalyst_bottom", - "particle": "wild_wind:block/sculk_catalyst_side", "side": "wild_wind:block/sculk_catalyst_side" }, "elements": [ @@ -14,12 +14,8 @@ "to": [15.75, 32, 8], "rotation": {"angle": 0, "axis": "y", "origin": [0, -3, 0]}, "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#4"}, - "east": {"uv": [0, 0, 1, 16], "texture": "#missing"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#4"}, - "west": {"uv": [0, 0, 1, 16], "texture": "#missing"}, - "up": {"uv": [0, 0, 1, 16], "texture": "#missing"}, - "down": {"uv": [0, 0, 1, 16], "texture": "#missing"} + "north": {"uv": [0, 0, 16, 16], "texture": "#tendril"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#tendril"} } }, { @@ -34,19 +30,6 @@ "down": {"uv": [0, 0, 16, 16], "texture": "#bottom"} } }, - { - "from": [0, 0, 0], - "to": [16, 16, 16], - "color": 3, - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#missing"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#missing"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#missing"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#missing"}, - "up": {"uv": [0, 0, 16, 16], "texture": "#missing"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#missing"} - } - }, { "from": [2.75, 20.5, 0], "to": [7.75, 20.5, 16], @@ -73,41 +56,5 @@ "down": {"uv": [0, 0, 6, 16], "texture": "#teeth"} } } - ], - "display": { - "thirdperson_righthand": { - "rotation": [-110, 45, -180], - "translation": [0, 2.75, -1.25], - "scale": [0.4, 0.4, 0.4] - }, - "thirdperson_lefthand": { - "rotation": [-110, 45, -180], - "translation": [0, 2.75, -1.25], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_righthand": { - "rotation": [0, 45, 0], - "translation": [4.25, 0, -2.25], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [0, 45, 0], - "translation": [4.25, 0, -2.25], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 2, 0], - "scale": [0.3, 0.3, 0.3] - }, - "gui": { - "rotation": [45, 45, 0], - "scale": [0.6, 0.6, 0.6] - }, - "head": { - "rotation": [-90, 0, 0] - }, - "fixed": { - "scale": [0.5, 0.5, 0.5] - } - } + ] } \ No newline at end of file diff --git a/src/main/resources/assets/wild_wind/textures/block/sculk_catalyst_bottom.png b/src/main/resources/assets/wild_wind/textures/block/sculk_catalyst_bottom.png new file mode 100644 index 00000000..0a815191 Binary files /dev/null and b/src/main/resources/assets/wild_wind/textures/block/sculk_catalyst_bottom.png differ diff --git a/src/main/resources/assets/wild_wind/textures/block/sculk_catalyst_side.png b/src/main/resources/assets/wild_wind/textures/block/sculk_catalyst_side.png new file mode 100644 index 00000000..76dca3b9 Binary files /dev/null and b/src/main/resources/assets/wild_wind/textures/block/sculk_catalyst_side.png differ diff --git a/src/main/resources/assets/wild_wind/textures/block/sculk_jaw_teeth.png b/src/main/resources/assets/wild_wind/textures/block/sculk_jaw_teeth.png index faf1a987..08891e47 100644 Binary files a/src/main/resources/assets/wild_wind/textures/block/sculk_jaw_teeth.png and b/src/main/resources/assets/wild_wind/textures/block/sculk_jaw_teeth.png differ diff --git a/src/main/resources/assets/wild_wind/textures/block/sculk_jaw_teeth.png.mcmeta b/src/main/resources/assets/wild_wind/textures/block/sculk_jaw_teeth.png.mcmeta index e8ac9bc3..68df5399 100644 --- a/src/main/resources/assets/wild_wind/textures/block/sculk_jaw_teeth.png.mcmeta +++ b/src/main/resources/assets/wild_wind/textures/block/sculk_jaw_teeth.png.mcmeta @@ -1,5 +1,5 @@ { - "animation": { - "frametime": 5 - } -} + "animation": { + "frametime": 5 + } +} \ No newline at end of file diff --git a/src/main/resources/assets/wild_wind/textures/block/sculk_jaw_tendril_active.png b/src/main/resources/assets/wild_wind/textures/block/sculk_jaw_tendril_active.png index 7dbcb4c4..a28cd124 100644 Binary files a/src/main/resources/assets/wild_wind/textures/block/sculk_jaw_tendril_active.png and b/src/main/resources/assets/wild_wind/textures/block/sculk_jaw_tendril_active.png differ diff --git a/src/main/resources/assets/wild_wind/textures/block/sculk_jaw_tendril_active.png.mcmeta b/src/main/resources/assets/wild_wind/textures/block/sculk_jaw_tendril_active.png.mcmeta index d1cd0799..e04bcd25 100644 --- a/src/main/resources/assets/wild_wind/textures/block/sculk_jaw_tendril_active.png.mcmeta +++ b/src/main/resources/assets/wild_wind/textures/block/sculk_jaw_tendril_active.png.mcmeta @@ -1,5 +1,5 @@ { - "animation": { - "frametime": 1 - } -} + "animation": { + "frametime": 6 + } +} \ No newline at end of file diff --git a/src/main/resources/assets/wild_wind/textures/block/sculk_jaw_tendril_extend.png b/src/main/resources/assets/wild_wind/textures/block/sculk_jaw_tendril_extend.png index 281cace4..9005885e 100644 Binary files a/src/main/resources/assets/wild_wind/textures/block/sculk_jaw_tendril_extend.png and b/src/main/resources/assets/wild_wind/textures/block/sculk_jaw_tendril_extend.png differ diff --git a/src/main/resources/assets/wild_wind/textures/block/sculk_jaw_tendril_extend.png.mcmeta b/src/main/resources/assets/wild_wind/textures/block/sculk_jaw_tendril_extend.png.mcmeta new file mode 100644 index 00000000..e04bcd25 --- /dev/null +++ b/src/main/resources/assets/wild_wind/textures/block/sculk_jaw_tendril_extend.png.mcmeta @@ -0,0 +1,5 @@ +{ + "animation": { + "frametime": 6 + } +} \ No newline at end of file diff --git a/src/main/resources/assets/wild_wind/textures/block/sculk_jaw_tendril_inactive.png b/src/main/resources/assets/wild_wind/textures/block/sculk_jaw_tendril_inactive.png index f41d9ec3..d0d3d5c0 100644 Binary files a/src/main/resources/assets/wild_wind/textures/block/sculk_jaw_tendril_inactive.png and b/src/main/resources/assets/wild_wind/textures/block/sculk_jaw_tendril_inactive.png differ diff --git a/src/main/resources/assets/wild_wind/textures/block/sculk_jaw_tendril_inactive.png.mcmeta b/src/main/resources/assets/wild_wind/textures/block/sculk_jaw_tendril_inactive.png.mcmeta index e8ac9bc3..68df5399 100644 --- a/src/main/resources/assets/wild_wind/textures/block/sculk_jaw_tendril_inactive.png.mcmeta +++ b/src/main/resources/assets/wild_wind/textures/block/sculk_jaw_tendril_inactive.png.mcmeta @@ -1,5 +1,5 @@ { - "animation": { - "frametime": 5 - } -} + "animation": { + "frametime": 5 + } +} \ No newline at end of file diff --git a/src/main/resources/assets/wild_wind/textures/block/sculk_jaw_tendril_retract.png b/src/main/resources/assets/wild_wind/textures/block/sculk_jaw_tendril_retract.png index 000c9887..3ca5d568 100644 Binary files a/src/main/resources/assets/wild_wind/textures/block/sculk_jaw_tendril_retract.png and b/src/main/resources/assets/wild_wind/textures/block/sculk_jaw_tendril_retract.png differ diff --git a/src/main/resources/assets/wild_wind/textures/block/sculk_jaw_tendril_retract.png.mcmeta b/src/main/resources/assets/wild_wind/textures/block/sculk_jaw_tendril_retract.png.mcmeta new file mode 100644 index 00000000..78df88c4 --- /dev/null +++ b/src/main/resources/assets/wild_wind/textures/block/sculk_jaw_tendril_retract.png.mcmeta @@ -0,0 +1,5 @@ +{ + "animation": { + "frametime": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/assets/wild_wind/textures/block/sculk_jaw_top_active.png b/src/main/resources/assets/wild_wind/textures/block/sculk_jaw_top_active.png new file mode 100644 index 00000000..b1ebe5a1 Binary files /dev/null and b/src/main/resources/assets/wild_wind/textures/block/sculk_jaw_top_active.png differ diff --git a/src/main/resources/assets/wild_wind/textures/block/sculk_jaw_top_inactive.png b/src/main/resources/assets/wild_wind/textures/block/sculk_jaw_top_inactive.png new file mode 100644 index 00000000..93f6df46 Binary files /dev/null and b/src/main/resources/assets/wild_wind/textures/block/sculk_jaw_top_inactive.png differ