diff --git a/build.gradle b/build.gradle index 0c858a97..0a621c63 100644 --- a/build.gradle +++ b/build.gradle @@ -3,7 +3,7 @@ plugins { id 'maven-publish' id 'idea' id 'eclipse' - id 'fabric-loom' version '1.7.+' + id 'fabric-loom' version '1.9.+' } apply from: 'https://raw.githubusercontent.com/TerraformersMC/GradleScripts/2.7/ferry.gradle' diff --git a/client/src/main/java/com/terraformersmc/terrestria/TerrestriaClient.java b/client/src/main/java/com/terraformersmc/terrestria/TerrestriaClient.java index 148a9e11..1530bbfb 100644 --- a/client/src/main/java/com/terraformersmc/terrestria/TerrestriaClient.java +++ b/client/src/main/java/com/terraformersmc/terrestria/TerrestriaClient.java @@ -2,7 +2,6 @@ import com.terraformersmc.terraform.boat.api.client.TerraformBoatClientHelper; import com.terraformersmc.terrestria.init.TerrestriaBlocks; -import com.terraformersmc.terrestria.init.TerrestriaItems; import com.terraformersmc.terrestria.tag.TerrestriaBlockTags; import net.fabricmc.api.ClientModInitializer; import net.fabricmc.api.EnvType; @@ -12,7 +11,6 @@ import net.fabricmc.fabric.api.client.rendering.v1.ColorProviderRegistry; import net.minecraft.block.Block; import net.minecraft.client.color.block.BlockColorProvider; -import net.minecraft.client.color.item.ItemColorProvider; import net.minecraft.client.color.world.BiomeColors; import net.minecraft.client.render.RenderLayer; import net.minecraft.client.render.TexturedRenderLayers; @@ -30,13 +28,9 @@ public class TerrestriaClient implements ClientModInitializer { private static final RenderLayer DOOR_BLOCK_LAYER = RenderLayer.getCutout(); private static final BlockColorProvider FOLIAGE_BLOCK_COLORS = - (block, world, pos, layer) -> world != null && pos != null ? BiomeColors.getFoliageColor(world, pos) : FoliageColors.getDefaultColor(); + (block, world, pos, layer) -> world != null && pos != null ? BiomeColors.getFoliageColor(world, pos) : FoliageColors.DEFAULT; private static final BlockColorProvider GRASS_BLOCK_COLORS = (block, world, pos, layer) -> world != null && pos != null ? BiomeColors.getGrassColor(world, pos) : GrassColors.getColor(0.5, 1.0); - private static final ItemColorProvider FOLIAGE_ITEM_COLORS = - (item, layer) -> FoliageColors.getColor(0.5, 1.0); - private static final ItemColorProvider GRASS_ITEM_COLORS = - (item, layer) -> GrassColors.getColor(0.5, 1.0); @Override public void onInitializeClient() { @@ -134,21 +128,6 @@ public void onInitializeClient() { addColoredGrass(TerrestriaBlocks.ANDISOL.getGrassBlock()); - ColorProviderRegistry.ITEM.register( - FOLIAGE_ITEM_COLORS, - TerrestriaItems.RUBBER.leaves, - TerrestriaItems.CYPRESS.leaves, - TerrestriaItems.WILLOW.leaves, - TerrestriaItems.RAINBOW_EUCALYPTUS.leaves, - TerrestriaItems.JAPANESE_MAPLE_SHRUB_LEAVES, - TerrestriaItems.REDWOOD.leaves, - TerrestriaItems.HEMLOCK.leaves - ); - - ColorProviderRegistry.ITEM.register( - GRASS_ITEM_COLORS, - TerrestriaItems.ANDISOL_GRASS_BLOCK - ); registerEntityRenderers(); } diff --git a/client/src/main/resources/assets/terrestria/blockstates/agave.json b/client/src/main/resources/assets/terrestria/blockstates/agave.json deleted file mode 100644 index 484fb77d..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/agave.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/agave" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/aloe_vera.json b/client/src/main/resources/assets/terrestria/blockstates/aloe_vera.json deleted file mode 100644 index 015e973a..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/aloe_vera.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/aloe_vera" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/andisol_farmland.json b/client/src/main/resources/assets/terrestria/blockstates/andisol_farmland.json deleted file mode 100644 index f3262c0f..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/andisol_farmland.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "variants": { - "moisture=1": { "model": "terrestria:block/andisol_farmland" }, - "moisture=0": { "model": "terrestria:block/andisol_farmland" }, - "moisture=2": { "model": "terrestria:block/andisol_farmland" }, - "moisture=3": { "model": "terrestria:block/andisol_farmland" }, - "moisture=4": { "model": "terrestria:block/andisol_farmland" }, - "moisture=5": { "model": "terrestria:block/andisol_farmland" }, - "moisture=6": { "model": "terrestria:block/andisol_farmland" }, - "moisture=7": { "model": "terrestria:block/andisol_farmland_moist" } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/basalt.json b/client/src/main/resources/assets/terrestria/blockstates/basalt.json deleted file mode 100644 index 58e0f9fd..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/basalt.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/basalt" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/basalt_brick_slab.json b/client/src/main/resources/assets/terrestria/blockstates/basalt_brick_slab.json deleted file mode 100644 index ac313b4c..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/basalt_brick_slab.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "type=bottom": { - "model": "terrestria:block/basalt_brick_slab" - }, - "type=top": { - "model": "terrestria:block/basalt_brick_slab_top" - }, - "type=double": { - "model": "terrestria:block/basalt_bricks" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/basalt_brick_stairs.json b/client/src/main/resources/assets/terrestria/blockstates/basalt_brick_stairs.json deleted file mode 100644 index 8d5e2ab1..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/basalt_brick_stairs.json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { - "model": "terrestria:block/basalt_brick_stairs" - }, - "facing=west,half=bottom,shape=straight": { - "model": "terrestria:block/basalt_brick_stairs", - "y": 180, - "uvlock": true - }, - "facing=south,half=bottom,shape=straight": { - "model": "terrestria:block/basalt_brick_stairs", - "y": 90, - "uvlock": true - }, - "facing=north,half=bottom,shape=straight": { - "model": "terrestria:block/basalt_brick_stairs", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_right": { - "model": "terrestria:block/basalt_brick_stairs_outer" - }, - "facing=west,half=bottom,shape=outer_right": { - "model": "terrestria:block/basalt_brick_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_right": { - "model": "terrestria:block/basalt_brick_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_right": { - "model": "terrestria:block/basalt_brick_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_left": { - "model": "terrestria:block/basalt_brick_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_left": { - "model": "terrestria:block/basalt_brick_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_left": { - "model": "terrestria:block/basalt_brick_stairs_outer" - }, - "facing=north,half=bottom,shape=outer_left": { - "model": "terrestria:block/basalt_brick_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_right": { - "model": "terrestria:block/basalt_brick_stairs_inner" - }, - "facing=west,half=bottom,shape=inner_right": { - "model": "terrestria:block/basalt_brick_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_right": { - "model": "terrestria:block/basalt_brick_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_right": { - "model": "terrestria:block/basalt_brick_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_left": { - "model": "terrestria:block/basalt_brick_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_left": { - "model": "terrestria:block/basalt_brick_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_left": { - "model": "terrestria:block/basalt_brick_stairs_inner" - }, - "facing=north,half=bottom,shape=inner_left": { - "model": "terrestria:block/basalt_brick_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=east,half=top,shape=straight": { - "model": "terrestria:block/basalt_brick_stairs", - "x": 180, - "uvlock": true - }, - "facing=west,half=top,shape=straight": { - "model": "terrestria:block/basalt_brick_stairs", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=straight": { - "model": "terrestria:block/basalt_brick_stairs", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=north,half=top,shape=straight": { - "model": "terrestria:block/basalt_brick_stairs", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=east,half=top,shape=outer_right": { - "model": "terrestria:block/basalt_brick_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=top,shape=outer_right": { - "model": "terrestria:block/basalt_brick_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=top,shape=outer_right": { - "model": "terrestria:block/basalt_brick_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=north,half=top,shape=outer_right": { - "model": "terrestria:block/basalt_brick_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=outer_left": { - "model": "terrestria:block/basalt_brick_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=west,half=top,shape=outer_left": { - "model": "terrestria:block/basalt_brick_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=outer_left": { - "model": "terrestria:block/basalt_brick_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=north,half=top,shape=outer_left": { - "model": "terrestria:block/basalt_brick_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=east,half=top,shape=inner_right": { - "model": "terrestria:block/basalt_brick_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=top,shape=inner_right": { - "model": "terrestria:block/basalt_brick_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=top,shape=inner_right": { - "model": "terrestria:block/basalt_brick_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=north,half=top,shape=inner_right": { - "model": "terrestria:block/basalt_brick_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=inner_left": { - "model": "terrestria:block/basalt_brick_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_left": { - "model": "terrestria:block/basalt_brick_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=inner_left": { - "model": "terrestria:block/basalt_brick_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=north,half=top,shape=inner_left": { - "model": "terrestria:block/basalt_brick_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/basalt_brick_wall.json b/client/src/main/resources/assets/terrestria/blockstates/basalt_brick_wall.json deleted file mode 100644 index 878cc606..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/basalt_brick_wall.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "multipart": [ - { - "when": { - "up": "true" - }, - "apply": { - "model": "terrestria:block/basalt_brick_wall_post" - } - }, - { - "when": { - "north": "low" - }, - "apply": { - "model": "terrestria:block/basalt_brick_wall_side", - "uvlock": true - } - }, - { - "when": { - "east": "low" - }, - "apply": { - "model": "terrestria:block/basalt_brick_wall_side", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "low" - }, - "apply": { - "model": "terrestria:block/basalt_brick_wall_side", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "low" - }, - "apply": { - "model": "terrestria:block/basalt_brick_wall_side", - "y": 270, - "uvlock": true - } - }, - { - "when": { - "north": "tall" - }, - "apply": { - "model": "terrestria:block/basalt_brick_wall_side_tall", - "uvlock": true - } - }, - { - "when": { - "east": "tall" - }, - "apply": { - "model": "terrestria:block/basalt_brick_wall_side_tall", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "tall" - }, - "apply": { - "model": "terrestria:block/basalt_brick_wall_side_tall", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "tall" - }, - "apply": { - "model": "terrestria:block/basalt_brick_wall_side_tall", - "y": 270, - "uvlock": true - } - } - ] -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/basalt_bricks.json b/client/src/main/resources/assets/terrestria/blockstates/basalt_bricks.json deleted file mode 100644 index a12edc93..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/basalt_bricks.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/basalt_bricks" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/basalt_button.json b/client/src/main/resources/assets/terrestria/blockstates/basalt_button.json deleted file mode 100644 index 86d841f8..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/basalt_button.json +++ /dev/null @@ -1,118 +0,0 @@ -{ - "variants": { - "face=floor,facing=east,powered=false": { - "model": "terrestria:block/basalt_button", - "y": 90 - }, - "face=floor,facing=west,powered=false": { - "model": "terrestria:block/basalt_button", - "y": 270 - }, - "face=floor,facing=south,powered=false": { - "model": "terrestria:block/basalt_button", - "y": 180 - }, - "face=floor,facing=north,powered=false": { - "model": "terrestria:block/basalt_button" - }, - "face=wall,facing=east,powered=false": { - "model": "terrestria:block/basalt_button", - "uvlock": true, - "x": 90, - "y": 90 - }, - "face=wall,facing=west,powered=false": { - "model": "terrestria:block/basalt_button", - "uvlock": true, - "x": 90, - "y": 270 - }, - "face=wall,facing=south,powered=false": { - "model": "terrestria:block/basalt_button", - "uvlock": true, - "x": 90, - "y": 180 - }, - "face=wall,facing=north,powered=false": { - "model": "terrestria:block/basalt_button", - "uvlock": true, - "x": 90 - }, - "face=ceiling,facing=east,powered=false": { - "model": "terrestria:block/basalt_button", - "x": 180, - "y": 270 - }, - "face=ceiling,facing=west,powered=false": { - "model": "terrestria:block/basalt_button", - "x": 180, - "y": 90 - }, - "face=ceiling,facing=south,powered=false": { - "model": "terrestria:block/basalt_button", - "x": 180 - }, - "face=ceiling,facing=north,powered=false": { - "model": "terrestria:block/basalt_button", - "x": 180, - "y": 180 - }, - "face=floor,facing=east,powered=true": { - "model": "terrestria:block/basalt_button_pressed", - "y": 90 - }, - "face=floor,facing=west,powered=true": { - "model": "terrestria:block/basalt_button_pressed", - "y": 270 - }, - "face=floor,facing=south,powered=true": { - "model": "terrestria:block/basalt_button_pressed", - "y": 180 - }, - "face=floor,facing=north,powered=true": { - "model": "terrestria:block/basalt_button_pressed" - }, - "face=wall,facing=east,powered=true": { - "model": "terrestria:block/basalt_button_pressed", - "uvlock": true, - "x": 90, - "y": 90 - }, - "face=wall,facing=west,powered=true": { - "model": "terrestria:block/basalt_button_pressed", - "uvlock": true, - "x": 90, - "y": 270 - }, - "face=wall,facing=south,powered=true": { - "model": "terrestria:block/basalt_button_pressed", - "uvlock": true, - "x": 90, - "y": 180 - }, - "face=wall,facing=north,powered=true": { - "model": "terrestria:block/basalt_button_pressed", - "uvlock": true, - "x": 90 - }, - "face=ceiling,facing=east,powered=true": { - "model": "terrestria:block/basalt_button_pressed", - "x": 180, - "y": 270 - }, - "face=ceiling,facing=west,powered=true": { - "model": "terrestria:block/basalt_button_pressed", - "x": 180, - "y": 90 - }, - "face=ceiling,facing=south,powered=true": { - "model": "terrestria:block/basalt_button_pressed", - "x": 180 - }, - "face=ceiling,facing=north,powered=true": { - "model": "terrestria:block/basalt_button_pressed", - "x": 180, - "y": 180 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/basalt_cobblestone.json b/client/src/main/resources/assets/terrestria/blockstates/basalt_cobblestone.json deleted file mode 100644 index 533efee7..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/basalt_cobblestone.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/basalt_cobblestone" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/basalt_cobblestone_slab.json b/client/src/main/resources/assets/terrestria/blockstates/basalt_cobblestone_slab.json deleted file mode 100644 index ef7b5d5c..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/basalt_cobblestone_slab.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "type=bottom": { - "model": "terrestria:block/basalt_cobblestone_slab" - }, - "type=top": { - "model": "terrestria:block/basalt_cobblestone_slab_top" - }, - "type=double": { - "model": "terrestria:block/basalt_cobblestone" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/basalt_cobblestone_stairs.json b/client/src/main/resources/assets/terrestria/blockstates/basalt_cobblestone_stairs.json deleted file mode 100644 index e3295458..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/basalt_cobblestone_stairs.json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { - "model": "terrestria:block/basalt_cobblestone_stairs" - }, - "facing=west,half=bottom,shape=straight": { - "model": "terrestria:block/basalt_cobblestone_stairs", - "y": 180, - "uvlock": true - }, - "facing=south,half=bottom,shape=straight": { - "model": "terrestria:block/basalt_cobblestone_stairs", - "y": 90, - "uvlock": true - }, - "facing=north,half=bottom,shape=straight": { - "model": "terrestria:block/basalt_cobblestone_stairs", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_right": { - "model": "terrestria:block/basalt_cobblestone_stairs_outer" - }, - "facing=west,half=bottom,shape=outer_right": { - "model": "terrestria:block/basalt_cobblestone_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_right": { - "model": "terrestria:block/basalt_cobblestone_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_right": { - "model": "terrestria:block/basalt_cobblestone_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_left": { - "model": "terrestria:block/basalt_cobblestone_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_left": { - "model": "terrestria:block/basalt_cobblestone_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_left": { - "model": "terrestria:block/basalt_cobblestone_stairs_outer" - }, - "facing=north,half=bottom,shape=outer_left": { - "model": "terrestria:block/basalt_cobblestone_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_right": { - "model": "terrestria:block/basalt_cobblestone_stairs_inner" - }, - "facing=west,half=bottom,shape=inner_right": { - "model": "terrestria:block/basalt_cobblestone_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_right": { - "model": "terrestria:block/basalt_cobblestone_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_right": { - "model": "terrestria:block/basalt_cobblestone_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_left": { - "model": "terrestria:block/basalt_cobblestone_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_left": { - "model": "terrestria:block/basalt_cobblestone_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_left": { - "model": "terrestria:block/basalt_cobblestone_stairs_inner" - }, - "facing=north,half=bottom,shape=inner_left": { - "model": "terrestria:block/basalt_cobblestone_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=east,half=top,shape=straight": { - "model": "terrestria:block/basalt_cobblestone_stairs", - "x": 180, - "uvlock": true - }, - "facing=west,half=top,shape=straight": { - "model": "terrestria:block/basalt_cobblestone_stairs", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=straight": { - "model": "terrestria:block/basalt_cobblestone_stairs", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=north,half=top,shape=straight": { - "model": "terrestria:block/basalt_cobblestone_stairs", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=east,half=top,shape=outer_right": { - "model": "terrestria:block/basalt_cobblestone_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=top,shape=outer_right": { - "model": "terrestria:block/basalt_cobblestone_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=top,shape=outer_right": { - "model": "terrestria:block/basalt_cobblestone_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=north,half=top,shape=outer_right": { - "model": "terrestria:block/basalt_cobblestone_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=outer_left": { - "model": "terrestria:block/basalt_cobblestone_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=west,half=top,shape=outer_left": { - "model": "terrestria:block/basalt_cobblestone_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=outer_left": { - "model": "terrestria:block/basalt_cobblestone_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=north,half=top,shape=outer_left": { - "model": "terrestria:block/basalt_cobblestone_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=east,half=top,shape=inner_right": { - "model": "terrestria:block/basalt_cobblestone_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=top,shape=inner_right": { - "model": "terrestria:block/basalt_cobblestone_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=top,shape=inner_right": { - "model": "terrestria:block/basalt_cobblestone_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=north,half=top,shape=inner_right": { - "model": "terrestria:block/basalt_cobblestone_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=inner_left": { - "model": "terrestria:block/basalt_cobblestone_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_left": { - "model": "terrestria:block/basalt_cobblestone_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=inner_left": { - "model": "terrestria:block/basalt_cobblestone_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=north,half=top,shape=inner_left": { - "model": "terrestria:block/basalt_cobblestone_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/basalt_cobblestone_wall.json b/client/src/main/resources/assets/terrestria/blockstates/basalt_cobblestone_wall.json deleted file mode 100644 index a4f854fe..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/basalt_cobblestone_wall.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "multipart": [ - { - "when": { - "up": "true" - }, - "apply": { - "model": "terrestria:block/basalt_cobblestone_wall_post" - } - }, - { - "when": { - "north": "low" - }, - "apply": { - "model": "terrestria:block/basalt_cobblestone_wall_side", - "uvlock": true - } - }, - { - "when": { - "east": "low" - }, - "apply": { - "model": "terrestria:block/basalt_cobblestone_wall_side", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "low" - }, - "apply": { - "model": "terrestria:block/basalt_cobblestone_wall_side", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "low" - }, - "apply": { - "model": "terrestria:block/basalt_cobblestone_wall_side", - "y": 270, - "uvlock": true - } - }, - { - "when": { - "north": "tall" - }, - "apply": { - "model": "terrestria:block/basalt_cobblestone_wall_side_tall", - "uvlock": true - } - }, - { - "when": { - "east": "tall" - }, - "apply": { - "model": "terrestria:block/basalt_cobblestone_wall_side_tall", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "tall" - }, - "apply": { - "model": "terrestria:block/basalt_cobblestone_wall_side_tall", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "tall" - }, - "apply": { - "model": "terrestria:block/basalt_cobblestone_wall_side_tall", - "y": 270, - "uvlock": true - } - } - ] -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/basalt_dirt.json b/client/src/main/resources/assets/terrestria/blockstates/basalt_dirt.json deleted file mode 100644 index 08d24940..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/basalt_dirt.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "variants": { - "": [ - { - "model": "terrestria:block/basalt_dirt" - }, - { - "model": "terrestria:block/basalt_dirt", - "y": 90 - }, - { - "model": "terrestria:block/basalt_dirt", - "y": 180 - }, - { - "model": "terrestria:block/basalt_dirt", - "y": 270 - } - ] - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/basalt_grass_block.json b/client/src/main/resources/assets/terrestria/blockstates/basalt_grass_block.json deleted file mode 100644 index 44563960..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/basalt_grass_block.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "variants": { - "snowy=false": [ - { - "model": "terrestria:block/basalt_grass_block" - }, - { - "model": "terrestria:block/basalt_grass_block", - "y": 90 - }, - { - "model": "terrestria:block/basalt_grass_block", - "y": 180 - }, - { - "model": "terrestria:block/basalt_grass_block", - "y": 270 - } - ], - "snowy=true": { - "model": "terrestria:block/basalt_grass_block_snow" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/basalt_grass_path.json b/client/src/main/resources/assets/terrestria/blockstates/basalt_grass_path.json deleted file mode 100644 index f69d1ee7..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/basalt_grass_path.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "variants": { - "": [ - { - "model": "terrestria:block/basalt_grass_path" - }, - { - "model": "terrestria:block/basalt_grass_path", - "y": 90 - }, - { - "model": "terrestria:block/basalt_grass_path", - "y": 180 - }, - { - "model": "terrestria:block/basalt_grass_path", - "y": 270 - } - ] - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/basalt_podzol.json b/client/src/main/resources/assets/terrestria/blockstates/basalt_podzol.json deleted file mode 100644 index b5a992dd..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/basalt_podzol.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "variants": { - "snowy=false": [ - { - "model": "terrestria:block/basalt_podzol" - }, - { - "model": "terrestria:block/basalt_podzol", - "y": 90 - }, - { - "model": "terrestria:block/basalt_podzol", - "y": 180 - }, - { - "model": "terrestria:block/basalt_podzol", - "y": 270 - } - ], - "snowy=true": { - "model": "terrestria:block/basalt_grass_block_snow" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/basalt_pressure_plate.json b/client/src/main/resources/assets/terrestria/blockstates/basalt_pressure_plate.json deleted file mode 100644 index b668beed..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/basalt_pressure_plate.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "variants": { - "powered=false": { - "model": "terrestria:block/basalt_pressure_plate" - }, - "powered=true": { - "model": "terrestria:block/basalt_pressure_plate_down" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/basalt_sand.json b/client/src/main/resources/assets/terrestria/blockstates/basalt_sand.json deleted file mode 100644 index c864ec1e..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/basalt_sand.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "variants": { - "": [ - { - "model": "terrestria:block/basalt_sand" - }, - { - "model": "terrestria:block/basalt_sand", - "y": 90 - }, - { - "model": "terrestria:block/basalt_sand", - "y": 180 - }, - { - "model": "terrestria:block/basalt_sand", - "y": 270 - } - ] - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/basalt_slab.json b/client/src/main/resources/assets/terrestria/blockstates/basalt_slab.json deleted file mode 100644 index 33c5a2e7..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/basalt_slab.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "type=bottom": { - "model": "terrestria:block/basalt_slab" - }, - "type=top": { - "model": "terrestria:block/basalt_slab_top" - }, - "type=double": { - "model": "terrestria:block/basalt" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/basalt_stairs.json b/client/src/main/resources/assets/terrestria/blockstates/basalt_stairs.json deleted file mode 100644 index f21c59d6..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/basalt_stairs.json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { - "model": "terrestria:block/basalt_stairs" - }, - "facing=west,half=bottom,shape=straight": { - "model": "terrestria:block/basalt_stairs", - "y": 180, - "uvlock": true - }, - "facing=south,half=bottom,shape=straight": { - "model": "terrestria:block/basalt_stairs", - "y": 90, - "uvlock": true - }, - "facing=north,half=bottom,shape=straight": { - "model": "terrestria:block/basalt_stairs", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_right": { - "model": "terrestria:block/basalt_stairs_outer" - }, - "facing=west,half=bottom,shape=outer_right": { - "model": "terrestria:block/basalt_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_right": { - "model": "terrestria:block/basalt_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_right": { - "model": "terrestria:block/basalt_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_left": { - "model": "terrestria:block/basalt_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_left": { - "model": "terrestria:block/basalt_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_left": { - "model": "terrestria:block/basalt_stairs_outer" - }, - "facing=north,half=bottom,shape=outer_left": { - "model": "terrestria:block/basalt_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_right": { - "model": "terrestria:block/basalt_stairs_inner" - }, - "facing=west,half=bottom,shape=inner_right": { - "model": "terrestria:block/basalt_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_right": { - "model": "terrestria:block/basalt_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_right": { - "model": "terrestria:block/basalt_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_left": { - "model": "terrestria:block/basalt_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_left": { - "model": "terrestria:block/basalt_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_left": { - "model": "terrestria:block/basalt_stairs_inner" - }, - "facing=north,half=bottom,shape=inner_left": { - "model": "terrestria:block/basalt_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=east,half=top,shape=straight": { - "model": "terrestria:block/basalt_stairs", - "x": 180, - "uvlock": true - }, - "facing=west,half=top,shape=straight": { - "model": "terrestria:block/basalt_stairs", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=straight": { - "model": "terrestria:block/basalt_stairs", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=north,half=top,shape=straight": { - "model": "terrestria:block/basalt_stairs", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=east,half=top,shape=outer_right": { - "model": "terrestria:block/basalt_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=top,shape=outer_right": { - "model": "terrestria:block/basalt_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=top,shape=outer_right": { - "model": "terrestria:block/basalt_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=north,half=top,shape=outer_right": { - "model": "terrestria:block/basalt_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=outer_left": { - "model": "terrestria:block/basalt_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=west,half=top,shape=outer_left": { - "model": "terrestria:block/basalt_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=outer_left": { - "model": "terrestria:block/basalt_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=north,half=top,shape=outer_left": { - "model": "terrestria:block/basalt_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=east,half=top,shape=inner_right": { - "model": "terrestria:block/basalt_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=top,shape=inner_right": { - "model": "terrestria:block/basalt_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=top,shape=inner_right": { - "model": "terrestria:block/basalt_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=north,half=top,shape=inner_right": { - "model": "terrestria:block/basalt_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=inner_left": { - "model": "terrestria:block/basalt_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_left": { - "model": "terrestria:block/basalt_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=inner_left": { - "model": "terrestria:block/basalt_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=north,half=top,shape=inner_left": { - "model": "terrestria:block/basalt_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/basalt_wall.json b/client/src/main/resources/assets/terrestria/blockstates/basalt_wall.json deleted file mode 100644 index 109d98f4..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/basalt_wall.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "multipart": [ - { - "when": { - "up": "true" - }, - "apply": { - "model": "terrestria:block/basalt_wall_post" - } - }, - { - "when": { - "north": "low" - }, - "apply": { - "model": "terrestria:block/basalt_wall_side", - "uvlock": true - } - }, - { - "when": { - "east": "low" - }, - "apply": { - "model": "terrestria:block/basalt_wall_side", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "low" - }, - "apply": { - "model": "terrestria:block/basalt_wall_side", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "low" - }, - "apply": { - "model": "terrestria:block/basalt_wall_side", - "y": 270, - "uvlock": true - } - }, - { - "when": { - "north": "tall" - }, - "apply": { - "model": "terrestria:block/basalt_wall_side_tall", - "uvlock": true - } - }, - { - "when": { - "east": "tall" - }, - "apply": { - "model": "terrestria:block/basalt_wall_side_tall", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "tall" - }, - "apply": { - "model": "terrestria:block/basalt_wall_side_tall", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "tall" - }, - "apply": { - "model": "terrestria:block/basalt_wall_side_tall", - "y": 270, - "uvlock": true - } - } - ] -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/bryce_sapling.json b/client/src/main/resources/assets/terrestria/blockstates/bryce_sapling.json deleted file mode 100644 index cef9d451..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/bryce_sapling.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "variants": { - "stage=0": { - "model": "terrestria:block/bryce_sapling" - }, - "stage=1": { - "model": "terrestria:block/bryce_sapling" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/cattail.json b/client/src/main/resources/assets/terrestria/blockstates/cattail.json deleted file mode 100644 index 4d118f71..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/cattail.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/cattail" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/chiseled_basalt_bricks.json b/client/src/main/resources/assets/terrestria/blockstates/chiseled_basalt_bricks.json deleted file mode 100644 index 3bbbe303..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/chiseled_basalt_bricks.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/chiseled_basalt_bricks" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/cracked_basalt_bricks.json b/client/src/main/resources/assets/terrestria/blockstates/cracked_basalt_bricks.json deleted file mode 100644 index fcbf6ffd..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/cracked_basalt_bricks.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/cracked_basalt_bricks" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/cypress_button.json b/client/src/main/resources/assets/terrestria/blockstates/cypress_button.json deleted file mode 100644 index bfac27e2..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/cypress_button.json +++ /dev/null @@ -1,118 +0,0 @@ -{ - "variants": { - "face=floor,facing=east,powered=false": { - "model": "terrestria:block/cypress_button", - "y": 90 - }, - "face=floor,facing=west,powered=false": { - "model": "terrestria:block/cypress_button", - "y": 270 - }, - "face=floor,facing=south,powered=false": { - "model": "terrestria:block/cypress_button", - "y": 180 - }, - "face=floor,facing=north,powered=false": { - "model": "terrestria:block/cypress_button" - }, - "face=wall,facing=east,powered=false": { - "model": "terrestria:block/cypress_button", - "uvlock": true, - "x": 90, - "y": 90 - }, - "face=wall,facing=west,powered=false": { - "model": "terrestria:block/cypress_button", - "uvlock": true, - "x": 90, - "y": 270 - }, - "face=wall,facing=south,powered=false": { - "model": "terrestria:block/cypress_button", - "uvlock": true, - "x": 90, - "y": 180 - }, - "face=wall,facing=north,powered=false": { - "model": "terrestria:block/cypress_button", - "uvlock": true, - "x": 90 - }, - "face=ceiling,facing=east,powered=false": { - "model": "terrestria:block/cypress_button", - "x": 180, - "y": 270 - }, - "face=ceiling,facing=west,powered=false": { - "model": "terrestria:block/cypress_button", - "x": 180, - "y": 90 - }, - "face=ceiling,facing=south,powered=false": { - "model": "terrestria:block/cypress_button", - "x": 180 - }, - "face=ceiling,facing=north,powered=false": { - "model": "terrestria:block/cypress_button", - "x": 180, - "y": 180 - }, - "face=floor,facing=east,powered=true": { - "model": "terrestria:block/cypress_button_pressed", - "y": 90 - }, - "face=floor,facing=west,powered=true": { - "model": "terrestria:block/cypress_button_pressed", - "y": 270 - }, - "face=floor,facing=south,powered=true": { - "model": "terrestria:block/cypress_button_pressed", - "y": 180 - }, - "face=floor,facing=north,powered=true": { - "model": "terrestria:block/cypress_button_pressed" - }, - "face=wall,facing=east,powered=true": { - "model": "terrestria:block/cypress_button_pressed", - "uvlock": true, - "x": 90, - "y": 90 - }, - "face=wall,facing=west,powered=true": { - "model": "terrestria:block/cypress_button_pressed", - "uvlock": true, - "x": 90, - "y": 270 - }, - "face=wall,facing=south,powered=true": { - "model": "terrestria:block/cypress_button_pressed", - "uvlock": true, - "x": 90, - "y": 180 - }, - "face=wall,facing=north,powered=true": { - "model": "terrestria:block/cypress_button_pressed", - "uvlock": true, - "x": 90 - }, - "face=ceiling,facing=east,powered=true": { - "model": "terrestria:block/cypress_button_pressed", - "x": 180, - "y": 270 - }, - "face=ceiling,facing=west,powered=true": { - "model": "terrestria:block/cypress_button_pressed", - "x": 180, - "y": 90 - }, - "face=ceiling,facing=south,powered=true": { - "model": "terrestria:block/cypress_button_pressed", - "x": 180 - }, - "face=ceiling,facing=north,powered=true": { - "model": "terrestria:block/cypress_button_pressed", - "x": 180, - "y": 180 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/cypress_door.json b/client/src/main/resources/assets/terrestria/blockstates/cypress_door.json deleted file mode 100644 index 2dd19be5..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/cypress_door.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "variants": { - "facing=east,half=lower,hinge=left,open=false": { "model": "terrestria:block/cypress_door_bottom_left" }, - "facing=east,half=lower,hinge=left,open=true": { "model": "terrestria:block/cypress_door_bottom_left_open", "y": 90 }, - "facing=east,half=lower,hinge=right,open=false": { "model": "terrestria:block/cypress_door_bottom_right" }, - "facing=east,half=lower,hinge=right,open=true": { "model": "terrestria:block/cypress_door_bottom_right_open", "y": 270 }, - "facing=east,half=upper,hinge=left,open=false": { "model": "terrestria:block/cypress_door_top_left" }, - "facing=east,half=upper,hinge=left,open=true": { "model": "terrestria:block/cypress_door_top_left_open", "y": 90 }, - "facing=east,half=upper,hinge=right,open=false": { "model": "terrestria:block/cypress_door_top_right" }, - "facing=east,half=upper,hinge=right,open=true": { "model": "terrestria:block/cypress_door_top_right_open", "y": 270 }, - "facing=north,half=lower,hinge=left,open=false": { "model": "terrestria:block/cypress_door_bottom_left", "y": 270 }, - "facing=north,half=lower,hinge=left,open=true": { "model": "terrestria:block/cypress_door_bottom_left_open" }, - "facing=north,half=lower,hinge=right,open=false": { "model": "terrestria:block/cypress_door_bottom_right", "y": 270 }, - "facing=north,half=lower,hinge=right,open=true": { "model": "terrestria:block/cypress_door_bottom_right_open", "y": 180 }, - "facing=north,half=upper,hinge=left,open=false": { "model": "terrestria:block/cypress_door_top_left", "y": 270 }, - "facing=north,half=upper,hinge=left,open=true": { "model": "terrestria:block/cypress_door_top_left_open" }, - "facing=north,half=upper,hinge=right,open=false": { "model": "terrestria:block/cypress_door_top_right", "y": 270 }, - "facing=north,half=upper,hinge=right,open=true": { "model": "terrestria:block/cypress_door_top_right_open", "y": 180 }, - "facing=south,half=lower,hinge=left,open=false": { "model": "terrestria:block/cypress_door_bottom_left", "y": 90 }, - "facing=south,half=lower,hinge=left,open=true": { "model": "terrestria:block/cypress_door_bottom_left_open", "y": 180 }, - "facing=south,half=lower,hinge=right,open=false": { "model": "terrestria:block/cypress_door_bottom_right", "y": 90 }, - "facing=south,half=lower,hinge=right,open=true": { "model": "terrestria:block/cypress_door_bottom_right_open" }, - "facing=south,half=upper,hinge=left,open=false": { "model": "terrestria:block/cypress_door_top_left", "y": 90 }, - "facing=south,half=upper,hinge=left,open=true": { "model": "terrestria:block/cypress_door_top_left_open", "y": 180 }, - "facing=south,half=upper,hinge=right,open=false": { "model": "terrestria:block/cypress_door_top_right", "y": 90 }, - "facing=south,half=upper,hinge=right,open=true": { "model": "terrestria:block/cypress_door_top_right_open" }, - "facing=west,half=lower,hinge=left,open=false": { "model": "terrestria:block/cypress_door_bottom_left", "y": 180 }, - "facing=west,half=lower,hinge=left,open=true": { "model": "terrestria:block/cypress_door_bottom_left_open", "y": 270 }, - "facing=west,half=lower,hinge=right,open=false": { "model": "terrestria:block/cypress_door_bottom_right", "y": 180 }, - "facing=west,half=lower,hinge=right,open=true": { "model": "terrestria:block/cypress_door_bottom_right_open", "y": 90 }, - "facing=west,half=upper,hinge=left,open=false": { "model": "terrestria:block/cypress_door_top_left", "y": 180 }, - "facing=west,half=upper,hinge=left,open=true": { "model": "terrestria:block/cypress_door_top_left_open", "y": 270 }, - "facing=west,half=upper,hinge=right,open=false": { "model": "terrestria:block/cypress_door_top_right", "y": 180 }, - "facing=west,half=upper,hinge=right,open=true": { "model": "terrestria:block/cypress_door_top_right_open", "y": 90 } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/cypress_fence.json b/client/src/main/resources/assets/terrestria/blockstates/cypress_fence.json deleted file mode 100644 index 080e8eed..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/cypress_fence.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "multipart": [ - { - "apply": { - "model": "terrestria:block/cypress_fence_post" - } - }, - { - "when": { - "north": "true" - }, - "apply": { - "model": "terrestria:block/cypress_fence_side", - "uvlock": true - } - }, - { - "when": { - "east": "true" - }, - "apply": { - "model": "terrestria:block/cypress_fence_side", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "true" - }, - "apply": { - "model": "terrestria:block/cypress_fence_side", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "true" - }, - "apply": { - "model": "terrestria:block/cypress_fence_side", - "y": 270, - "uvlock": true - } - } - ] -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/cypress_fence_gate.json b/client/src/main/resources/assets/terrestria/blockstates/cypress_fence_gate.json deleted file mode 100644 index bdf01c1e..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/cypress_fence_gate.json +++ /dev/null @@ -1,80 +0,0 @@ -{ - "variants": { - "facing=south,in_wall=false,open=false": { - "model": "terrestria:block/cypress_fence_gate", - "uvlock": true - }, - "facing=west,in_wall=false,open=false": { - "model": "terrestria:block/cypress_fence_gate", - "uvlock": true, - "y": 90 - }, - "facing=north,in_wall=false,open=false": { - "model": "terrestria:block/cypress_fence_gate", - "uvlock": true, - "y": 180 - }, - "facing=east,in_wall=false,open=false": { - "model": "terrestria:block/cypress_fence_gate", - "uvlock": true, - "y": 270 - }, - "facing=south,in_wall=false,open=true": { - "model": "terrestria:block/cypress_fence_gate_open", - "uvlock": true - }, - "facing=west,in_wall=false,open=true": { - "model": "terrestria:block/cypress_fence_gate_open", - "uvlock": true, - "y": 90 - }, - "facing=north,in_wall=false,open=true": { - "model": "terrestria:block/cypress_fence_gate_open", - "uvlock": true, - "y": 180 - }, - "facing=east,in_wall=false,open=true": { - "model": "terrestria:block/cypress_fence_gate_open", - "uvlock": true, - "y": 270 - }, - "facing=south,in_wall=true,open=false": { - "model": "terrestria:block/cypress_fence_gate_wall", - "uvlock": true - }, - "facing=west,in_wall=true,open=false": { - "model": "terrestria:block/cypress_fence_gate_wall", - "uvlock": true, - "y": 90 - }, - "facing=north,in_wall=true,open=false": { - "model": "terrestria:block/cypress_fence_gate_wall", - "uvlock": true, - "y": 180 - }, - "facing=east,in_wall=true,open=false": { - "model": "terrestria:block/cypress_fence_gate_wall", - "uvlock": true, - "y": 270 - }, - "facing=south,in_wall=true,open=true": { - "model": "terrestria:block/cypress_fence_gate_wall_open", - "uvlock": true - }, - "facing=west,in_wall=true,open=true": { - "model": "terrestria:block/cypress_fence_gate_wall_open", - "uvlock": true, - "y": 90 - }, - "facing=north,in_wall=true,open=true": { - "model": "terrestria:block/cypress_fence_gate_wall_open", - "uvlock": true, - "y": 180 - }, - "facing=east,in_wall=true,open=true": { - "model": "terrestria:block/cypress_fence_gate_wall_open", - "uvlock": true, - "y": 270 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/cypress_hanging_sign.json b/client/src/main/resources/assets/terrestria/blockstates/cypress_hanging_sign.json deleted file mode 100644 index 1cda49b5..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/cypress_hanging_sign.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "terrestria:block/cypress_hanging_sign" } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/cypress_leaves.json b/client/src/main/resources/assets/terrestria/blockstates/cypress_leaves.json deleted file mode 100644 index 9d964f96..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/cypress_leaves.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/cypress_leaves" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/cypress_log.json b/client/src/main/resources/assets/terrestria/blockstates/cypress_log.json deleted file mode 100644 index 704542dd..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/cypress_log.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "variants": { - "axis=x": { - "model": "terrestria:block/cypress_log", - "x": 90, - "y": 90 - }, - "axis=y": { - "model": "terrestria:block/cypress_log" - }, - "axis=z": { - "model": "terrestria:block/cypress_log", - "x": 90 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/cypress_planks.json b/client/src/main/resources/assets/terrestria/blockstates/cypress_planks.json deleted file mode 100644 index d70e4078..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/cypress_planks.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/cypress_planks" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/cypress_pressure_plate.json b/client/src/main/resources/assets/terrestria/blockstates/cypress_pressure_plate.json deleted file mode 100644 index 3b76d2e3..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/cypress_pressure_plate.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "variants": { - "powered=false": { - "model": "terrestria:block/cypress_pressure_plate" - }, - "powered=true": { - "model": "terrestria:block/cypress_pressure_plate_down" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/cypress_quarter_log.json b/client/src/main/resources/assets/terrestria/blockstates/cypress_quarter_log.json deleted file mode 100644 index 02c8ddd5..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/cypress_quarter_log.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "variants": { - "axis=x,bark_side=southwest": { - "model": "terrestria:block/cypress_quarter_log", - "x": 90, - "y": 270 - }, - "axis=x,bark_side=northwest": { - "model": "terrestria:block/cypress_quarter_log", - "x": 90, - "y": 90 - }, - "axis=x,bark_side=northeast": { - "model": "terrestria:block/cypress_quarter_log", - "x": 270, - "y": 90 - }, - "axis=x,bark_side=southeast": { - "model": "terrestria:block/cypress_quarter_log", - "x": 270, - "y": 270 - }, - "axis=y,bark_side=southwest": { - "model": "terrestria:block/cypress_quarter_log" - }, - "axis=y,bark_side=northwest": { - "model": "terrestria:block/cypress_quarter_log", - "y": 90 - }, - "axis=y,bark_side=northeast": { - "model": "terrestria:block/cypress_quarter_log", - "y": 180 - }, - "axis=y,bark_side=southeast": { - "model": "terrestria:block/cypress_quarter_log", - "y": 270 - }, - "axis=z,bark_side=southwest": { - "model": "terrestria:block/cypress_quarter_log", - "x": 90 - }, - "axis=z,bark_side=northwest": { - "model": "terrestria:block/cypress_quarter_log", - "x": 270 - }, - "axis=z,bark_side=northeast": { - "model": "terrestria:block/cypress_quarter_log", - "x": 270, - "y": 180 - }, - "axis=z,bark_side=southeast": { - "model": "terrestria:block/cypress_quarter_log", - "x": 90, - "y": 180 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/cypress_sapling.json b/client/src/main/resources/assets/terrestria/blockstates/cypress_sapling.json deleted file mode 100644 index a6acee27..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/cypress_sapling.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "variants": { - "stage=0": { - "model": "terrestria:block/cypress_sapling" - }, - "stage=1": { - "model": "terrestria:block/cypress_sapling" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/cypress_sign.json b/client/src/main/resources/assets/terrestria/blockstates/cypress_sign.json deleted file mode 100644 index 325292f0..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/cypress_sign.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/cypress_sign" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/cypress_slab.json b/client/src/main/resources/assets/terrestria/blockstates/cypress_slab.json deleted file mode 100644 index 4a8341f4..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/cypress_slab.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "type=bottom": { - "model": "terrestria:block/cypress_slab" - }, - "type=top": { - "model": "terrestria:block/cypress_slab_top" - }, - "type=double": { - "model": "terrestria:block/cypress_planks" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/cypress_stairs.json b/client/src/main/resources/assets/terrestria/blockstates/cypress_stairs.json deleted file mode 100644 index cf7986d8..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/cypress_stairs.json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { - "model": "terrestria:block/cypress_stairs" - }, - "facing=west,half=bottom,shape=straight": { - "model": "terrestria:block/cypress_stairs", - "y": 180, - "uvlock": true - }, - "facing=south,half=bottom,shape=straight": { - "model": "terrestria:block/cypress_stairs", - "y": 90, - "uvlock": true - }, - "facing=north,half=bottom,shape=straight": { - "model": "terrestria:block/cypress_stairs", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_right": { - "model": "terrestria:block/cypress_stairs_outer" - }, - "facing=west,half=bottom,shape=outer_right": { - "model": "terrestria:block/cypress_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_right": { - "model": "terrestria:block/cypress_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_right": { - "model": "terrestria:block/cypress_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_left": { - "model": "terrestria:block/cypress_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_left": { - "model": "terrestria:block/cypress_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_left": { - "model": "terrestria:block/cypress_stairs_outer" - }, - "facing=north,half=bottom,shape=outer_left": { - "model": "terrestria:block/cypress_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_right": { - "model": "terrestria:block/cypress_stairs_inner" - }, - "facing=west,half=bottom,shape=inner_right": { - "model": "terrestria:block/cypress_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_right": { - "model": "terrestria:block/cypress_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_right": { - "model": "terrestria:block/cypress_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_left": { - "model": "terrestria:block/cypress_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_left": { - "model": "terrestria:block/cypress_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_left": { - "model": "terrestria:block/cypress_stairs_inner" - }, - "facing=north,half=bottom,shape=inner_left": { - "model": "terrestria:block/cypress_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=east,half=top,shape=straight": { - "model": "terrestria:block/cypress_stairs", - "x": 180, - "uvlock": true - }, - "facing=west,half=top,shape=straight": { - "model": "terrestria:block/cypress_stairs", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=straight": { - "model": "terrestria:block/cypress_stairs", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=north,half=top,shape=straight": { - "model": "terrestria:block/cypress_stairs", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=east,half=top,shape=outer_right": { - "model": "terrestria:block/cypress_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=top,shape=outer_right": { - "model": "terrestria:block/cypress_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=top,shape=outer_right": { - "model": "terrestria:block/cypress_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=north,half=top,shape=outer_right": { - "model": "terrestria:block/cypress_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=outer_left": { - "model": "terrestria:block/cypress_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=west,half=top,shape=outer_left": { - "model": "terrestria:block/cypress_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=outer_left": { - "model": "terrestria:block/cypress_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=north,half=top,shape=outer_left": { - "model": "terrestria:block/cypress_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=east,half=top,shape=inner_right": { - "model": "terrestria:block/cypress_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=top,shape=inner_right": { - "model": "terrestria:block/cypress_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=top,shape=inner_right": { - "model": "terrestria:block/cypress_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=north,half=top,shape=inner_right": { - "model": "terrestria:block/cypress_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=inner_left": { - "model": "terrestria:block/cypress_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_left": { - "model": "terrestria:block/cypress_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=inner_left": { - "model": "terrestria:block/cypress_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=north,half=top,shape=inner_left": { - "model": "terrestria:block/cypress_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/cypress_trapdoor.json b/client/src/main/resources/assets/terrestria/blockstates/cypress_trapdoor.json deleted file mode 100644 index 5fbaf661..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/cypress_trapdoor.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "variants": { - "facing=north,half=bottom,open=false": { - "model": "terrestria:block/cypress_trapdoor_bottom" - }, - "facing=south,half=bottom,open=false": { - "model": "terrestria:block/cypress_trapdoor_bottom", - "y": 180 - }, - "facing=east,half=bottom,open=false": { - "model": "terrestria:block/cypress_trapdoor_bottom", - "y": 90 - }, - "facing=west,half=bottom,open=false": { - "model": "terrestria:block/cypress_trapdoor_bottom", - "y": 270 - }, - "facing=north,half=top,open=false": { - "model": "terrestria:block/cypress_trapdoor_top" - }, - "facing=south,half=top,open=false": { - "model": "terrestria:block/cypress_trapdoor_top", - "y": 180 - }, - "facing=east,half=top,open=false": { - "model": "terrestria:block/cypress_trapdoor_top", - "y": 90 - }, - "facing=west,half=top,open=false": { - "model": "terrestria:block/cypress_trapdoor_top", - "y": 270 - }, - "facing=north,half=bottom,open=true": { - "model": "terrestria:block/cypress_trapdoor_open" - }, - "facing=south,half=bottom,open=true": { - "model": "terrestria:block/cypress_trapdoor_open", - "y": 180 - }, - "facing=east,half=bottom,open=true": { - "model": "terrestria:block/cypress_trapdoor_open", - "y": 90 - }, - "facing=west,half=bottom,open=true": { - "model": "terrestria:block/cypress_trapdoor_open", - "y": 270 - }, - "facing=north,half=top,open=true": { - "model": "terrestria:block/cypress_trapdoor_open", - "x": 180, - "y": 180 - }, - "facing=south,half=top,open=true": { - "model": "terrestria:block/cypress_trapdoor_open", - "x": 180, - "y": 0 - }, - "facing=east,half=top,open=true": { - "model": "terrestria:block/cypress_trapdoor_open", - "x": 180, - "y": 270 - }, - "facing=west,half=top,open=true": { - "model": "terrestria:block/cypress_trapdoor_open", - "x": 180, - "y": 90 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/cypress_wall_hanging_sign.json b/client/src/main/resources/assets/terrestria/blockstates/cypress_wall_hanging_sign.json deleted file mode 100644 index 1cda49b5..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/cypress_wall_hanging_sign.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "terrestria:block/cypress_hanging_sign" } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/cypress_wall_sign.json b/client/src/main/resources/assets/terrestria/blockstates/cypress_wall_sign.json deleted file mode 100644 index 325292f0..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/cypress_wall_sign.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/cypress_sign" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/cypress_wood.json b/client/src/main/resources/assets/terrestria/blockstates/cypress_wood.json deleted file mode 100644 index b4e1d22c..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/cypress_wood.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "variants": { - "axis=x": { - "model": "terrestria:block/cypress_wood", - "x": 90, - "y": 90 - }, - "axis=y": { - "model": "terrestria:block/cypress_wood" - }, - "axis=z": { - "model": "terrestria:block/cypress_wood", - "x": 90 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/dark_japanese_maple_leaves.json b/client/src/main/resources/assets/terrestria/blockstates/dark_japanese_maple_leaves.json deleted file mode 100644 index a4c789f8..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/dark_japanese_maple_leaves.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/dark_japanese_maple_leaves" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/dark_japanese_maple_sapling.json b/client/src/main/resources/assets/terrestria/blockstates/dark_japanese_maple_sapling.json deleted file mode 100644 index c1d8c2a8..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/dark_japanese_maple_sapling.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "variants": { - "stage=0": { - "model": "terrestria:block/dark_japanese_maple_sapling" - }, - "stage=1": { - "model": "terrestria:block/dark_japanese_maple_sapling" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/dead_grass.json b/client/src/main/resources/assets/terrestria/blockstates/dead_grass.json deleted file mode 100644 index dabb24f7..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/dead_grass.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/dead_grass" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/hemlock_button.json b/client/src/main/resources/assets/terrestria/blockstates/hemlock_button.json deleted file mode 100644 index 594b56e5..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/hemlock_button.json +++ /dev/null @@ -1,118 +0,0 @@ -{ - "variants": { - "face=floor,facing=east,powered=false": { - "model": "terrestria:block/hemlock_button", - "y": 90 - }, - "face=floor,facing=west,powered=false": { - "model": "terrestria:block/hemlock_button", - "y": 270 - }, - "face=floor,facing=south,powered=false": { - "model": "terrestria:block/hemlock_button", - "y": 180 - }, - "face=floor,facing=north,powered=false": { - "model": "terrestria:block/hemlock_button" - }, - "face=wall,facing=east,powered=false": { - "model": "terrestria:block/hemlock_button", - "uvlock": true, - "x": 90, - "y": 90 - }, - "face=wall,facing=west,powered=false": { - "model": "terrestria:block/hemlock_button", - "uvlock": true, - "x": 90, - "y": 270 - }, - "face=wall,facing=south,powered=false": { - "model": "terrestria:block/hemlock_button", - "uvlock": true, - "x": 90, - "y": 180 - }, - "face=wall,facing=north,powered=false": { - "model": "terrestria:block/hemlock_button", - "uvlock": true, - "x": 90 - }, - "face=ceiling,facing=east,powered=false": { - "model": "terrestria:block/hemlock_button", - "x": 180, - "y": 270 - }, - "face=ceiling,facing=west,powered=false": { - "model": "terrestria:block/hemlock_button", - "x": 180, - "y": 90 - }, - "face=ceiling,facing=south,powered=false": { - "model": "terrestria:block/hemlock_button", - "x": 180 - }, - "face=ceiling,facing=north,powered=false": { - "model": "terrestria:block/hemlock_button", - "x": 180, - "y": 180 - }, - "face=floor,facing=east,powered=true": { - "model": "terrestria:block/hemlock_button_pressed", - "y": 90 - }, - "face=floor,facing=west,powered=true": { - "model": "terrestria:block/hemlock_button_pressed", - "y": 270 - }, - "face=floor,facing=south,powered=true": { - "model": "terrestria:block/hemlock_button_pressed", - "y": 180 - }, - "face=floor,facing=north,powered=true": { - "model": "terrestria:block/hemlock_button_pressed" - }, - "face=wall,facing=east,powered=true": { - "model": "terrestria:block/hemlock_button_pressed", - "uvlock": true, - "x": 90, - "y": 90 - }, - "face=wall,facing=west,powered=true": { - "model": "terrestria:block/hemlock_button_pressed", - "uvlock": true, - "x": 90, - "y": 270 - }, - "face=wall,facing=south,powered=true": { - "model": "terrestria:block/hemlock_button_pressed", - "uvlock": true, - "x": 90, - "y": 180 - }, - "face=wall,facing=north,powered=true": { - "model": "terrestria:block/hemlock_button_pressed", - "uvlock": true, - "x": 90 - }, - "face=ceiling,facing=east,powered=true": { - "model": "terrestria:block/hemlock_button_pressed", - "x": 180, - "y": 270 - }, - "face=ceiling,facing=west,powered=true": { - "model": "terrestria:block/hemlock_button_pressed", - "x": 180, - "y": 90 - }, - "face=ceiling,facing=south,powered=true": { - "model": "terrestria:block/hemlock_button_pressed", - "x": 180 - }, - "face=ceiling,facing=north,powered=true": { - "model": "terrestria:block/hemlock_button_pressed", - "x": 180, - "y": 180 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/hemlock_door.json b/client/src/main/resources/assets/terrestria/blockstates/hemlock_door.json deleted file mode 100644 index eaf6ff1e..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/hemlock_door.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "variants": { - "facing=east,half=lower,hinge=left,open=false": { "model": "terrestria:block/hemlock_door_bottom_left" }, - "facing=east,half=lower,hinge=left,open=true": { "model": "terrestria:block/hemlock_door_bottom_left_open", "y": 90 }, - "facing=east,half=lower,hinge=right,open=false": { "model": "terrestria:block/hemlock_door_bottom_right" }, - "facing=east,half=lower,hinge=right,open=true": { "model": "terrestria:block/hemlock_door_bottom_right_open", "y": 270 }, - "facing=east,half=upper,hinge=left,open=false": { "model": "terrestria:block/hemlock_door_top_left" }, - "facing=east,half=upper,hinge=left,open=true": { "model": "terrestria:block/hemlock_door_top_left_open", "y": 90 }, - "facing=east,half=upper,hinge=right,open=false": { "model": "terrestria:block/hemlock_door_top_right" }, - "facing=east,half=upper,hinge=right,open=true": { "model": "terrestria:block/hemlock_door_top_right_open", "y": 270 }, - "facing=north,half=lower,hinge=left,open=false": { "model": "terrestria:block/hemlock_door_bottom_left", "y": 270 }, - "facing=north,half=lower,hinge=left,open=true": { "model": "terrestria:block/hemlock_door_bottom_left_open" }, - "facing=north,half=lower,hinge=right,open=false": { "model": "terrestria:block/hemlock_door_bottom_right", "y": 270 }, - "facing=north,half=lower,hinge=right,open=true": { "model": "terrestria:block/hemlock_door_bottom_right_open", "y": 180 }, - "facing=north,half=upper,hinge=left,open=false": { "model": "terrestria:block/hemlock_door_top_left", "y": 270 }, - "facing=north,half=upper,hinge=left,open=true": { "model": "terrestria:block/hemlock_door_top_left_open" }, - "facing=north,half=upper,hinge=right,open=false": { "model": "terrestria:block/hemlock_door_top_right", "y": 270 }, - "facing=north,half=upper,hinge=right,open=true": { "model": "terrestria:block/hemlock_door_top_right_open", "y": 180 }, - "facing=south,half=lower,hinge=left,open=false": { "model": "terrestria:block/hemlock_door_bottom_left", "y": 90 }, - "facing=south,half=lower,hinge=left,open=true": { "model": "terrestria:block/hemlock_door_bottom_left_open", "y": 180 }, - "facing=south,half=lower,hinge=right,open=false": { "model": "terrestria:block/hemlock_door_bottom_right", "y": 90 }, - "facing=south,half=lower,hinge=right,open=true": { "model": "terrestria:block/hemlock_door_bottom_right_open" }, - "facing=south,half=upper,hinge=left,open=false": { "model": "terrestria:block/hemlock_door_top_left", "y": 90 }, - "facing=south,half=upper,hinge=left,open=true": { "model": "terrestria:block/hemlock_door_top_left_open", "y": 180 }, - "facing=south,half=upper,hinge=right,open=false": { "model": "terrestria:block/hemlock_door_top_right", "y": 90 }, - "facing=south,half=upper,hinge=right,open=true": { "model": "terrestria:block/hemlock_door_top_right_open" }, - "facing=west,half=lower,hinge=left,open=false": { "model": "terrestria:block/hemlock_door_bottom_left", "y": 180 }, - "facing=west,half=lower,hinge=left,open=true": { "model": "terrestria:block/hemlock_door_bottom_left_open", "y": 270 }, - "facing=west,half=lower,hinge=right,open=false": { "model": "terrestria:block/hemlock_door_bottom_right", "y": 180 }, - "facing=west,half=lower,hinge=right,open=true": { "model": "terrestria:block/hemlock_door_bottom_right_open", "y": 90 }, - "facing=west,half=upper,hinge=left,open=false": { "model": "terrestria:block/hemlock_door_top_left", "y": 180 }, - "facing=west,half=upper,hinge=left,open=true": { "model": "terrestria:block/hemlock_door_top_left_open", "y": 270 }, - "facing=west,half=upper,hinge=right,open=false": { "model": "terrestria:block/hemlock_door_top_right", "y": 180 }, - "facing=west,half=upper,hinge=right,open=true": { "model": "terrestria:block/hemlock_door_top_right_open", "y": 90 } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/hemlock_fence.json b/client/src/main/resources/assets/terrestria/blockstates/hemlock_fence.json deleted file mode 100644 index 882a2953..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/hemlock_fence.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "multipart": [ - { - "apply": { - "model": "terrestria:block/hemlock_fence_post" - } - }, - { - "when": { - "north": "true" - }, - "apply": { - "model": "terrestria:block/hemlock_fence_side", - "uvlock": true - } - }, - { - "when": { - "east": "true" - }, - "apply": { - "model": "terrestria:block/hemlock_fence_side", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "true" - }, - "apply": { - "model": "terrestria:block/hemlock_fence_side", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "true" - }, - "apply": { - "model": "terrestria:block/hemlock_fence_side", - "y": 270, - "uvlock": true - } - } - ] -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/hemlock_fence_gate.json b/client/src/main/resources/assets/terrestria/blockstates/hemlock_fence_gate.json deleted file mode 100644 index 65fd239a..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/hemlock_fence_gate.json +++ /dev/null @@ -1,80 +0,0 @@ -{ - "variants": { - "facing=south,in_wall=false,open=false": { - "model": "terrestria:block/hemlock_fence_gate", - "uvlock": true - }, - "facing=west,in_wall=false,open=false": { - "model": "terrestria:block/hemlock_fence_gate", - "uvlock": true, - "y": 90 - }, - "facing=north,in_wall=false,open=false": { - "model": "terrestria:block/hemlock_fence_gate", - "uvlock": true, - "y": 180 - }, - "facing=east,in_wall=false,open=false": { - "model": "terrestria:block/hemlock_fence_gate", - "uvlock": true, - "y": 270 - }, - "facing=south,in_wall=false,open=true": { - "model": "terrestria:block/hemlock_fence_gate_open", - "uvlock": true - }, - "facing=west,in_wall=false,open=true": { - "model": "terrestria:block/hemlock_fence_gate_open", - "uvlock": true, - "y": 90 - }, - "facing=north,in_wall=false,open=true": { - "model": "terrestria:block/hemlock_fence_gate_open", - "uvlock": true, - "y": 180 - }, - "facing=east,in_wall=false,open=true": { - "model": "terrestria:block/hemlock_fence_gate_open", - "uvlock": true, - "y": 270 - }, - "facing=south,in_wall=true,open=false": { - "model": "terrestria:block/hemlock_fence_gate_wall", - "uvlock": true - }, - "facing=west,in_wall=true,open=false": { - "model": "terrestria:block/hemlock_fence_gate_wall", - "uvlock": true, - "y": 90 - }, - "facing=north,in_wall=true,open=false": { - "model": "terrestria:block/hemlock_fence_gate_wall", - "uvlock": true, - "y": 180 - }, - "facing=east,in_wall=true,open=false": { - "model": "terrestria:block/hemlock_fence_gate_wall", - "uvlock": true, - "y": 270 - }, - "facing=south,in_wall=true,open=true": { - "model": "terrestria:block/hemlock_fence_gate_wall_open", - "uvlock": true - }, - "facing=west,in_wall=true,open=true": { - "model": "terrestria:block/hemlock_fence_gate_wall_open", - "uvlock": true, - "y": 90 - }, - "facing=north,in_wall=true,open=true": { - "model": "terrestria:block/hemlock_fence_gate_wall_open", - "uvlock": true, - "y": 180 - }, - "facing=east,in_wall=true,open=true": { - "model": "terrestria:block/hemlock_fence_gate_wall_open", - "uvlock": true, - "y": 270 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/hemlock_hanging_sign.json b/client/src/main/resources/assets/terrestria/blockstates/hemlock_hanging_sign.json deleted file mode 100644 index 34bc8d0f..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/hemlock_hanging_sign.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "terrestria:block/hemlock_hanging_sign" } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/hemlock_leaves.json b/client/src/main/resources/assets/terrestria/blockstates/hemlock_leaves.json deleted file mode 100644 index ac50bd42..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/hemlock_leaves.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/hemlock_leaves" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/hemlock_log.json b/client/src/main/resources/assets/terrestria/blockstates/hemlock_log.json deleted file mode 100644 index 5dd047c2..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/hemlock_log.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "variants": { - "axis=x": { - "model": "terrestria:block/hemlock_log", - "x": 90, - "y": 90 - }, - "axis=y": { - "model": "terrestria:block/hemlock_log" - }, - "axis=z": { - "model": "terrestria:block/hemlock_log", - "x": 90 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/hemlock_planks.json b/client/src/main/resources/assets/terrestria/blockstates/hemlock_planks.json deleted file mode 100644 index 0c6ae433..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/hemlock_planks.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/hemlock_planks" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/hemlock_pressure_plate.json b/client/src/main/resources/assets/terrestria/blockstates/hemlock_pressure_plate.json deleted file mode 100644 index b4f43115..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/hemlock_pressure_plate.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "variants": { - "powered=false": { - "model": "terrestria:block/hemlock_pressure_plate" - }, - "powered=true": { - "model": "terrestria:block/hemlock_pressure_plate_down" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/hemlock_quarter_log.json b/client/src/main/resources/assets/terrestria/blockstates/hemlock_quarter_log.json deleted file mode 100644 index 0d1e0c23..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/hemlock_quarter_log.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "variants": { - "axis=x,bark_side=southwest": { - "model": "terrestria:block/hemlock_quarter_log", - "x": 90, - "y": 270 - }, - "axis=x,bark_side=northwest": { - "model": "terrestria:block/hemlock_quarter_log", - "x": 90, - "y": 90 - }, - "axis=x,bark_side=northeast": { - "model": "terrestria:block/hemlock_quarter_log", - "x": 270, - "y": 90 - }, - "axis=x,bark_side=southeast": { - "model": "terrestria:block/hemlock_quarter_log", - "x": 270, - "y": 270 - }, - "axis=y,bark_side=southwest": { - "model": "terrestria:block/hemlock_quarter_log" - }, - "axis=y,bark_side=northwest": { - "model": "terrestria:block/hemlock_quarter_log", - "y": 90 - }, - "axis=y,bark_side=northeast": { - "model": "terrestria:block/hemlock_quarter_log", - "y": 180 - }, - "axis=y,bark_side=southeast": { - "model": "terrestria:block/hemlock_quarter_log", - "y": 270 - }, - "axis=z,bark_side=southwest": { - "model": "terrestria:block/hemlock_quarter_log", - "x": 90 - }, - "axis=z,bark_side=northwest": { - "model": "terrestria:block/hemlock_quarter_log", - "x": 270 - }, - "axis=z,bark_side=northeast": { - "model": "terrestria:block/hemlock_quarter_log", - "x": 270, - "y": 180 - }, - "axis=z,bark_side=southeast": { - "model": "terrestria:block/hemlock_quarter_log", - "x": 90, - "y": 180 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/hemlock_sapling.json b/client/src/main/resources/assets/terrestria/blockstates/hemlock_sapling.json deleted file mode 100644 index d2e660f2..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/hemlock_sapling.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "variants": { - "stage=0": { - "model": "terrestria:block/hemlock_sapling" - }, - "stage=1": { - "model": "terrestria:block/hemlock_sapling" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/hemlock_sign.json b/client/src/main/resources/assets/terrestria/blockstates/hemlock_sign.json deleted file mode 100644 index b398c560..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/hemlock_sign.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/hemlock_sign" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/hemlock_slab.json b/client/src/main/resources/assets/terrestria/blockstates/hemlock_slab.json deleted file mode 100644 index 2b3c6a7b..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/hemlock_slab.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "type=bottom": { - "model": "terrestria:block/hemlock_slab" - }, - "type=top": { - "model": "terrestria:block/hemlock_slab_top" - }, - "type=double": { - "model": "terrestria:block/hemlock_planks" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/hemlock_stairs.json b/client/src/main/resources/assets/terrestria/blockstates/hemlock_stairs.json deleted file mode 100644 index ac17a91a..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/hemlock_stairs.json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { - "model": "terrestria:block/hemlock_stairs" - }, - "facing=west,half=bottom,shape=straight": { - "model": "terrestria:block/hemlock_stairs", - "y": 180, - "uvlock": true - }, - "facing=south,half=bottom,shape=straight": { - "model": "terrestria:block/hemlock_stairs", - "y": 90, - "uvlock": true - }, - "facing=north,half=bottom,shape=straight": { - "model": "terrestria:block/hemlock_stairs", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_right": { - "model": "terrestria:block/hemlock_stairs_outer" - }, - "facing=west,half=bottom,shape=outer_right": { - "model": "terrestria:block/hemlock_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_right": { - "model": "terrestria:block/hemlock_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_right": { - "model": "terrestria:block/hemlock_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_left": { - "model": "terrestria:block/hemlock_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_left": { - "model": "terrestria:block/hemlock_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_left": { - "model": "terrestria:block/hemlock_stairs_outer" - }, - "facing=north,half=bottom,shape=outer_left": { - "model": "terrestria:block/hemlock_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_right": { - "model": "terrestria:block/hemlock_stairs_inner" - }, - "facing=west,half=bottom,shape=inner_right": { - "model": "terrestria:block/hemlock_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_right": { - "model": "terrestria:block/hemlock_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_right": { - "model": "terrestria:block/hemlock_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_left": { - "model": "terrestria:block/hemlock_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_left": { - "model": "terrestria:block/hemlock_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_left": { - "model": "terrestria:block/hemlock_stairs_inner" - }, - "facing=north,half=bottom,shape=inner_left": { - "model": "terrestria:block/hemlock_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=east,half=top,shape=straight": { - "model": "terrestria:block/hemlock_stairs", - "x": 180, - "uvlock": true - }, - "facing=west,half=top,shape=straight": { - "model": "terrestria:block/hemlock_stairs", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=straight": { - "model": "terrestria:block/hemlock_stairs", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=north,half=top,shape=straight": { - "model": "terrestria:block/hemlock_stairs", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=east,half=top,shape=outer_right": { - "model": "terrestria:block/hemlock_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=top,shape=outer_right": { - "model": "terrestria:block/hemlock_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=top,shape=outer_right": { - "model": "terrestria:block/hemlock_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=north,half=top,shape=outer_right": { - "model": "terrestria:block/hemlock_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=outer_left": { - "model": "terrestria:block/hemlock_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=west,half=top,shape=outer_left": { - "model": "terrestria:block/hemlock_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=outer_left": { - "model": "terrestria:block/hemlock_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=north,half=top,shape=outer_left": { - "model": "terrestria:block/hemlock_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=east,half=top,shape=inner_right": { - "model": "terrestria:block/hemlock_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=top,shape=inner_right": { - "model": "terrestria:block/hemlock_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=top,shape=inner_right": { - "model": "terrestria:block/hemlock_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=north,half=top,shape=inner_right": { - "model": "terrestria:block/hemlock_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=inner_left": { - "model": "terrestria:block/hemlock_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_left": { - "model": "terrestria:block/hemlock_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=inner_left": { - "model": "terrestria:block/hemlock_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=north,half=top,shape=inner_left": { - "model": "terrestria:block/hemlock_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/hemlock_trapdoor.json b/client/src/main/resources/assets/terrestria/blockstates/hemlock_trapdoor.json deleted file mode 100644 index 057e2029..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/hemlock_trapdoor.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "variants": { - "facing=north,half=bottom,open=false": { - "model": "terrestria:block/hemlock_trapdoor_bottom" - }, - "facing=south,half=bottom,open=false": { - "model": "terrestria:block/hemlock_trapdoor_bottom", - "y": 180 - }, - "facing=east,half=bottom,open=false": { - "model": "terrestria:block/hemlock_trapdoor_bottom", - "y": 90 - }, - "facing=west,half=bottom,open=false": { - "model": "terrestria:block/hemlock_trapdoor_bottom", - "y": 270 - }, - "facing=north,half=top,open=false": { - "model": "terrestria:block/hemlock_trapdoor_top" - }, - "facing=south,half=top,open=false": { - "model": "terrestria:block/hemlock_trapdoor_top", - "y": 180 - }, - "facing=east,half=top,open=false": { - "model": "terrestria:block/hemlock_trapdoor_top", - "y": 90 - }, - "facing=west,half=top,open=false": { - "model": "terrestria:block/hemlock_trapdoor_top", - "y": 270 - }, - "facing=north,half=bottom,open=true": { - "model": "terrestria:block/hemlock_trapdoor_open" - }, - "facing=south,half=bottom,open=true": { - "model": "terrestria:block/hemlock_trapdoor_open", - "y": 180 - }, - "facing=east,half=bottom,open=true": { - "model": "terrestria:block/hemlock_trapdoor_open", - "y": 90 - }, - "facing=west,half=bottom,open=true": { - "model": "terrestria:block/hemlock_trapdoor_open", - "y": 270 - }, - "facing=north,half=top,open=true": { - "model": "terrestria:block/hemlock_trapdoor_open", - "x": 180, - "y": 180 - }, - "facing=south,half=top,open=true": { - "model": "terrestria:block/hemlock_trapdoor_open", - "x": 180, - "y": 0 - }, - "facing=east,half=top,open=true": { - "model": "terrestria:block/hemlock_trapdoor_open", - "x": 180, - "y": 270 - }, - "facing=west,half=top,open=true": { - "model": "terrestria:block/hemlock_trapdoor_open", - "x": 180, - "y": 90 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/hemlock_wall_hanging_sign.json b/client/src/main/resources/assets/terrestria/blockstates/hemlock_wall_hanging_sign.json deleted file mode 100644 index 34bc8d0f..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/hemlock_wall_hanging_sign.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "terrestria:block/hemlock_hanging_sign" } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/hemlock_wall_sign.json b/client/src/main/resources/assets/terrestria/blockstates/hemlock_wall_sign.json deleted file mode 100644 index b398c560..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/hemlock_wall_sign.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/hemlock_sign" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/hemlock_wood.json b/client/src/main/resources/assets/terrestria/blockstates/hemlock_wood.json deleted file mode 100644 index 92971f33..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/hemlock_wood.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "variants": { - "axis=x": { - "model": "terrestria:block/hemlock_wood", - "x": 90, - "y": 90 - }, - "axis=y": { - "model": "terrestria:block/hemlock_wood" - }, - "axis=z": { - "model": "terrestria:block/hemlock_wood", - "x": 90 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/indian_paintbrush.json b/client/src/main/resources/assets/terrestria/blockstates/indian_paintbrush.json deleted file mode 100644 index 3b358b97..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/indian_paintbrush.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/indian_paintbrush" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_button.json b/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_button.json deleted file mode 100644 index 855c7d42..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_button.json +++ /dev/null @@ -1,118 +0,0 @@ -{ - "variants": { - "face=floor,facing=east,powered=false": { - "model": "terrestria:block/japanese_maple_button", - "y": 90 - }, - "face=floor,facing=west,powered=false": { - "model": "terrestria:block/japanese_maple_button", - "y": 270 - }, - "face=floor,facing=south,powered=false": { - "model": "terrestria:block/japanese_maple_button", - "y": 180 - }, - "face=floor,facing=north,powered=false": { - "model": "terrestria:block/japanese_maple_button" - }, - "face=wall,facing=east,powered=false": { - "model": "terrestria:block/japanese_maple_button", - "uvlock": true, - "x": 90, - "y": 90 - }, - "face=wall,facing=west,powered=false": { - "model": "terrestria:block/japanese_maple_button", - "uvlock": true, - "x": 90, - "y": 270 - }, - "face=wall,facing=south,powered=false": { - "model": "terrestria:block/japanese_maple_button", - "uvlock": true, - "x": 90, - "y": 180 - }, - "face=wall,facing=north,powered=false": { - "model": "terrestria:block/japanese_maple_button", - "uvlock": true, - "x": 90 - }, - "face=ceiling,facing=east,powered=false": { - "model": "terrestria:block/japanese_maple_button", - "x": 180, - "y": 270 - }, - "face=ceiling,facing=west,powered=false": { - "model": "terrestria:block/japanese_maple_button", - "x": 180, - "y": 90 - }, - "face=ceiling,facing=south,powered=false": { - "model": "terrestria:block/japanese_maple_button", - "x": 180 - }, - "face=ceiling,facing=north,powered=false": { - "model": "terrestria:block/japanese_maple_button", - "x": 180, - "y": 180 - }, - "face=floor,facing=east,powered=true": { - "model": "terrestria:block/japanese_maple_button_pressed", - "y": 90 - }, - "face=floor,facing=west,powered=true": { - "model": "terrestria:block/japanese_maple_button_pressed", - "y": 270 - }, - "face=floor,facing=south,powered=true": { - "model": "terrestria:block/japanese_maple_button_pressed", - "y": 180 - }, - "face=floor,facing=north,powered=true": { - "model": "terrestria:block/japanese_maple_button_pressed" - }, - "face=wall,facing=east,powered=true": { - "model": "terrestria:block/japanese_maple_button_pressed", - "uvlock": true, - "x": 90, - "y": 90 - }, - "face=wall,facing=west,powered=true": { - "model": "terrestria:block/japanese_maple_button_pressed", - "uvlock": true, - "x": 90, - "y": 270 - }, - "face=wall,facing=south,powered=true": { - "model": "terrestria:block/japanese_maple_button_pressed", - "uvlock": true, - "x": 90, - "y": 180 - }, - "face=wall,facing=north,powered=true": { - "model": "terrestria:block/japanese_maple_button_pressed", - "uvlock": true, - "x": 90 - }, - "face=ceiling,facing=east,powered=true": { - "model": "terrestria:block/japanese_maple_button_pressed", - "x": 180, - "y": 270 - }, - "face=ceiling,facing=west,powered=true": { - "model": "terrestria:block/japanese_maple_button_pressed", - "x": 180, - "y": 90 - }, - "face=ceiling,facing=south,powered=true": { - "model": "terrestria:block/japanese_maple_button_pressed", - "x": 180 - }, - "face=ceiling,facing=north,powered=true": { - "model": "terrestria:block/japanese_maple_button_pressed", - "x": 180, - "y": 180 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_door.json b/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_door.json deleted file mode 100644 index c17fbe02..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_door.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "variants": { - "facing=east,half=lower,hinge=left,open=false": { "model": "terrestria:block/japanese_maple_door_bottom_left" }, - "facing=east,half=lower,hinge=left,open=true": { "model": "terrestria:block/japanese_maple_door_bottom_left_open", "y": 90 }, - "facing=east,half=lower,hinge=right,open=false": { "model": "terrestria:block/japanese_maple_door_bottom_right" }, - "facing=east,half=lower,hinge=right,open=true": { "model": "terrestria:block/japanese_maple_door_bottom_right_open", "y": 270 }, - "facing=east,half=upper,hinge=left,open=false": { "model": "terrestria:block/japanese_maple_door_top_left" }, - "facing=east,half=upper,hinge=left,open=true": { "model": "terrestria:block/japanese_maple_door_top_left_open", "y": 90 }, - "facing=east,half=upper,hinge=right,open=false": { "model": "terrestria:block/japanese_maple_door_top_right" }, - "facing=east,half=upper,hinge=right,open=true": { "model": "terrestria:block/japanese_maple_door_top_right_open", "y": 270 }, - "facing=north,half=lower,hinge=left,open=false": { "model": "terrestria:block/japanese_maple_door_bottom_left", "y": 270 }, - "facing=north,half=lower,hinge=left,open=true": { "model": "terrestria:block/japanese_maple_door_bottom_left_open" }, - "facing=north,half=lower,hinge=right,open=false": { "model": "terrestria:block/japanese_maple_door_bottom_right", "y": 270 }, - "facing=north,half=lower,hinge=right,open=true": { "model": "terrestria:block/japanese_maple_door_bottom_right_open", "y": 180 }, - "facing=north,half=upper,hinge=left,open=false": { "model": "terrestria:block/japanese_maple_door_top_left", "y": 270 }, - "facing=north,half=upper,hinge=left,open=true": { "model": "terrestria:block/japanese_maple_door_top_left_open" }, - "facing=north,half=upper,hinge=right,open=false": { "model": "terrestria:block/japanese_maple_door_top_right", "y": 270 }, - "facing=north,half=upper,hinge=right,open=true": { "model": "terrestria:block/japanese_maple_door_top_right_open", "y": 180 }, - "facing=south,half=lower,hinge=left,open=false": { "model": "terrestria:block/japanese_maple_door_bottom_left", "y": 90 }, - "facing=south,half=lower,hinge=left,open=true": { "model": "terrestria:block/japanese_maple_door_bottom_left_open", "y": 180 }, - "facing=south,half=lower,hinge=right,open=false": { "model": "terrestria:block/japanese_maple_door_bottom_right", "y": 90 }, - "facing=south,half=lower,hinge=right,open=true": { "model": "terrestria:block/japanese_maple_door_bottom_right_open" }, - "facing=south,half=upper,hinge=left,open=false": { "model": "terrestria:block/japanese_maple_door_top_left", "y": 90 }, - "facing=south,half=upper,hinge=left,open=true": { "model": "terrestria:block/japanese_maple_door_top_left_open", "y": 180 }, - "facing=south,half=upper,hinge=right,open=false": { "model": "terrestria:block/japanese_maple_door_top_right", "y": 90 }, - "facing=south,half=upper,hinge=right,open=true": { "model": "terrestria:block/japanese_maple_door_top_right_open" }, - "facing=west,half=lower,hinge=left,open=false": { "model": "terrestria:block/japanese_maple_door_bottom_left", "y": 180 }, - "facing=west,half=lower,hinge=left,open=true": { "model": "terrestria:block/japanese_maple_door_bottom_left_open", "y": 270 }, - "facing=west,half=lower,hinge=right,open=false": { "model": "terrestria:block/japanese_maple_door_bottom_right", "y": 180 }, - "facing=west,half=lower,hinge=right,open=true": { "model": "terrestria:block/japanese_maple_door_bottom_right_open", "y": 90 }, - "facing=west,half=upper,hinge=left,open=false": { "model": "terrestria:block/japanese_maple_door_top_left", "y": 180 }, - "facing=west,half=upper,hinge=left,open=true": { "model": "terrestria:block/japanese_maple_door_top_left_open", "y": 270 }, - "facing=west,half=upper,hinge=right,open=false": { "model": "terrestria:block/japanese_maple_door_top_right", "y": 180 }, - "facing=west,half=upper,hinge=right,open=true": { "model": "terrestria:block/japanese_maple_door_top_right_open", "y": 90 } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_fence.json b/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_fence.json deleted file mode 100644 index c0e9ee3d..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_fence.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "multipart": [ - { - "apply": { - "model": "terrestria:block/japanese_maple_fence_post" - } - }, - { - "when": { - "north": "true" - }, - "apply": { - "model": "terrestria:block/japanese_maple_fence_side", - "uvlock": true - } - }, - { - "when": { - "east": "true" - }, - "apply": { - "model": "terrestria:block/japanese_maple_fence_side", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "true" - }, - "apply": { - "model": "terrestria:block/japanese_maple_fence_side", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "true" - }, - "apply": { - "model": "terrestria:block/japanese_maple_fence_side", - "y": 270, - "uvlock": true - } - } - ] -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_fence_gate.json b/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_fence_gate.json deleted file mode 100644 index 5e2e5b02..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_fence_gate.json +++ /dev/null @@ -1,80 +0,0 @@ -{ - "variants": { - "facing=south,in_wall=false,open=false": { - "model": "terrestria:block/japanese_maple_fence_gate", - "uvlock": true - }, - "facing=west,in_wall=false,open=false": { - "model": "terrestria:block/japanese_maple_fence_gate", - "uvlock": true, - "y": 90 - }, - "facing=north,in_wall=false,open=false": { - "model": "terrestria:block/japanese_maple_fence_gate", - "uvlock": true, - "y": 180 - }, - "facing=east,in_wall=false,open=false": { - "model": "terrestria:block/japanese_maple_fence_gate", - "uvlock": true, - "y": 270 - }, - "facing=south,in_wall=false,open=true": { - "model": "terrestria:block/japanese_maple_fence_gate_open", - "uvlock": true - }, - "facing=west,in_wall=false,open=true": { - "model": "terrestria:block/japanese_maple_fence_gate_open", - "uvlock": true, - "y": 90 - }, - "facing=north,in_wall=false,open=true": { - "model": "terrestria:block/japanese_maple_fence_gate_open", - "uvlock": true, - "y": 180 - }, - "facing=east,in_wall=false,open=true": { - "model": "terrestria:block/japanese_maple_fence_gate_open", - "uvlock": true, - "y": 270 - }, - "facing=south,in_wall=true,open=false": { - "model": "terrestria:block/japanese_maple_fence_gate_wall", - "uvlock": true - }, - "facing=west,in_wall=true,open=false": { - "model": "terrestria:block/japanese_maple_fence_gate_wall", - "uvlock": true, - "y": 90 - }, - "facing=north,in_wall=true,open=false": { - "model": "terrestria:block/japanese_maple_fence_gate_wall", - "uvlock": true, - "y": 180 - }, - "facing=east,in_wall=true,open=false": { - "model": "terrestria:block/japanese_maple_fence_gate_wall", - "uvlock": true, - "y": 270 - }, - "facing=south,in_wall=true,open=true": { - "model": "terrestria:block/japanese_maple_fence_gate_wall_open", - "uvlock": true - }, - "facing=west,in_wall=true,open=true": { - "model": "terrestria:block/japanese_maple_fence_gate_wall_open", - "uvlock": true, - "y": 90 - }, - "facing=north,in_wall=true,open=true": { - "model": "terrestria:block/japanese_maple_fence_gate_wall_open", - "uvlock": true, - "y": 180 - }, - "facing=east,in_wall=true,open=true": { - "model": "terrestria:block/japanese_maple_fence_gate_wall_open", - "uvlock": true, - "y": 270 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_hanging_sign.json b/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_hanging_sign.json deleted file mode 100644 index 8b67d128..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_hanging_sign.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "terrestria:block/japanese_maple_hanging_sign" } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_leaves.json b/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_leaves.json deleted file mode 100644 index 58275f8c..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_leaves.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/japanese_maple_leaves" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_log.json b/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_log.json deleted file mode 100644 index c725c5fa..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_log.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "variants": { - "axis=x": { - "model": "terrestria:block/japanese_maple_log", - "x": 90, - "y": 90 - }, - "axis=y": { - "model": "terrestria:block/japanese_maple_log" - }, - "axis=z": { - "model": "terrestria:block/japanese_maple_log", - "x": 90 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_planks.json b/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_planks.json deleted file mode 100644 index 6f745115..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_planks.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/japanese_maple_planks" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_pressure_plate.json b/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_pressure_plate.json deleted file mode 100644 index 063b0b6a..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_pressure_plate.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "variants": { - "powered=false": { - "model": "terrestria:block/japanese_maple_pressure_plate" - }, - "powered=true": { - "model": "terrestria:block/japanese_maple_pressure_plate_down" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_sapling.json b/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_sapling.json deleted file mode 100644 index 9b55d2d2..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_sapling.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "variants": { - "stage=0": { - "model": "terrestria:block/japanese_maple_sapling" - }, - "stage=1": { - "model": "terrestria:block/japanese_maple_sapling" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_shrub_leaves.json b/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_shrub_leaves.json deleted file mode 100644 index 09aee0f5..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_shrub_leaves.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/japanese_maple_shrub_leaves" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_shrub_sapling.json b/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_shrub_sapling.json deleted file mode 100644 index 86b4b1b5..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_shrub_sapling.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "variants": { - "stage=0": { - "model": "terrestria:block/japanese_maple_shrub_sapling" - }, - "stage=1": { - "model": "terrestria:block/japanese_maple_shrub_sapling" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_sign.json b/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_sign.json deleted file mode 100644 index ee789257..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_sign.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/japanese_maple_sign" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_slab.json b/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_slab.json deleted file mode 100644 index 683b4177..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_slab.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "type=bottom": { - "model": "terrestria:block/japanese_maple_slab" - }, - "type=top": { - "model": "terrestria:block/japanese_maple_slab_top" - }, - "type=double": { - "model": "terrestria:block/japanese_maple_planks" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_stairs.json b/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_stairs.json deleted file mode 100644 index ffa0c8bd..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_stairs.json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { - "model": "terrestria:block/japanese_maple_stairs" - }, - "facing=west,half=bottom,shape=straight": { - "model": "terrestria:block/japanese_maple_stairs", - "y": 180, - "uvlock": true - }, - "facing=south,half=bottom,shape=straight": { - "model": "terrestria:block/japanese_maple_stairs", - "y": 90, - "uvlock": true - }, - "facing=north,half=bottom,shape=straight": { - "model": "terrestria:block/japanese_maple_stairs", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_right": { - "model": "terrestria:block/japanese_maple_stairs_outer" - }, - "facing=west,half=bottom,shape=outer_right": { - "model": "terrestria:block/japanese_maple_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_right": { - "model": "terrestria:block/japanese_maple_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_right": { - "model": "terrestria:block/japanese_maple_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_left": { - "model": "terrestria:block/japanese_maple_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_left": { - "model": "terrestria:block/japanese_maple_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_left": { - "model": "terrestria:block/japanese_maple_stairs_outer" - }, - "facing=north,half=bottom,shape=outer_left": { - "model": "terrestria:block/japanese_maple_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_right": { - "model": "terrestria:block/japanese_maple_stairs_inner" - }, - "facing=west,half=bottom,shape=inner_right": { - "model": "terrestria:block/japanese_maple_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_right": { - "model": "terrestria:block/japanese_maple_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_right": { - "model": "terrestria:block/japanese_maple_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_left": { - "model": "terrestria:block/japanese_maple_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_left": { - "model": "terrestria:block/japanese_maple_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_left": { - "model": "terrestria:block/japanese_maple_stairs_inner" - }, - "facing=north,half=bottom,shape=inner_left": { - "model": "terrestria:block/japanese_maple_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=east,half=top,shape=straight": { - "model": "terrestria:block/japanese_maple_stairs", - "x": 180, - "uvlock": true - }, - "facing=west,half=top,shape=straight": { - "model": "terrestria:block/japanese_maple_stairs", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=straight": { - "model": "terrestria:block/japanese_maple_stairs", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=north,half=top,shape=straight": { - "model": "terrestria:block/japanese_maple_stairs", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=east,half=top,shape=outer_right": { - "model": "terrestria:block/japanese_maple_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=top,shape=outer_right": { - "model": "terrestria:block/japanese_maple_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=top,shape=outer_right": { - "model": "terrestria:block/japanese_maple_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=north,half=top,shape=outer_right": { - "model": "terrestria:block/japanese_maple_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=outer_left": { - "model": "terrestria:block/japanese_maple_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=west,half=top,shape=outer_left": { - "model": "terrestria:block/japanese_maple_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=outer_left": { - "model": "terrestria:block/japanese_maple_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=north,half=top,shape=outer_left": { - "model": "terrestria:block/japanese_maple_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=east,half=top,shape=inner_right": { - "model": "terrestria:block/japanese_maple_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=top,shape=inner_right": { - "model": "terrestria:block/japanese_maple_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=top,shape=inner_right": { - "model": "terrestria:block/japanese_maple_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=north,half=top,shape=inner_right": { - "model": "terrestria:block/japanese_maple_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=inner_left": { - "model": "terrestria:block/japanese_maple_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_left": { - "model": "terrestria:block/japanese_maple_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=inner_left": { - "model": "terrestria:block/japanese_maple_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=north,half=top,shape=inner_left": { - "model": "terrestria:block/japanese_maple_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_trapdoor.json b/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_trapdoor.json deleted file mode 100644 index 7da1637e..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_trapdoor.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "variants": { - "facing=north,half=bottom,open=false": { - "model": "terrestria:block/japanese_maple_trapdoor_bottom" - }, - "facing=south,half=bottom,open=false": { - "model": "terrestria:block/japanese_maple_trapdoor_bottom", - "y": 180 - }, - "facing=east,half=bottom,open=false": { - "model": "terrestria:block/japanese_maple_trapdoor_bottom", - "y": 90 - }, - "facing=west,half=bottom,open=false": { - "model": "terrestria:block/japanese_maple_trapdoor_bottom", - "y": 270 - }, - "facing=north,half=top,open=false": { - "model": "terrestria:block/japanese_maple_trapdoor_top" - }, - "facing=south,half=top,open=false": { - "model": "terrestria:block/japanese_maple_trapdoor_top", - "y": 180 - }, - "facing=east,half=top,open=false": { - "model": "terrestria:block/japanese_maple_trapdoor_top", - "y": 90 - }, - "facing=west,half=top,open=false": { - "model": "terrestria:block/japanese_maple_trapdoor_top", - "y": 270 - }, - "facing=north,half=bottom,open=true": { - "model": "terrestria:block/japanese_maple_trapdoor_open" - }, - "facing=south,half=bottom,open=true": { - "model": "terrestria:block/japanese_maple_trapdoor_open", - "y": 180 - }, - "facing=east,half=bottom,open=true": { - "model": "terrestria:block/japanese_maple_trapdoor_open", - "y": 90 - }, - "facing=west,half=bottom,open=true": { - "model": "terrestria:block/japanese_maple_trapdoor_open", - "y": 270 - }, - "facing=north,half=top,open=true": { - "model": "terrestria:block/japanese_maple_trapdoor_open", - "x": 180, - "y": 180 - }, - "facing=south,half=top,open=true": { - "model": "terrestria:block/japanese_maple_trapdoor_open", - "x": 180, - "y": 0 - }, - "facing=east,half=top,open=true": { - "model": "terrestria:block/japanese_maple_trapdoor_open", - "x": 180, - "y": 270 - }, - "facing=west,half=top,open=true": { - "model": "terrestria:block/japanese_maple_trapdoor_open", - "x": 180, - "y": 90 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_wall_hanging_sign.json b/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_wall_hanging_sign.json deleted file mode 100644 index 8b67d128..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_wall_hanging_sign.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "terrestria:block/japanese_maple_hanging_sign" } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_wall_sign.json b/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_wall_sign.json deleted file mode 100644 index ee789257..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_wall_sign.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/japanese_maple_sign" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_wood.json b/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_wood.json deleted file mode 100644 index 8513036d..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/japanese_maple_wood.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "variants": { - "axis=x": { - "model": "terrestria:block/japanese_maple_wood", - "x": 90, - "y": 90 - }, - "axis=y": { - "model": "terrestria:block/japanese_maple_wood" - }, - "axis=z": { - "model": "terrestria:block/japanese_maple_wood", - "x": 90 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/jungle_palm_leaves.json b/client/src/main/resources/assets/terrestria/blockstates/jungle_palm_leaves.json deleted file mode 100644 index b567a113..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/jungle_palm_leaves.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/jungle_palm_leaves" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/jungle_palm_sapling.json b/client/src/main/resources/assets/terrestria/blockstates/jungle_palm_sapling.json deleted file mode 100644 index 919a916f..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/jungle_palm_sapling.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "variants": { - "stage=0": { - "model": "terrestria:block/jungle_palm_sapling" - }, - "stage=1": { - "model": "terrestria:block/jungle_palm_sapling" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/monsteras.json b/client/src/main/resources/assets/terrestria/blockstates/monsteras.json deleted file mode 100644 index 1db163f9..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/monsteras.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/monsteras" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/mossy_basalt_brick_slab.json b/client/src/main/resources/assets/terrestria/blockstates/mossy_basalt_brick_slab.json deleted file mode 100644 index b4b8e5fd..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/mossy_basalt_brick_slab.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "type=bottom": { - "model": "terrestria:block/mossy_basalt_brick_slab" - }, - "type=top": { - "model": "terrestria:block/mossy_basalt_brick_slab_top" - }, - "type=double": { - "model": "terrestria:block/mossy_basalt_bricks" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/mossy_basalt_brick_stairs.json b/client/src/main/resources/assets/terrestria/blockstates/mossy_basalt_brick_stairs.json deleted file mode 100644 index 2b649c07..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/mossy_basalt_brick_stairs.json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { - "model": "terrestria:block/mossy_basalt_brick_stairs" - }, - "facing=west,half=bottom,shape=straight": { - "model": "terrestria:block/mossy_basalt_brick_stairs", - "y": 180, - "uvlock": true - }, - "facing=south,half=bottom,shape=straight": { - "model": "terrestria:block/mossy_basalt_brick_stairs", - "y": 90, - "uvlock": true - }, - "facing=north,half=bottom,shape=straight": { - "model": "terrestria:block/mossy_basalt_brick_stairs", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_right": { - "model": "terrestria:block/mossy_basalt_brick_stairs_outer" - }, - "facing=west,half=bottom,shape=outer_right": { - "model": "terrestria:block/mossy_basalt_brick_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_right": { - "model": "terrestria:block/mossy_basalt_brick_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_right": { - "model": "terrestria:block/mossy_basalt_brick_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_left": { - "model": "terrestria:block/mossy_basalt_brick_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_left": { - "model": "terrestria:block/mossy_basalt_brick_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_left": { - "model": "terrestria:block/mossy_basalt_brick_stairs_outer" - }, - "facing=north,half=bottom,shape=outer_left": { - "model": "terrestria:block/mossy_basalt_brick_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_right": { - "model": "terrestria:block/mossy_basalt_brick_stairs_inner" - }, - "facing=west,half=bottom,shape=inner_right": { - "model": "terrestria:block/mossy_basalt_brick_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_right": { - "model": "terrestria:block/mossy_basalt_brick_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_right": { - "model": "terrestria:block/mossy_basalt_brick_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_left": { - "model": "terrestria:block/mossy_basalt_brick_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_left": { - "model": "terrestria:block/mossy_basalt_brick_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_left": { - "model": "terrestria:block/mossy_basalt_brick_stairs_inner" - }, - "facing=north,half=bottom,shape=inner_left": { - "model": "terrestria:block/mossy_basalt_brick_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=east,half=top,shape=straight": { - "model": "terrestria:block/mossy_basalt_brick_stairs", - "x": 180, - "uvlock": true - }, - "facing=west,half=top,shape=straight": { - "model": "terrestria:block/mossy_basalt_brick_stairs", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=straight": { - "model": "terrestria:block/mossy_basalt_brick_stairs", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=north,half=top,shape=straight": { - "model": "terrestria:block/mossy_basalt_brick_stairs", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=east,half=top,shape=outer_right": { - "model": "terrestria:block/mossy_basalt_brick_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=top,shape=outer_right": { - "model": "terrestria:block/mossy_basalt_brick_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=top,shape=outer_right": { - "model": "terrestria:block/mossy_basalt_brick_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=north,half=top,shape=outer_right": { - "model": "terrestria:block/mossy_basalt_brick_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=outer_left": { - "model": "terrestria:block/mossy_basalt_brick_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=west,half=top,shape=outer_left": { - "model": "terrestria:block/mossy_basalt_brick_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=outer_left": { - "model": "terrestria:block/mossy_basalt_brick_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=north,half=top,shape=outer_left": { - "model": "terrestria:block/mossy_basalt_brick_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=east,half=top,shape=inner_right": { - "model": "terrestria:block/mossy_basalt_brick_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=top,shape=inner_right": { - "model": "terrestria:block/mossy_basalt_brick_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=top,shape=inner_right": { - "model": "terrestria:block/mossy_basalt_brick_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=north,half=top,shape=inner_right": { - "model": "terrestria:block/mossy_basalt_brick_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=inner_left": { - "model": "terrestria:block/mossy_basalt_brick_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_left": { - "model": "terrestria:block/mossy_basalt_brick_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=inner_left": { - "model": "terrestria:block/mossy_basalt_brick_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=north,half=top,shape=inner_left": { - "model": "terrestria:block/mossy_basalt_brick_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/mossy_basalt_brick_wall.json b/client/src/main/resources/assets/terrestria/blockstates/mossy_basalt_brick_wall.json deleted file mode 100644 index ee0a5529..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/mossy_basalt_brick_wall.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "multipart": [ - { - "when": { - "up": "true" - }, - "apply": { - "model": "terrestria:block/mossy_basalt_brick_wall_post" - } - }, - { - "when": { - "north": "low" - }, - "apply": { - "model": "terrestria:block/mossy_basalt_brick_wall_side", - "uvlock": true - } - }, - { - "when": { - "east": "low" - }, - "apply": { - "model": "terrestria:block/mossy_basalt_brick_wall_side", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "low" - }, - "apply": { - "model": "terrestria:block/mossy_basalt_brick_wall_side", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "low" - }, - "apply": { - "model": "terrestria:block/mossy_basalt_brick_wall_side", - "y": 270, - "uvlock": true - } - }, - { - "when": { - "north": "tall" - }, - "apply": { - "model": "terrestria:block/mossy_basalt_brick_wall_side_tall", - "uvlock": true - } - }, - { - "when": { - "east": "tall" - }, - "apply": { - "model": "terrestria:block/mossy_basalt_brick_wall_side_tall", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "tall" - }, - "apply": { - "model": "terrestria:block/mossy_basalt_brick_wall_side_tall", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "tall" - }, - "apply": { - "model": "terrestria:block/mossy_basalt_brick_wall_side_tall", - "y": 270, - "uvlock": true - } - } - ] -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/mossy_basalt_bricks.json b/client/src/main/resources/assets/terrestria/blockstates/mossy_basalt_bricks.json deleted file mode 100644 index b4a48dee..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/mossy_basalt_bricks.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/mossy_basalt_bricks" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/mossy_basalt_cobblestone.json b/client/src/main/resources/assets/terrestria/blockstates/mossy_basalt_cobblestone.json deleted file mode 100644 index 1df5b40a..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/mossy_basalt_cobblestone.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/mossy_basalt_cobblestone" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/mossy_basalt_cobblestone_slab.json b/client/src/main/resources/assets/terrestria/blockstates/mossy_basalt_cobblestone_slab.json deleted file mode 100644 index 97a4a3ad..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/mossy_basalt_cobblestone_slab.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "type=bottom": { - "model": "terrestria:block/mossy_basalt_cobblestone_slab" - }, - "type=top": { - "model": "terrestria:block/mossy_basalt_cobblestone_slab_top" - }, - "type=double": { - "model": "terrestria:block/mossy_basalt_cobblestone" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/mossy_basalt_cobblestone_stairs.json b/client/src/main/resources/assets/terrestria/blockstates/mossy_basalt_cobblestone_stairs.json deleted file mode 100644 index 44a4f39f..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/mossy_basalt_cobblestone_stairs.json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { - "model": "terrestria:block/mossy_basalt_cobblestone_stairs" - }, - "facing=west,half=bottom,shape=straight": { - "model": "terrestria:block/mossy_basalt_cobblestone_stairs", - "y": 180, - "uvlock": true - }, - "facing=south,half=bottom,shape=straight": { - "model": "terrestria:block/mossy_basalt_cobblestone_stairs", - "y": 90, - "uvlock": true - }, - "facing=north,half=bottom,shape=straight": { - "model": "terrestria:block/mossy_basalt_cobblestone_stairs", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_right": { - "model": "terrestria:block/mossy_basalt_cobblestone_stairs_outer" - }, - "facing=west,half=bottom,shape=outer_right": { - "model": "terrestria:block/mossy_basalt_cobblestone_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_right": { - "model": "terrestria:block/mossy_basalt_cobblestone_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_right": { - "model": "terrestria:block/mossy_basalt_cobblestone_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_left": { - "model": "terrestria:block/mossy_basalt_cobblestone_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_left": { - "model": "terrestria:block/mossy_basalt_cobblestone_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_left": { - "model": "terrestria:block/mossy_basalt_cobblestone_stairs_outer" - }, - "facing=north,half=bottom,shape=outer_left": { - "model": "terrestria:block/mossy_basalt_cobblestone_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_right": { - "model": "terrestria:block/mossy_basalt_cobblestone_stairs_inner" - }, - "facing=west,half=bottom,shape=inner_right": { - "model": "terrestria:block/mossy_basalt_cobblestone_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_right": { - "model": "terrestria:block/mossy_basalt_cobblestone_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_right": { - "model": "terrestria:block/mossy_basalt_cobblestone_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_left": { - "model": "terrestria:block/mossy_basalt_cobblestone_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_left": { - "model": "terrestria:block/mossy_basalt_cobblestone_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_left": { - "model": "terrestria:block/mossy_basalt_cobblestone_stairs_inner" - }, - "facing=north,half=bottom,shape=inner_left": { - "model": "terrestria:block/mossy_basalt_cobblestone_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=east,half=top,shape=straight": { - "model": "terrestria:block/mossy_basalt_cobblestone_stairs", - "x": 180, - "uvlock": true - }, - "facing=west,half=top,shape=straight": { - "model": "terrestria:block/mossy_basalt_cobblestone_stairs", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=straight": { - "model": "terrestria:block/mossy_basalt_cobblestone_stairs", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=north,half=top,shape=straight": { - "model": "terrestria:block/mossy_basalt_cobblestone_stairs", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=east,half=top,shape=outer_right": { - "model": "terrestria:block/mossy_basalt_cobblestone_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=top,shape=outer_right": { - "model": "terrestria:block/mossy_basalt_cobblestone_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=top,shape=outer_right": { - "model": "terrestria:block/mossy_basalt_cobblestone_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=north,half=top,shape=outer_right": { - "model": "terrestria:block/mossy_basalt_cobblestone_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=outer_left": { - "model": "terrestria:block/mossy_basalt_cobblestone_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=west,half=top,shape=outer_left": { - "model": "terrestria:block/mossy_basalt_cobblestone_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=outer_left": { - "model": "terrestria:block/mossy_basalt_cobblestone_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=north,half=top,shape=outer_left": { - "model": "terrestria:block/mossy_basalt_cobblestone_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=east,half=top,shape=inner_right": { - "model": "terrestria:block/mossy_basalt_cobblestone_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=top,shape=inner_right": { - "model": "terrestria:block/mossy_basalt_cobblestone_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=top,shape=inner_right": { - "model": "terrestria:block/mossy_basalt_cobblestone_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=north,half=top,shape=inner_right": { - "model": "terrestria:block/mossy_basalt_cobblestone_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=inner_left": { - "model": "terrestria:block/mossy_basalt_cobblestone_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_left": { - "model": "terrestria:block/mossy_basalt_cobblestone_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=inner_left": { - "model": "terrestria:block/mossy_basalt_cobblestone_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=north,half=top,shape=inner_left": { - "model": "terrestria:block/mossy_basalt_cobblestone_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/mossy_basalt_cobblestone_wall.json b/client/src/main/resources/assets/terrestria/blockstates/mossy_basalt_cobblestone_wall.json deleted file mode 100644 index 4b17294f..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/mossy_basalt_cobblestone_wall.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "multipart": [ - { - "when": { - "up": "true" - }, - "apply": { - "model": "terrestria:block/mossy_basalt_cobblestone_wall_post" - } - }, - { - "when": { - "north": "low" - }, - "apply": { - "model": "terrestria:block/mossy_basalt_cobblestone_wall_side", - "uvlock": true - } - }, - { - "when": { - "east": "low" - }, - "apply": { - "model": "terrestria:block/mossy_basalt_cobblestone_wall_side", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "low" - }, - "apply": { - "model": "terrestria:block/mossy_basalt_cobblestone_wall_side", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "low" - }, - "apply": { - "model": "terrestria:block/mossy_basalt_cobblestone_wall_side", - "y": 270, - "uvlock": true - } - }, - { - "when": { - "north": "tall" - }, - "apply": { - "model": "terrestria:block/mossy_basalt_cobblestone_wall_side_tall", - "uvlock": true - } - }, - { - "when": { - "east": "tall" - }, - "apply": { - "model": "terrestria:block/mossy_basalt_cobblestone_wall_side_tall", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "tall" - }, - "apply": { - "model": "terrestria:block/mossy_basalt_cobblestone_wall_side_tall", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "tall" - }, - "apply": { - "model": "terrestria:block/mossy_basalt_cobblestone_wall_side_tall", - "y": 270, - "uvlock": true - } - } - ] -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/potted_agave.json b/client/src/main/resources/assets/terrestria/blockstates/potted_agave.json deleted file mode 100644 index 144c6018..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/potted_agave.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/potted_agave" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/potted_aloe_vera.json b/client/src/main/resources/assets/terrestria/blockstates/potted_aloe_vera.json deleted file mode 100644 index 8a3ea91b..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/potted_aloe_vera.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/potted_aloe_vera" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/potted_bryce_sapling.json b/client/src/main/resources/assets/terrestria/blockstates/potted_bryce_sapling.json deleted file mode 100644 index 77e088b2..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/potted_bryce_sapling.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/potted_bryce_sapling" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/potted_cypress_sapling.json b/client/src/main/resources/assets/terrestria/blockstates/potted_cypress_sapling.json deleted file mode 100644 index 11e2ff3a..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/potted_cypress_sapling.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/potted_cypress_sapling" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/potted_dark_japanese_maple_sapling.json b/client/src/main/resources/assets/terrestria/blockstates/potted_dark_japanese_maple_sapling.json deleted file mode 100644 index b9429f2d..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/potted_dark_japanese_maple_sapling.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/potted_dark_japanese_maple_sapling" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/potted_hemlock_sapling.json b/client/src/main/resources/assets/terrestria/blockstates/potted_hemlock_sapling.json deleted file mode 100644 index c4a6df44..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/potted_hemlock_sapling.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/potted_hemlock_sapling" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/potted_indian_paintbrush.json b/client/src/main/resources/assets/terrestria/blockstates/potted_indian_paintbrush.json deleted file mode 100644 index ed16fd6c..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/potted_indian_paintbrush.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/potted_indian_paintbrush" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/potted_japanese_maple_sapling.json b/client/src/main/resources/assets/terrestria/blockstates/potted_japanese_maple_sapling.json deleted file mode 100644 index ae4ba5e8..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/potted_japanese_maple_sapling.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/potted_japanese_maple_sapling" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/potted_japanese_maple_shrub_sapling.json b/client/src/main/resources/assets/terrestria/blockstates/potted_japanese_maple_shrub_sapling.json deleted file mode 100644 index 71fe2a9e..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/potted_japanese_maple_shrub_sapling.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/potted_japanese_maple_shrub_sapling" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/potted_jungle_palm_sapling.json b/client/src/main/resources/assets/terrestria/blockstates/potted_jungle_palm_sapling.json deleted file mode 100644 index 2373147b..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/potted_jungle_palm_sapling.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/potted_jungle_palm_sapling" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/potted_monsteras.json b/client/src/main/resources/assets/terrestria/blockstates/potted_monsteras.json deleted file mode 100644 index fbdc1df5..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/potted_monsteras.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/potted_monsteras" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/potted_rainbow_eucalyptus_sapling.json b/client/src/main/resources/assets/terrestria/blockstates/potted_rainbow_eucalyptus_sapling.json deleted file mode 100644 index 82614ebc..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/potted_rainbow_eucalyptus_sapling.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/potted_rainbow_eucalyptus_sapling" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/potted_redwood_sapling.json b/client/src/main/resources/assets/terrestria/blockstates/potted_redwood_sapling.json deleted file mode 100644 index 577e03c5..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/potted_redwood_sapling.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/potted_redwood_sapling" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/potted_rubber_sapling.json b/client/src/main/resources/assets/terrestria/blockstates/potted_rubber_sapling.json deleted file mode 100644 index 4976eead..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/potted_rubber_sapling.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/potted_rubber_sapling" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/potted_saguaro_cactus_sapling.json b/client/src/main/resources/assets/terrestria/blockstates/potted_saguaro_cactus_sapling.json deleted file mode 100644 index d6437985..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/potted_saguaro_cactus_sapling.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/potted_saguaro_cactus_sapling" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/potted_sakura_sapling.json b/client/src/main/resources/assets/terrestria/blockstates/potted_sakura_sapling.json deleted file mode 100644 index bac66b73..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/potted_sakura_sapling.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/potted_sakura_sapling" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/potted_tiny_cactus.json b/client/src/main/resources/assets/terrestria/blockstates/potted_tiny_cactus.json deleted file mode 100644 index 9241eb8d..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/potted_tiny_cactus.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/potted_tiny_cactus" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/potted_willow_sapling.json b/client/src/main/resources/assets/terrestria/blockstates/potted_willow_sapling.json deleted file mode 100644 index 1e261af8..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/potted_willow_sapling.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/potted_willow_sapling" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/potted_yucca_palm_sapling.json b/client/src/main/resources/assets/terrestria/blockstates/potted_yucca_palm_sapling.json deleted file mode 100644 index 9110940a..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/potted_yucca_palm_sapling.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/potted_yucca_palm_sapling" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_button.json b/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_button.json deleted file mode 100644 index ceed8c0c..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_button.json +++ /dev/null @@ -1,118 +0,0 @@ -{ - "variants": { - "face=floor,facing=east,powered=false": { - "model": "terrestria:block/rainbow_eucalyptus_button", - "y": 90 - }, - "face=floor,facing=west,powered=false": { - "model": "terrestria:block/rainbow_eucalyptus_button", - "y": 270 - }, - "face=floor,facing=south,powered=false": { - "model": "terrestria:block/rainbow_eucalyptus_button", - "y": 180 - }, - "face=floor,facing=north,powered=false": { - "model": "terrestria:block/rainbow_eucalyptus_button" - }, - "face=wall,facing=east,powered=false": { - "model": "terrestria:block/rainbow_eucalyptus_button", - "uvlock": true, - "x": 90, - "y": 90 - }, - "face=wall,facing=west,powered=false": { - "model": "terrestria:block/rainbow_eucalyptus_button", - "uvlock": true, - "x": 90, - "y": 270 - }, - "face=wall,facing=south,powered=false": { - "model": "terrestria:block/rainbow_eucalyptus_button", - "uvlock": true, - "x": 90, - "y": 180 - }, - "face=wall,facing=north,powered=false": { - "model": "terrestria:block/rainbow_eucalyptus_button", - "uvlock": true, - "x": 90 - }, - "face=ceiling,facing=east,powered=false": { - "model": "terrestria:block/rainbow_eucalyptus_button", - "x": 180, - "y": 270 - }, - "face=ceiling,facing=west,powered=false": { - "model": "terrestria:block/rainbow_eucalyptus_button", - "x": 180, - "y": 90 - }, - "face=ceiling,facing=south,powered=false": { - "model": "terrestria:block/rainbow_eucalyptus_button", - "x": 180 - }, - "face=ceiling,facing=north,powered=false": { - "model": "terrestria:block/rainbow_eucalyptus_button", - "x": 180, - "y": 180 - }, - "face=floor,facing=east,powered=true": { - "model": "terrestria:block/rainbow_eucalyptus_button_pressed", - "y": 90 - }, - "face=floor,facing=west,powered=true": { - "model": "terrestria:block/rainbow_eucalyptus_button_pressed", - "y": 270 - }, - "face=floor,facing=south,powered=true": { - "model": "terrestria:block/rainbow_eucalyptus_button_pressed", - "y": 180 - }, - "face=floor,facing=north,powered=true": { - "model": "terrestria:block/rainbow_eucalyptus_button_pressed" - }, - "face=wall,facing=east,powered=true": { - "model": "terrestria:block/rainbow_eucalyptus_button_pressed", - "uvlock": true, - "x": 90, - "y": 90 - }, - "face=wall,facing=west,powered=true": { - "model": "terrestria:block/rainbow_eucalyptus_button_pressed", - "uvlock": true, - "x": 90, - "y": 270 - }, - "face=wall,facing=south,powered=true": { - "model": "terrestria:block/rainbow_eucalyptus_button_pressed", - "uvlock": true, - "x": 90, - "y": 180 - }, - "face=wall,facing=north,powered=true": { - "model": "terrestria:block/rainbow_eucalyptus_button_pressed", - "uvlock": true, - "x": 90 - }, - "face=ceiling,facing=east,powered=true": { - "model": "terrestria:block/rainbow_eucalyptus_button_pressed", - "x": 180, - "y": 270 - }, - "face=ceiling,facing=west,powered=true": { - "model": "terrestria:block/rainbow_eucalyptus_button_pressed", - "x": 180, - "y": 90 - }, - "face=ceiling,facing=south,powered=true": { - "model": "terrestria:block/rainbow_eucalyptus_button_pressed", - "x": 180 - }, - "face=ceiling,facing=north,powered=true": { - "model": "terrestria:block/rainbow_eucalyptus_button_pressed", - "x": 180, - "y": 180 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_door.json b/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_door.json deleted file mode 100644 index 67c26aa7..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_door.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "variants": { - "facing=east,half=lower,hinge=left,open=false": { "model": "terrestria:block/rainbow_eucalyptus_door_bottom_left" }, - "facing=east,half=lower,hinge=left,open=true": { "model": "terrestria:block/rainbow_eucalyptus_door_bottom_left_open", "y": 90 }, - "facing=east,half=lower,hinge=right,open=false": { "model": "terrestria:block/rainbow_eucalyptus_door_bottom_right" }, - "facing=east,half=lower,hinge=right,open=true": { "model": "terrestria:block/rainbow_eucalyptus_door_bottom_right_open", "y": 270 }, - "facing=east,half=upper,hinge=left,open=false": { "model": "terrestria:block/rainbow_eucalyptus_door_top_left" }, - "facing=east,half=upper,hinge=left,open=true": { "model": "terrestria:block/rainbow_eucalyptus_door_top_left_open", "y": 90 }, - "facing=east,half=upper,hinge=right,open=false": { "model": "terrestria:block/rainbow_eucalyptus_door_top_right" }, - "facing=east,half=upper,hinge=right,open=true": { "model": "terrestria:block/rainbow_eucalyptus_door_top_right_open", "y": 270 }, - "facing=north,half=lower,hinge=left,open=false": { "model": "terrestria:block/rainbow_eucalyptus_door_bottom_left", "y": 270 }, - "facing=north,half=lower,hinge=left,open=true": { "model": "terrestria:block/rainbow_eucalyptus_door_bottom_left_open" }, - "facing=north,half=lower,hinge=right,open=false": { "model": "terrestria:block/rainbow_eucalyptus_door_bottom_right", "y": 270 }, - "facing=north,half=lower,hinge=right,open=true": { "model": "terrestria:block/rainbow_eucalyptus_door_bottom_right_open", "y": 180 }, - "facing=north,half=upper,hinge=left,open=false": { "model": "terrestria:block/rainbow_eucalyptus_door_top_left", "y": 270 }, - "facing=north,half=upper,hinge=left,open=true": { "model": "terrestria:block/rainbow_eucalyptus_door_top_left_open" }, - "facing=north,half=upper,hinge=right,open=false": { "model": "terrestria:block/rainbow_eucalyptus_door_top_right", "y": 270 }, - "facing=north,half=upper,hinge=right,open=true": { "model": "terrestria:block/rainbow_eucalyptus_door_top_right_open", "y": 180 }, - "facing=south,half=lower,hinge=left,open=false": { "model": "terrestria:block/rainbow_eucalyptus_door_bottom_left", "y": 90 }, - "facing=south,half=lower,hinge=left,open=true": { "model": "terrestria:block/rainbow_eucalyptus_door_bottom_left_open", "y": 180 }, - "facing=south,half=lower,hinge=right,open=false": { "model": "terrestria:block/rainbow_eucalyptus_door_bottom_right", "y": 90 }, - "facing=south,half=lower,hinge=right,open=true": { "model": "terrestria:block/rainbow_eucalyptus_door_bottom_right_open" }, - "facing=south,half=upper,hinge=left,open=false": { "model": "terrestria:block/rainbow_eucalyptus_door_top_left", "y": 90 }, - "facing=south,half=upper,hinge=left,open=true": { "model": "terrestria:block/rainbow_eucalyptus_door_top_left_open", "y": 180 }, - "facing=south,half=upper,hinge=right,open=false": { "model": "terrestria:block/rainbow_eucalyptus_door_top_right", "y": 90 }, - "facing=south,half=upper,hinge=right,open=true": { "model": "terrestria:block/rainbow_eucalyptus_door_top_right_open" }, - "facing=west,half=lower,hinge=left,open=false": { "model": "terrestria:block/rainbow_eucalyptus_door_bottom_left", "y": 180 }, - "facing=west,half=lower,hinge=left,open=true": { "model": "terrestria:block/rainbow_eucalyptus_door_bottom_left_open", "y": 270 }, - "facing=west,half=lower,hinge=right,open=false": { "model": "terrestria:block/rainbow_eucalyptus_door_bottom_right", "y": 180 }, - "facing=west,half=lower,hinge=right,open=true": { "model": "terrestria:block/rainbow_eucalyptus_door_bottom_right_open", "y": 90 }, - "facing=west,half=upper,hinge=left,open=false": { "model": "terrestria:block/rainbow_eucalyptus_door_top_left", "y": 180 }, - "facing=west,half=upper,hinge=left,open=true": { "model": "terrestria:block/rainbow_eucalyptus_door_top_left_open", "y": 270 }, - "facing=west,half=upper,hinge=right,open=false": { "model": "terrestria:block/rainbow_eucalyptus_door_top_right", "y": 180 }, - "facing=west,half=upper,hinge=right,open=true": { "model": "terrestria:block/rainbow_eucalyptus_door_top_right_open", "y": 90 } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_fence.json b/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_fence.json deleted file mode 100644 index c0700cc1..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_fence.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "multipart": [ - { - "apply": { - "model": "terrestria:block/rainbow_eucalyptus_fence_post" - } - }, - { - "when": { - "north": "true" - }, - "apply": { - "model": "terrestria:block/rainbow_eucalyptus_fence_side", - "uvlock": true - } - }, - { - "when": { - "east": "true" - }, - "apply": { - "model": "terrestria:block/rainbow_eucalyptus_fence_side", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "true" - }, - "apply": { - "model": "terrestria:block/rainbow_eucalyptus_fence_side", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "true" - }, - "apply": { - "model": "terrestria:block/rainbow_eucalyptus_fence_side", - "y": 270, - "uvlock": true - } - } - ] -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_fence_gate.json b/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_fence_gate.json deleted file mode 100644 index f326bf1f..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_fence_gate.json +++ /dev/null @@ -1,80 +0,0 @@ -{ - "variants": { - "facing=south,in_wall=false,open=false": { - "model": "terrestria:block/rainbow_eucalyptus_fence_gate", - "uvlock": true - }, - "facing=west,in_wall=false,open=false": { - "model": "terrestria:block/rainbow_eucalyptus_fence_gate", - "uvlock": true, - "y": 90 - }, - "facing=north,in_wall=false,open=false": { - "model": "terrestria:block/rainbow_eucalyptus_fence_gate", - "uvlock": true, - "y": 180 - }, - "facing=east,in_wall=false,open=false": { - "model": "terrestria:block/rainbow_eucalyptus_fence_gate", - "uvlock": true, - "y": 270 - }, - "facing=south,in_wall=false,open=true": { - "model": "terrestria:block/rainbow_eucalyptus_fence_gate_open", - "uvlock": true - }, - "facing=west,in_wall=false,open=true": { - "model": "terrestria:block/rainbow_eucalyptus_fence_gate_open", - "uvlock": true, - "y": 90 - }, - "facing=north,in_wall=false,open=true": { - "model": "terrestria:block/rainbow_eucalyptus_fence_gate_open", - "uvlock": true, - "y": 180 - }, - "facing=east,in_wall=false,open=true": { - "model": "terrestria:block/rainbow_eucalyptus_fence_gate_open", - "uvlock": true, - "y": 270 - }, - "facing=south,in_wall=true,open=false": { - "model": "terrestria:block/rainbow_eucalyptus_fence_gate_wall", - "uvlock": true - }, - "facing=west,in_wall=true,open=false": { - "model": "terrestria:block/rainbow_eucalyptus_fence_gate_wall", - "uvlock": true, - "y": 90 - }, - "facing=north,in_wall=true,open=false": { - "model": "terrestria:block/rainbow_eucalyptus_fence_gate_wall", - "uvlock": true, - "y": 180 - }, - "facing=east,in_wall=true,open=false": { - "model": "terrestria:block/rainbow_eucalyptus_fence_gate_wall", - "uvlock": true, - "y": 270 - }, - "facing=south,in_wall=true,open=true": { - "model": "terrestria:block/rainbow_eucalyptus_fence_gate_wall_open", - "uvlock": true - }, - "facing=west,in_wall=true,open=true": { - "model": "terrestria:block/rainbow_eucalyptus_fence_gate_wall_open", - "uvlock": true, - "y": 90 - }, - "facing=north,in_wall=true,open=true": { - "model": "terrestria:block/rainbow_eucalyptus_fence_gate_wall_open", - "uvlock": true, - "y": 180 - }, - "facing=east,in_wall=true,open=true": { - "model": "terrestria:block/rainbow_eucalyptus_fence_gate_wall_open", - "uvlock": true, - "y": 270 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_hanging_sign.json b/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_hanging_sign.json deleted file mode 100644 index 99f67c13..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_hanging_sign.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "terrestria:block/rainbow_eucalyptus_hanging_sign" } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_leaves.json b/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_leaves.json deleted file mode 100644 index b10bde78..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_leaves.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/rainbow_eucalyptus_leaves" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_log.json b/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_log.json deleted file mode 100644 index 45349961..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_log.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "variants": { - "axis=x": { - "model": "terrestria:block/rainbow_eucalyptus_log", - "x": 90, - "y": 90 - }, - "axis=y": { - "model": "terrestria:block/rainbow_eucalyptus_log" - }, - "axis=z": { - "model": "terrestria:block/rainbow_eucalyptus_log", - "x": 90 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_planks.json b/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_planks.json deleted file mode 100644 index 88f76b28..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_planks.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/rainbow_eucalyptus_planks" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_pressure_plate.json b/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_pressure_plate.json deleted file mode 100644 index 3a6aac79..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_pressure_plate.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "variants": { - "powered=false": { - "model": "terrestria:block/rainbow_eucalyptus_pressure_plate" - }, - "powered=true": { - "model": "terrestria:block/rainbow_eucalyptus_pressure_plate_down" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_quarter_log.json b/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_quarter_log.json deleted file mode 100644 index 9758a240..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_quarter_log.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "variants": { - "axis=x,bark_side=southwest": { - "model": "terrestria:block/rainbow_eucalyptus_quarter_log", - "x": 90, - "y": 270 - }, - "axis=x,bark_side=northwest": { - "model": "terrestria:block/rainbow_eucalyptus_quarter_log", - "x": 90, - "y": 90 - }, - "axis=x,bark_side=northeast": { - "model": "terrestria:block/rainbow_eucalyptus_quarter_log", - "x": 270, - "y": 90 - }, - "axis=x,bark_side=southeast": { - "model": "terrestria:block/rainbow_eucalyptus_quarter_log", - "x": 270, - "y": 270 - }, - "axis=y,bark_side=southwest": { - "model": "terrestria:block/rainbow_eucalyptus_quarter_log" - }, - "axis=y,bark_side=northwest": { - "model": "terrestria:block/rainbow_eucalyptus_quarter_log", - "y": 90 - }, - "axis=y,bark_side=northeast": { - "model": "terrestria:block/rainbow_eucalyptus_quarter_log", - "y": 180 - }, - "axis=y,bark_side=southeast": { - "model": "terrestria:block/rainbow_eucalyptus_quarter_log", - "y": 270 - }, - "axis=z,bark_side=southwest": { - "model": "terrestria:block/rainbow_eucalyptus_quarter_log", - "x": 90 - }, - "axis=z,bark_side=northwest": { - "model": "terrestria:block/rainbow_eucalyptus_quarter_log", - "x": 270 - }, - "axis=z,bark_side=northeast": { - "model": "terrestria:block/rainbow_eucalyptus_quarter_log", - "x": 270, - "y": 180 - }, - "axis=z,bark_side=southeast": { - "model": "terrestria:block/rainbow_eucalyptus_quarter_log", - "x": 90, - "y": 180 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_sapling.json b/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_sapling.json deleted file mode 100644 index adad0f04..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_sapling.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "variants": { - "stage=0": { - "model": "terrestria:block/rainbow_eucalyptus_sapling" - }, - "stage=1": { - "model": "terrestria:block/rainbow_eucalyptus_sapling" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_sign.json b/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_sign.json deleted file mode 100644 index 644298ea..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_sign.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/rainbow_eucalyptus_sign" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_slab.json b/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_slab.json deleted file mode 100644 index 14c9ce8a..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_slab.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "type=bottom": { - "model": "terrestria:block/rainbow_eucalyptus_slab" - }, - "type=top": { - "model": "terrestria:block/rainbow_eucalyptus_slab_top" - }, - "type=double": { - "model": "terrestria:block/rainbow_eucalyptus_planks" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_stairs.json b/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_stairs.json deleted file mode 100644 index 0b1d3fc5..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_stairs.json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { - "model": "terrestria:block/rainbow_eucalyptus_stairs" - }, - "facing=west,half=bottom,shape=straight": { - "model": "terrestria:block/rainbow_eucalyptus_stairs", - "y": 180, - "uvlock": true - }, - "facing=south,half=bottom,shape=straight": { - "model": "terrestria:block/rainbow_eucalyptus_stairs", - "y": 90, - "uvlock": true - }, - "facing=north,half=bottom,shape=straight": { - "model": "terrestria:block/rainbow_eucalyptus_stairs", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_right": { - "model": "terrestria:block/rainbow_eucalyptus_stairs_outer" - }, - "facing=west,half=bottom,shape=outer_right": { - "model": "terrestria:block/rainbow_eucalyptus_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_right": { - "model": "terrestria:block/rainbow_eucalyptus_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_right": { - "model": "terrestria:block/rainbow_eucalyptus_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_left": { - "model": "terrestria:block/rainbow_eucalyptus_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_left": { - "model": "terrestria:block/rainbow_eucalyptus_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_left": { - "model": "terrestria:block/rainbow_eucalyptus_stairs_outer" - }, - "facing=north,half=bottom,shape=outer_left": { - "model": "terrestria:block/rainbow_eucalyptus_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_right": { - "model": "terrestria:block/rainbow_eucalyptus_stairs_inner" - }, - "facing=west,half=bottom,shape=inner_right": { - "model": "terrestria:block/rainbow_eucalyptus_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_right": { - "model": "terrestria:block/rainbow_eucalyptus_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_right": { - "model": "terrestria:block/rainbow_eucalyptus_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_left": { - "model": "terrestria:block/rainbow_eucalyptus_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_left": { - "model": "terrestria:block/rainbow_eucalyptus_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_left": { - "model": "terrestria:block/rainbow_eucalyptus_stairs_inner" - }, - "facing=north,half=bottom,shape=inner_left": { - "model": "terrestria:block/rainbow_eucalyptus_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=east,half=top,shape=straight": { - "model": "terrestria:block/rainbow_eucalyptus_stairs", - "x": 180, - "uvlock": true - }, - "facing=west,half=top,shape=straight": { - "model": "terrestria:block/rainbow_eucalyptus_stairs", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=straight": { - "model": "terrestria:block/rainbow_eucalyptus_stairs", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=north,half=top,shape=straight": { - "model": "terrestria:block/rainbow_eucalyptus_stairs", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=east,half=top,shape=outer_right": { - "model": "terrestria:block/rainbow_eucalyptus_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=top,shape=outer_right": { - "model": "terrestria:block/rainbow_eucalyptus_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=top,shape=outer_right": { - "model": "terrestria:block/rainbow_eucalyptus_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=north,half=top,shape=outer_right": { - "model": "terrestria:block/rainbow_eucalyptus_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=outer_left": { - "model": "terrestria:block/rainbow_eucalyptus_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=west,half=top,shape=outer_left": { - "model": "terrestria:block/rainbow_eucalyptus_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=outer_left": { - "model": "terrestria:block/rainbow_eucalyptus_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=north,half=top,shape=outer_left": { - "model": "terrestria:block/rainbow_eucalyptus_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=east,half=top,shape=inner_right": { - "model": "terrestria:block/rainbow_eucalyptus_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=top,shape=inner_right": { - "model": "terrestria:block/rainbow_eucalyptus_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=top,shape=inner_right": { - "model": "terrestria:block/rainbow_eucalyptus_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=north,half=top,shape=inner_right": { - "model": "terrestria:block/rainbow_eucalyptus_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=inner_left": { - "model": "terrestria:block/rainbow_eucalyptus_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_left": { - "model": "terrestria:block/rainbow_eucalyptus_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=inner_left": { - "model": "terrestria:block/rainbow_eucalyptus_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=north,half=top,shape=inner_left": { - "model": "terrestria:block/rainbow_eucalyptus_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_trapdoor.json b/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_trapdoor.json deleted file mode 100644 index 8f453319..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_trapdoor.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "variants": { - "facing=north,half=bottom,open=false": { - "model": "terrestria:block/rainbow_eucalyptus_trapdoor_bottom" - }, - "facing=south,half=bottom,open=false": { - "model": "terrestria:block/rainbow_eucalyptus_trapdoor_bottom", - "y": 180 - }, - "facing=east,half=bottom,open=false": { - "model": "terrestria:block/rainbow_eucalyptus_trapdoor_bottom", - "y": 90 - }, - "facing=west,half=bottom,open=false": { - "model": "terrestria:block/rainbow_eucalyptus_trapdoor_bottom", - "y": 270 - }, - "facing=north,half=top,open=false": { - "model": "terrestria:block/rainbow_eucalyptus_trapdoor_top" - }, - "facing=south,half=top,open=false": { - "model": "terrestria:block/rainbow_eucalyptus_trapdoor_top", - "y": 180 - }, - "facing=east,half=top,open=false": { - "model": "terrestria:block/rainbow_eucalyptus_trapdoor_top", - "y": 90 - }, - "facing=west,half=top,open=false": { - "model": "terrestria:block/rainbow_eucalyptus_trapdoor_top", - "y": 270 - }, - "facing=north,half=bottom,open=true": { - "model": "terrestria:block/rainbow_eucalyptus_trapdoor_open" - }, - "facing=south,half=bottom,open=true": { - "model": "terrestria:block/rainbow_eucalyptus_trapdoor_open", - "y": 180 - }, - "facing=east,half=bottom,open=true": { - "model": "terrestria:block/rainbow_eucalyptus_trapdoor_open", - "y": 90 - }, - "facing=west,half=bottom,open=true": { - "model": "terrestria:block/rainbow_eucalyptus_trapdoor_open", - "y": 270 - }, - "facing=north,half=top,open=true": { - "model": "terrestria:block/rainbow_eucalyptus_trapdoor_open", - "x": 180, - "y": 180 - }, - "facing=south,half=top,open=true": { - "model": "terrestria:block/rainbow_eucalyptus_trapdoor_open", - "x": 180, - "y": 0 - }, - "facing=east,half=top,open=true": { - "model": "terrestria:block/rainbow_eucalyptus_trapdoor_open", - "x": 180, - "y": 270 - }, - "facing=west,half=top,open=true": { - "model": "terrestria:block/rainbow_eucalyptus_trapdoor_open", - "x": 180, - "y": 90 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_wall_hanging_sign.json b/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_wall_hanging_sign.json deleted file mode 100644 index 99f67c13..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_wall_hanging_sign.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "terrestria:block/rainbow_eucalyptus_hanging_sign" } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_wall_sign.json b/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_wall_sign.json deleted file mode 100644 index 644298ea..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_wall_sign.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/rainbow_eucalyptus_sign" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_wood.json b/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_wood.json deleted file mode 100644 index 85a79a3f..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/rainbow_eucalyptus_wood.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "variants": { - "axis=x": { - "model": "terrestria:block/rainbow_eucalyptus_wood", - "x": 90, - "y": 90 - }, - "axis=y": { - "model": "terrestria:block/rainbow_eucalyptus_wood" - }, - "axis=z": { - "model": "terrestria:block/rainbow_eucalyptus_wood", - "x": 90 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/redwood_button.json b/client/src/main/resources/assets/terrestria/blockstates/redwood_button.json deleted file mode 100644 index 173540e2..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/redwood_button.json +++ /dev/null @@ -1,118 +0,0 @@ -{ - "variants": { - "face=floor,facing=east,powered=false": { - "model": "terrestria:block/redwood_button", - "y": 90 - }, - "face=floor,facing=west,powered=false": { - "model": "terrestria:block/redwood_button", - "y": 270 - }, - "face=floor,facing=south,powered=false": { - "model": "terrestria:block/redwood_button", - "y": 180 - }, - "face=floor,facing=north,powered=false": { - "model": "terrestria:block/redwood_button" - }, - "face=wall,facing=east,powered=false": { - "model": "terrestria:block/redwood_button", - "uvlock": true, - "x": 90, - "y": 90 - }, - "face=wall,facing=west,powered=false": { - "model": "terrestria:block/redwood_button", - "uvlock": true, - "x": 90, - "y": 270 - }, - "face=wall,facing=south,powered=false": { - "model": "terrestria:block/redwood_button", - "uvlock": true, - "x": 90, - "y": 180 - }, - "face=wall,facing=north,powered=false": { - "model": "terrestria:block/redwood_button", - "uvlock": true, - "x": 90 - }, - "face=ceiling,facing=east,powered=false": { - "model": "terrestria:block/redwood_button", - "x": 180, - "y": 270 - }, - "face=ceiling,facing=west,powered=false": { - "model": "terrestria:block/redwood_button", - "x": 180, - "y": 90 - }, - "face=ceiling,facing=south,powered=false": { - "model": "terrestria:block/redwood_button", - "x": 180 - }, - "face=ceiling,facing=north,powered=false": { - "model": "terrestria:block/redwood_button", - "x": 180, - "y": 180 - }, - "face=floor,facing=east,powered=true": { - "model": "terrestria:block/redwood_button_pressed", - "y": 90 - }, - "face=floor,facing=west,powered=true": { - "model": "terrestria:block/redwood_button_pressed", - "y": 270 - }, - "face=floor,facing=south,powered=true": { - "model": "terrestria:block/redwood_button_pressed", - "y": 180 - }, - "face=floor,facing=north,powered=true": { - "model": "terrestria:block/redwood_button_pressed" - }, - "face=wall,facing=east,powered=true": { - "model": "terrestria:block/redwood_button_pressed", - "uvlock": true, - "x": 90, - "y": 90 - }, - "face=wall,facing=west,powered=true": { - "model": "terrestria:block/redwood_button_pressed", - "uvlock": true, - "x": 90, - "y": 270 - }, - "face=wall,facing=south,powered=true": { - "model": "terrestria:block/redwood_button_pressed", - "uvlock": true, - "x": 90, - "y": 180 - }, - "face=wall,facing=north,powered=true": { - "model": "terrestria:block/redwood_button_pressed", - "uvlock": true, - "x": 90 - }, - "face=ceiling,facing=east,powered=true": { - "model": "terrestria:block/redwood_button_pressed", - "x": 180, - "y": 270 - }, - "face=ceiling,facing=west,powered=true": { - "model": "terrestria:block/redwood_button_pressed", - "x": 180, - "y": 90 - }, - "face=ceiling,facing=south,powered=true": { - "model": "terrestria:block/redwood_button_pressed", - "x": 180 - }, - "face=ceiling,facing=north,powered=true": { - "model": "terrestria:block/redwood_button_pressed", - "x": 180, - "y": 180 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/redwood_door.json b/client/src/main/resources/assets/terrestria/blockstates/redwood_door.json deleted file mode 100644 index 64c3dc46..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/redwood_door.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "variants": { - "facing=east,half=lower,hinge=left,open=false": { "model": "terrestria:block/redwood_door_bottom_left" }, - "facing=east,half=lower,hinge=left,open=true": { "model": "terrestria:block/redwood_door_bottom_left_open", "y": 90 }, - "facing=east,half=lower,hinge=right,open=false": { "model": "terrestria:block/redwood_door_bottom_right" }, - "facing=east,half=lower,hinge=right,open=true": { "model": "terrestria:block/redwood_door_bottom_right_open", "y": 270 }, - "facing=east,half=upper,hinge=left,open=false": { "model": "terrestria:block/redwood_door_top_left" }, - "facing=east,half=upper,hinge=left,open=true": { "model": "terrestria:block/redwood_door_top_left_open", "y": 90 }, - "facing=east,half=upper,hinge=right,open=false": { "model": "terrestria:block/redwood_door_top_right" }, - "facing=east,half=upper,hinge=right,open=true": { "model": "terrestria:block/redwood_door_top_right_open", "y": 270 }, - "facing=north,half=lower,hinge=left,open=false": { "model": "terrestria:block/redwood_door_bottom_left", "y": 270 }, - "facing=north,half=lower,hinge=left,open=true": { "model": "terrestria:block/redwood_door_bottom_left_open" }, - "facing=north,half=lower,hinge=right,open=false": { "model": "terrestria:block/redwood_door_bottom_right", "y": 270 }, - "facing=north,half=lower,hinge=right,open=true": { "model": "terrestria:block/redwood_door_bottom_right_open", "y": 180 }, - "facing=north,half=upper,hinge=left,open=false": { "model": "terrestria:block/redwood_door_top_left", "y": 270 }, - "facing=north,half=upper,hinge=left,open=true": { "model": "terrestria:block/redwood_door_top_left_open" }, - "facing=north,half=upper,hinge=right,open=false": { "model": "terrestria:block/redwood_door_top_right", "y": 270 }, - "facing=north,half=upper,hinge=right,open=true": { "model": "terrestria:block/redwood_door_top_right_open", "y": 180 }, - "facing=south,half=lower,hinge=left,open=false": { "model": "terrestria:block/redwood_door_bottom_left", "y": 90 }, - "facing=south,half=lower,hinge=left,open=true": { "model": "terrestria:block/redwood_door_bottom_left_open", "y": 180 }, - "facing=south,half=lower,hinge=right,open=false": { "model": "terrestria:block/redwood_door_bottom_right", "y": 90 }, - "facing=south,half=lower,hinge=right,open=true": { "model": "terrestria:block/redwood_door_bottom_right_open" }, - "facing=south,half=upper,hinge=left,open=false": { "model": "terrestria:block/redwood_door_top_left", "y": 90 }, - "facing=south,half=upper,hinge=left,open=true": { "model": "terrestria:block/redwood_door_top_left_open", "y": 180 }, - "facing=south,half=upper,hinge=right,open=false": { "model": "terrestria:block/redwood_door_top_right", "y": 90 }, - "facing=south,half=upper,hinge=right,open=true": { "model": "terrestria:block/redwood_door_top_right_open" }, - "facing=west,half=lower,hinge=left,open=false": { "model": "terrestria:block/redwood_door_bottom_left", "y": 180 }, - "facing=west,half=lower,hinge=left,open=true": { "model": "terrestria:block/redwood_door_bottom_left_open", "y": 270 }, - "facing=west,half=lower,hinge=right,open=false": { "model": "terrestria:block/redwood_door_bottom_right", "y": 180 }, - "facing=west,half=lower,hinge=right,open=true": { "model": "terrestria:block/redwood_door_bottom_right_open", "y": 90 }, - "facing=west,half=upper,hinge=left,open=false": { "model": "terrestria:block/redwood_door_top_left", "y": 180 }, - "facing=west,half=upper,hinge=left,open=true": { "model": "terrestria:block/redwood_door_top_left_open", "y": 270 }, - "facing=west,half=upper,hinge=right,open=false": { "model": "terrestria:block/redwood_door_top_right", "y": 180 }, - "facing=west,half=upper,hinge=right,open=true": { "model": "terrestria:block/redwood_door_top_right_open", "y": 90 } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/redwood_double_slab.json b/client/src/main/resources/assets/terrestria/blockstates/redwood_double_slab.json deleted file mode 100644 index 22cc3d69..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/redwood_double_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/redwood_planks" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/redwood_fence.json b/client/src/main/resources/assets/terrestria/blockstates/redwood_fence.json deleted file mode 100644 index d80bc6a5..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/redwood_fence.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "multipart": [ - { - "apply": { - "model": "terrestria:block/redwood_fence_post" - } - }, - { - "when": { - "north": "true" - }, - "apply": { - "model": "terrestria:block/redwood_fence_side", - "uvlock": true - } - }, - { - "when": { - "east": "true" - }, - "apply": { - "model": "terrestria:block/redwood_fence_side", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "true" - }, - "apply": { - "model": "terrestria:block/redwood_fence_side", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "true" - }, - "apply": { - "model": "terrestria:block/redwood_fence_side", - "y": 270, - "uvlock": true - } - } - ] -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/redwood_fence_gate.json b/client/src/main/resources/assets/terrestria/blockstates/redwood_fence_gate.json deleted file mode 100644 index 34c7176d..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/redwood_fence_gate.json +++ /dev/null @@ -1,80 +0,0 @@ -{ - "variants": { - "facing=south,in_wall=false,open=false": { - "model": "terrestria:block/redwood_fence_gate", - "uvlock": true - }, - "facing=west,in_wall=false,open=false": { - "model": "terrestria:block/redwood_fence_gate", - "uvlock": true, - "y": 90 - }, - "facing=north,in_wall=false,open=false": { - "model": "terrestria:block/redwood_fence_gate", - "uvlock": true, - "y": 180 - }, - "facing=east,in_wall=false,open=false": { - "model": "terrestria:block/redwood_fence_gate", - "uvlock": true, - "y": 270 - }, - "facing=south,in_wall=false,open=true": { - "model": "terrestria:block/redwood_fence_gate_open", - "uvlock": true - }, - "facing=west,in_wall=false,open=true": { - "model": "terrestria:block/redwood_fence_gate_open", - "uvlock": true, - "y": 90 - }, - "facing=north,in_wall=false,open=true": { - "model": "terrestria:block/redwood_fence_gate_open", - "uvlock": true, - "y": 180 - }, - "facing=east,in_wall=false,open=true": { - "model": "terrestria:block/redwood_fence_gate_open", - "uvlock": true, - "y": 270 - }, - "facing=south,in_wall=true,open=false": { - "model": "terrestria:block/redwood_fence_gate_wall", - "uvlock": true - }, - "facing=west,in_wall=true,open=false": { - "model": "terrestria:block/redwood_fence_gate_wall", - "uvlock": true, - "y": 90 - }, - "facing=north,in_wall=true,open=false": { - "model": "terrestria:block/redwood_fence_gate_wall", - "uvlock": true, - "y": 180 - }, - "facing=east,in_wall=true,open=false": { - "model": "terrestria:block/redwood_fence_gate_wall", - "uvlock": true, - "y": 270 - }, - "facing=south,in_wall=true,open=true": { - "model": "terrestria:block/redwood_fence_gate_wall_open", - "uvlock": true - }, - "facing=west,in_wall=true,open=true": { - "model": "terrestria:block/redwood_fence_gate_wall_open", - "uvlock": true, - "y": 90 - }, - "facing=north,in_wall=true,open=true": { - "model": "terrestria:block/redwood_fence_gate_wall_open", - "uvlock": true, - "y": 180 - }, - "facing=east,in_wall=true,open=true": { - "model": "terrestria:block/redwood_fence_gate_wall_open", - "uvlock": true, - "y": 270 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/redwood_hanging_sign.json b/client/src/main/resources/assets/terrestria/blockstates/redwood_hanging_sign.json deleted file mode 100644 index 8630ba7b..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/redwood_hanging_sign.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "terrestria:block/redwood_hanging_sign" } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/redwood_leaves.json b/client/src/main/resources/assets/terrestria/blockstates/redwood_leaves.json deleted file mode 100644 index 92c0ca0f..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/redwood_leaves.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/redwood_leaves" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/redwood_log.json b/client/src/main/resources/assets/terrestria/blockstates/redwood_log.json deleted file mode 100644 index fead2f51..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/redwood_log.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "variants": { - "axis=x": { - "model": "terrestria:block/redwood_log", - "x": 90, - "y": 90 - }, - "axis=y": { - "model": "terrestria:block/redwood_log" - }, - "axis=z": { - "model": "terrestria:block/redwood_log", - "x": 90 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/redwood_planks.json b/client/src/main/resources/assets/terrestria/blockstates/redwood_planks.json deleted file mode 100644 index 22cc3d69..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/redwood_planks.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/redwood_planks" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/redwood_pressure_plate.json b/client/src/main/resources/assets/terrestria/blockstates/redwood_pressure_plate.json deleted file mode 100644 index b922380c..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/redwood_pressure_plate.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "variants": { - "powered=false": { - "model": "terrestria:block/redwood_pressure_plate" - }, - "powered=true": { - "model": "terrestria:block/redwood_pressure_plate_down" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/redwood_quarter_log.json b/client/src/main/resources/assets/terrestria/blockstates/redwood_quarter_log.json deleted file mode 100644 index 209a2c67..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/redwood_quarter_log.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "variants": { - "axis=x,bark_side=southwest": { - "model": "terrestria:block/redwood_quarter_log", - "x": 90, - "y": 270 - }, - "axis=x,bark_side=northwest": { - "model": "terrestria:block/redwood_quarter_log", - "x": 90, - "y": 90 - }, - "axis=x,bark_side=northeast": { - "model": "terrestria:block/redwood_quarter_log", - "x": 270, - "y": 90 - }, - "axis=x,bark_side=southeast": { - "model": "terrestria:block/redwood_quarter_log", - "x": 270, - "y": 270 - }, - "axis=y,bark_side=southwest": { - "model": "terrestria:block/redwood_quarter_log" - }, - "axis=y,bark_side=northwest": { - "model": "terrestria:block/redwood_quarter_log", - "y": 90 - }, - "axis=y,bark_side=northeast": { - "model": "terrestria:block/redwood_quarter_log", - "y": 180 - }, - "axis=y,bark_side=southeast": { - "model": "terrestria:block/redwood_quarter_log", - "y": 270 - }, - "axis=z,bark_side=southwest": { - "model": "terrestria:block/redwood_quarter_log", - "x": 90 - }, - "axis=z,bark_side=northwest": { - "model": "terrestria:block/redwood_quarter_log", - "x": 270 - }, - "axis=z,bark_side=northeast": { - "model": "terrestria:block/redwood_quarter_log", - "x": 270, - "y": 180 - }, - "axis=z,bark_side=southeast": { - "model": "terrestria:block/redwood_quarter_log", - "x": 90, - "y": 180 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/redwood_sapling.json b/client/src/main/resources/assets/terrestria/blockstates/redwood_sapling.json deleted file mode 100644 index ab056117..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/redwood_sapling.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "variants": { - "stage=0": { - "model": "terrestria:block/redwood_sapling" - }, - "stage=1": { - "model": "terrestria:block/redwood_sapling" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/redwood_sign.json b/client/src/main/resources/assets/terrestria/blockstates/redwood_sign.json deleted file mode 100644 index 8495cd7c..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/redwood_sign.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/redwood_sign" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/redwood_slab.json b/client/src/main/resources/assets/terrestria/blockstates/redwood_slab.json deleted file mode 100644 index 262726a0..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/redwood_slab.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "type=bottom": { - "model": "terrestria:block/redwood_slab" - }, - "type=top": { - "model": "terrestria:block/redwood_slab_top" - }, - "type=double": { - "model": "terrestria:block/redwood_planks" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/redwood_stairs.json b/client/src/main/resources/assets/terrestria/blockstates/redwood_stairs.json deleted file mode 100644 index ef336247..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/redwood_stairs.json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { - "model": "terrestria:block/redwood_stairs" - }, - "facing=west,half=bottom,shape=straight": { - "model": "terrestria:block/redwood_stairs", - "y": 180, - "uvlock": true - }, - "facing=south,half=bottom,shape=straight": { - "model": "terrestria:block/redwood_stairs", - "y": 90, - "uvlock": true - }, - "facing=north,half=bottom,shape=straight": { - "model": "terrestria:block/redwood_stairs", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_right": { - "model": "terrestria:block/redwood_stairs_outer" - }, - "facing=west,half=bottom,shape=outer_right": { - "model": "terrestria:block/redwood_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_right": { - "model": "terrestria:block/redwood_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_right": { - "model": "terrestria:block/redwood_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_left": { - "model": "terrestria:block/redwood_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_left": { - "model": "terrestria:block/redwood_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_left": { - "model": "terrestria:block/redwood_stairs_outer" - }, - "facing=north,half=bottom,shape=outer_left": { - "model": "terrestria:block/redwood_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_right": { - "model": "terrestria:block/redwood_stairs_inner" - }, - "facing=west,half=bottom,shape=inner_right": { - "model": "terrestria:block/redwood_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_right": { - "model": "terrestria:block/redwood_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_right": { - "model": "terrestria:block/redwood_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_left": { - "model": "terrestria:block/redwood_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_left": { - "model": "terrestria:block/redwood_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_left": { - "model": "terrestria:block/redwood_stairs_inner" - }, - "facing=north,half=bottom,shape=inner_left": { - "model": "terrestria:block/redwood_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=east,half=top,shape=straight": { - "model": "terrestria:block/redwood_stairs", - "x": 180, - "uvlock": true - }, - "facing=west,half=top,shape=straight": { - "model": "terrestria:block/redwood_stairs", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=straight": { - "model": "terrestria:block/redwood_stairs", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=north,half=top,shape=straight": { - "model": "terrestria:block/redwood_stairs", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=east,half=top,shape=outer_right": { - "model": "terrestria:block/redwood_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=top,shape=outer_right": { - "model": "terrestria:block/redwood_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=top,shape=outer_right": { - "model": "terrestria:block/redwood_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=north,half=top,shape=outer_right": { - "model": "terrestria:block/redwood_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=outer_left": { - "model": "terrestria:block/redwood_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=west,half=top,shape=outer_left": { - "model": "terrestria:block/redwood_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=outer_left": { - "model": "terrestria:block/redwood_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=north,half=top,shape=outer_left": { - "model": "terrestria:block/redwood_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=east,half=top,shape=inner_right": { - "model": "terrestria:block/redwood_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=top,shape=inner_right": { - "model": "terrestria:block/redwood_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=top,shape=inner_right": { - "model": "terrestria:block/redwood_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=north,half=top,shape=inner_right": { - "model": "terrestria:block/redwood_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=inner_left": { - "model": "terrestria:block/redwood_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_left": { - "model": "terrestria:block/redwood_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=inner_left": { - "model": "terrestria:block/redwood_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=north,half=top,shape=inner_left": { - "model": "terrestria:block/redwood_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/redwood_trapdoor.json b/client/src/main/resources/assets/terrestria/blockstates/redwood_trapdoor.json deleted file mode 100644 index 25230586..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/redwood_trapdoor.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "variants": { - "facing=north,half=bottom,open=false": { - "model": "terrestria:block/redwood_trapdoor_bottom" - }, - "facing=south,half=bottom,open=false": { - "model": "terrestria:block/redwood_trapdoor_bottom", - "y": 180 - }, - "facing=east,half=bottom,open=false": { - "model": "terrestria:block/redwood_trapdoor_bottom", - "y": 90 - }, - "facing=west,half=bottom,open=false": { - "model": "terrestria:block/redwood_trapdoor_bottom", - "y": 270 - }, - "facing=north,half=top,open=false": { - "model": "terrestria:block/redwood_trapdoor_top" - }, - "facing=south,half=top,open=false": { - "model": "terrestria:block/redwood_trapdoor_top", - "y": 180 - }, - "facing=east,half=top,open=false": { - "model": "terrestria:block/redwood_trapdoor_top", - "y": 90 - }, - "facing=west,half=top,open=false": { - "model": "terrestria:block/redwood_trapdoor_top", - "y": 270 - }, - "facing=north,half=bottom,open=true": { - "model": "terrestria:block/redwood_trapdoor_open" - }, - "facing=south,half=bottom,open=true": { - "model": "terrestria:block/redwood_trapdoor_open", - "y": 180 - }, - "facing=east,half=bottom,open=true": { - "model": "terrestria:block/redwood_trapdoor_open", - "y": 90 - }, - "facing=west,half=bottom,open=true": { - "model": "terrestria:block/redwood_trapdoor_open", - "y": 270 - }, - "facing=north,half=top,open=true": { - "model": "terrestria:block/redwood_trapdoor_open", - "x": 180, - "y": 180 - }, - "facing=south,half=top,open=true": { - "model": "terrestria:block/redwood_trapdoor_open", - "x": 180, - "y": 0 - }, - "facing=east,half=top,open=true": { - "model": "terrestria:block/redwood_trapdoor_open", - "x": 180, - "y": 270 - }, - "facing=west,half=top,open=true": { - "model": "terrestria:block/redwood_trapdoor_open", - "x": 180, - "y": 90 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/redwood_wall_hanging_sign.json b/client/src/main/resources/assets/terrestria/blockstates/redwood_wall_hanging_sign.json deleted file mode 100644 index 8630ba7b..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/redwood_wall_hanging_sign.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "terrestria:block/redwood_hanging_sign" } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/redwood_wall_sign.json b/client/src/main/resources/assets/terrestria/blockstates/redwood_wall_sign.json deleted file mode 100644 index 8495cd7c..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/redwood_wall_sign.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/redwood_sign" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/redwood_wood.json b/client/src/main/resources/assets/terrestria/blockstates/redwood_wood.json deleted file mode 100644 index 76d26864..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/redwood_wood.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "variants": { - "axis=x": { - "model": "terrestria:block/redwood_wood", - "x": 90, - "y": 90 - }, - "axis=y": { - "model": "terrestria:block/redwood_wood" - }, - "axis=z": { - "model": "terrestria:block/redwood_wood", - "x": 90 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/rubber_button.json b/client/src/main/resources/assets/terrestria/blockstates/rubber_button.json deleted file mode 100644 index bd929901..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/rubber_button.json +++ /dev/null @@ -1,118 +0,0 @@ -{ - "variants": { - "face=floor,facing=east,powered=false": { - "model": "terrestria:block/rubber_button", - "y": 90 - }, - "face=floor,facing=west,powered=false": { - "model": "terrestria:block/rubber_button", - "y": 270 - }, - "face=floor,facing=south,powered=false": { - "model": "terrestria:block/rubber_button", - "y": 180 - }, - "face=floor,facing=north,powered=false": { - "model": "terrestria:block/rubber_button" - }, - "face=wall,facing=east,powered=false": { - "model": "terrestria:block/rubber_button", - "uvlock": true, - "x": 90, - "y": 90 - }, - "face=wall,facing=west,powered=false": { - "model": "terrestria:block/rubber_button", - "uvlock": true, - "x": 90, - "y": 270 - }, - "face=wall,facing=south,powered=false": { - "model": "terrestria:block/rubber_button", - "uvlock": true, - "x": 90, - "y": 180 - }, - "face=wall,facing=north,powered=false": { - "model": "terrestria:block/rubber_button", - "uvlock": true, - "x": 90 - }, - "face=ceiling,facing=east,powered=false": { - "model": "terrestria:block/rubber_button", - "x": 180, - "y": 270 - }, - "face=ceiling,facing=west,powered=false": { - "model": "terrestria:block/rubber_button", - "x": 180, - "y": 90 - }, - "face=ceiling,facing=south,powered=false": { - "model": "terrestria:block/rubber_button", - "x": 180 - }, - "face=ceiling,facing=north,powered=false": { - "model": "terrestria:block/rubber_button", - "x": 180, - "y": 180 - }, - "face=floor,facing=east,powered=true": { - "model": "terrestria:block/rubber_button_pressed", - "y": 90 - }, - "face=floor,facing=west,powered=true": { - "model": "terrestria:block/rubber_button_pressed", - "y": 270 - }, - "face=floor,facing=south,powered=true": { - "model": "terrestria:block/rubber_button_pressed", - "y": 180 - }, - "face=floor,facing=north,powered=true": { - "model": "terrestria:block/rubber_button_pressed" - }, - "face=wall,facing=east,powered=true": { - "model": "terrestria:block/rubber_button_pressed", - "uvlock": true, - "x": 90, - "y": 90 - }, - "face=wall,facing=west,powered=true": { - "model": "terrestria:block/rubber_button_pressed", - "uvlock": true, - "x": 90, - "y": 270 - }, - "face=wall,facing=south,powered=true": { - "model": "terrestria:block/rubber_button_pressed", - "uvlock": true, - "x": 90, - "y": 180 - }, - "face=wall,facing=north,powered=true": { - "model": "terrestria:block/rubber_button_pressed", - "uvlock": true, - "x": 90 - }, - "face=ceiling,facing=east,powered=true": { - "model": "terrestria:block/rubber_button_pressed", - "x": 180, - "y": 270 - }, - "face=ceiling,facing=west,powered=true": { - "model": "terrestria:block/rubber_button_pressed", - "x": 180, - "y": 90 - }, - "face=ceiling,facing=south,powered=true": { - "model": "terrestria:block/rubber_button_pressed", - "x": 180 - }, - "face=ceiling,facing=north,powered=true": { - "model": "terrestria:block/rubber_button_pressed", - "x": 180, - "y": 180 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/rubber_door.json b/client/src/main/resources/assets/terrestria/blockstates/rubber_door.json deleted file mode 100644 index 241b791d..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/rubber_door.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "variants": { - "facing=east,half=lower,hinge=left,open=false": { "model": "terrestria:block/rubber_door_bottom_left" }, - "facing=east,half=lower,hinge=left,open=true": { "model": "terrestria:block/rubber_door_bottom_left_open", "y": 90 }, - "facing=east,half=lower,hinge=right,open=false": { "model": "terrestria:block/rubber_door_bottom_right" }, - "facing=east,half=lower,hinge=right,open=true": { "model": "terrestria:block/rubber_door_bottom_right_open", "y": 270 }, - "facing=east,half=upper,hinge=left,open=false": { "model": "terrestria:block/rubber_door_top_left" }, - "facing=east,half=upper,hinge=left,open=true": { "model": "terrestria:block/rubber_door_top_left_open", "y": 90 }, - "facing=east,half=upper,hinge=right,open=false": { "model": "terrestria:block/rubber_door_top_right" }, - "facing=east,half=upper,hinge=right,open=true": { "model": "terrestria:block/rubber_door_top_right_open", "y": 270 }, - "facing=north,half=lower,hinge=left,open=false": { "model": "terrestria:block/rubber_door_bottom_left", "y": 270 }, - "facing=north,half=lower,hinge=left,open=true": { "model": "terrestria:block/rubber_door_bottom_left_open" }, - "facing=north,half=lower,hinge=right,open=false": { "model": "terrestria:block/rubber_door_bottom_right", "y": 270 }, - "facing=north,half=lower,hinge=right,open=true": { "model": "terrestria:block/rubber_door_bottom_right_open", "y": 180 }, - "facing=north,half=upper,hinge=left,open=false": { "model": "terrestria:block/rubber_door_top_left", "y": 270 }, - "facing=north,half=upper,hinge=left,open=true": { "model": "terrestria:block/rubber_door_top_left_open" }, - "facing=north,half=upper,hinge=right,open=false": { "model": "terrestria:block/rubber_door_top_right", "y": 270 }, - "facing=north,half=upper,hinge=right,open=true": { "model": "terrestria:block/rubber_door_top_right_open", "y": 180 }, - "facing=south,half=lower,hinge=left,open=false": { "model": "terrestria:block/rubber_door_bottom_left", "y": 90 }, - "facing=south,half=lower,hinge=left,open=true": { "model": "terrestria:block/rubber_door_bottom_left_open", "y": 180 }, - "facing=south,half=lower,hinge=right,open=false": { "model": "terrestria:block/rubber_door_bottom_right", "y": 90 }, - "facing=south,half=lower,hinge=right,open=true": { "model": "terrestria:block/rubber_door_bottom_right_open" }, - "facing=south,half=upper,hinge=left,open=false": { "model": "terrestria:block/rubber_door_top_left", "y": 90 }, - "facing=south,half=upper,hinge=left,open=true": { "model": "terrestria:block/rubber_door_top_left_open", "y": 180 }, - "facing=south,half=upper,hinge=right,open=false": { "model": "terrestria:block/rubber_door_top_right", "y": 90 }, - "facing=south,half=upper,hinge=right,open=true": { "model": "terrestria:block/rubber_door_top_right_open" }, - "facing=west,half=lower,hinge=left,open=false": { "model": "terrestria:block/rubber_door_bottom_left", "y": 180 }, - "facing=west,half=lower,hinge=left,open=true": { "model": "terrestria:block/rubber_door_bottom_left_open", "y": 270 }, - "facing=west,half=lower,hinge=right,open=false": { "model": "terrestria:block/rubber_door_bottom_right", "y": 180 }, - "facing=west,half=lower,hinge=right,open=true": { "model": "terrestria:block/rubber_door_bottom_right_open", "y": 90 }, - "facing=west,half=upper,hinge=left,open=false": { "model": "terrestria:block/rubber_door_top_left", "y": 180 }, - "facing=west,half=upper,hinge=left,open=true": { "model": "terrestria:block/rubber_door_top_left_open", "y": 270 }, - "facing=west,half=upper,hinge=right,open=false": { "model": "terrestria:block/rubber_door_top_right", "y": 180 }, - "facing=west,half=upper,hinge=right,open=true": { "model": "terrestria:block/rubber_door_top_right_open", "y": 90 } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/rubber_double_slab.json b/client/src/main/resources/assets/terrestria/blockstates/rubber_double_slab.json deleted file mode 100644 index b71ee899..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/rubber_double_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/rubber_planks" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/rubber_fence.json b/client/src/main/resources/assets/terrestria/blockstates/rubber_fence.json deleted file mode 100644 index 1c0c2525..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/rubber_fence.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "multipart": [ - { - "apply": { - "model": "terrestria:block/rubber_fence_post" - } - }, - { - "when": { - "north": "true" - }, - "apply": { - "model": "terrestria:block/rubber_fence_side", - "uvlock": true - } - }, - { - "when": { - "east": "true" - }, - "apply": { - "model": "terrestria:block/rubber_fence_side", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "true" - }, - "apply": { - "model": "terrestria:block/rubber_fence_side", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "true" - }, - "apply": { - "model": "terrestria:block/rubber_fence_side", - "y": 270, - "uvlock": true - } - } - ] -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/rubber_fence_gate.json b/client/src/main/resources/assets/terrestria/blockstates/rubber_fence_gate.json deleted file mode 100644 index 893bf681..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/rubber_fence_gate.json +++ /dev/null @@ -1,80 +0,0 @@ -{ - "variants": { - "facing=south,in_wall=false,open=false": { - "model": "terrestria:block/rubber_fence_gate", - "uvlock": true - }, - "facing=west,in_wall=false,open=false": { - "model": "terrestria:block/rubber_fence_gate", - "uvlock": true, - "y": 90 - }, - "facing=north,in_wall=false,open=false": { - "model": "terrestria:block/rubber_fence_gate", - "uvlock": true, - "y": 180 - }, - "facing=east,in_wall=false,open=false": { - "model": "terrestria:block/rubber_fence_gate", - "uvlock": true, - "y": 270 - }, - "facing=south,in_wall=false,open=true": { - "model": "terrestria:block/rubber_fence_gate_open", - "uvlock": true - }, - "facing=west,in_wall=false,open=true": { - "model": "terrestria:block/rubber_fence_gate_open", - "uvlock": true, - "y": 90 - }, - "facing=north,in_wall=false,open=true": { - "model": "terrestria:block/rubber_fence_gate_open", - "uvlock": true, - "y": 180 - }, - "facing=east,in_wall=false,open=true": { - "model": "terrestria:block/rubber_fence_gate_open", - "uvlock": true, - "y": 270 - }, - "facing=south,in_wall=true,open=false": { - "model": "terrestria:block/rubber_fence_gate_wall", - "uvlock": true - }, - "facing=west,in_wall=true,open=false": { - "model": "terrestria:block/rubber_fence_gate_wall", - "uvlock": true, - "y": 90 - }, - "facing=north,in_wall=true,open=false": { - "model": "terrestria:block/rubber_fence_gate_wall", - "uvlock": true, - "y": 180 - }, - "facing=east,in_wall=true,open=false": { - "model": "terrestria:block/rubber_fence_gate_wall", - "uvlock": true, - "y": 270 - }, - "facing=south,in_wall=true,open=true": { - "model": "terrestria:block/rubber_fence_gate_wall_open", - "uvlock": true - }, - "facing=west,in_wall=true,open=true": { - "model": "terrestria:block/rubber_fence_gate_wall_open", - "uvlock": true, - "y": 90 - }, - "facing=north,in_wall=true,open=true": { - "model": "terrestria:block/rubber_fence_gate_wall_open", - "uvlock": true, - "y": 180 - }, - "facing=east,in_wall=true,open=true": { - "model": "terrestria:block/rubber_fence_gate_wall_open", - "uvlock": true, - "y": 270 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/rubber_hanging_sign.json b/client/src/main/resources/assets/terrestria/blockstates/rubber_hanging_sign.json deleted file mode 100644 index 01c1910c..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/rubber_hanging_sign.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "terrestria:block/rubber_hanging_sign" } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/rubber_leaves.json b/client/src/main/resources/assets/terrestria/blockstates/rubber_leaves.json deleted file mode 100644 index 9addb96c..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/rubber_leaves.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/rubber_leaves" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/rubber_log.json b/client/src/main/resources/assets/terrestria/blockstates/rubber_log.json deleted file mode 100644 index f2d7f3be..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/rubber_log.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "variants": { - "axis=x": { - "model": "terrestria:block/rubber_log", - "x": 90, - "y": 90 - }, - "axis=y": { - "model": "terrestria:block/rubber_log" - }, - "axis=z": { - "model": "terrestria:block/rubber_log", - "x": 90 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/rubber_planks.json b/client/src/main/resources/assets/terrestria/blockstates/rubber_planks.json deleted file mode 100644 index b71ee899..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/rubber_planks.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/rubber_planks" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/rubber_pressure_plate.json b/client/src/main/resources/assets/terrestria/blockstates/rubber_pressure_plate.json deleted file mode 100644 index 8305da59..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/rubber_pressure_plate.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "variants": { - "powered=false": { - "model": "terrestria:block/rubber_pressure_plate" - }, - "powered=true": { - "model": "terrestria:block/rubber_pressure_plate_down" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/rubber_sapling.json b/client/src/main/resources/assets/terrestria/blockstates/rubber_sapling.json deleted file mode 100644 index 9548a6f6..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/rubber_sapling.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "variants": { - "stage=0": { - "model": "terrestria:block/rubber_sapling" - }, - "stage=1": { - "model": "terrestria:block/rubber_sapling" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/rubber_sign.json b/client/src/main/resources/assets/terrestria/blockstates/rubber_sign.json deleted file mode 100644 index 015baa9c..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/rubber_sign.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/rubber_sign" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/rubber_slab.json b/client/src/main/resources/assets/terrestria/blockstates/rubber_slab.json deleted file mode 100644 index b7bc59b3..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/rubber_slab.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "type=bottom": { - "model": "terrestria:block/rubber_slab" - }, - "type=top": { - "model": "terrestria:block/rubber_slab_top" - }, - "type=double": { - "model": "terrestria:block/rubber_planks" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/rubber_stairs.json b/client/src/main/resources/assets/terrestria/blockstates/rubber_stairs.json deleted file mode 100644 index d9d35992..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/rubber_stairs.json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { - "model": "terrestria:block/rubber_stairs" - }, - "facing=west,half=bottom,shape=straight": { - "model": "terrestria:block/rubber_stairs", - "y": 180, - "uvlock": true - }, - "facing=south,half=bottom,shape=straight": { - "model": "terrestria:block/rubber_stairs", - "y": 90, - "uvlock": true - }, - "facing=north,half=bottom,shape=straight": { - "model": "terrestria:block/rubber_stairs", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_right": { - "model": "terrestria:block/rubber_stairs_outer" - }, - "facing=west,half=bottom,shape=outer_right": { - "model": "terrestria:block/rubber_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_right": { - "model": "terrestria:block/rubber_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_right": { - "model": "terrestria:block/rubber_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_left": { - "model": "terrestria:block/rubber_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_left": { - "model": "terrestria:block/rubber_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_left": { - "model": "terrestria:block/rubber_stairs_outer" - }, - "facing=north,half=bottom,shape=outer_left": { - "model": "terrestria:block/rubber_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_right": { - "model": "terrestria:block/rubber_stairs_inner" - }, - "facing=west,half=bottom,shape=inner_right": { - "model": "terrestria:block/rubber_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_right": { - "model": "terrestria:block/rubber_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_right": { - "model": "terrestria:block/rubber_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_left": { - "model": "terrestria:block/rubber_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_left": { - "model": "terrestria:block/rubber_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_left": { - "model": "terrestria:block/rubber_stairs_inner" - }, - "facing=north,half=bottom,shape=inner_left": { - "model": "terrestria:block/rubber_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=east,half=top,shape=straight": { - "model": "terrestria:block/rubber_stairs", - "x": 180, - "uvlock": true - }, - "facing=west,half=top,shape=straight": { - "model": "terrestria:block/rubber_stairs", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=straight": { - "model": "terrestria:block/rubber_stairs", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=north,half=top,shape=straight": { - "model": "terrestria:block/rubber_stairs", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=east,half=top,shape=outer_right": { - "model": "terrestria:block/rubber_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=top,shape=outer_right": { - "model": "terrestria:block/rubber_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=top,shape=outer_right": { - "model": "terrestria:block/rubber_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=north,half=top,shape=outer_right": { - "model": "terrestria:block/rubber_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=outer_left": { - "model": "terrestria:block/rubber_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=west,half=top,shape=outer_left": { - "model": "terrestria:block/rubber_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=outer_left": { - "model": "terrestria:block/rubber_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=north,half=top,shape=outer_left": { - "model": "terrestria:block/rubber_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=east,half=top,shape=inner_right": { - "model": "terrestria:block/rubber_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=top,shape=inner_right": { - "model": "terrestria:block/rubber_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=top,shape=inner_right": { - "model": "terrestria:block/rubber_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=north,half=top,shape=inner_right": { - "model": "terrestria:block/rubber_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=inner_left": { - "model": "terrestria:block/rubber_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_left": { - "model": "terrestria:block/rubber_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=inner_left": { - "model": "terrestria:block/rubber_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=north,half=top,shape=inner_left": { - "model": "terrestria:block/rubber_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/rubber_trapdoor.json b/client/src/main/resources/assets/terrestria/blockstates/rubber_trapdoor.json deleted file mode 100644 index 26633e2a..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/rubber_trapdoor.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "variants": { - "facing=north,half=bottom,open=false": { - "model": "terrestria:block/rubber_trapdoor_bottom" - }, - "facing=south,half=bottom,open=false": { - "model": "terrestria:block/rubber_trapdoor_bottom", - "y": 180 - }, - "facing=east,half=bottom,open=false": { - "model": "terrestria:block/rubber_trapdoor_bottom", - "y": 90 - }, - "facing=west,half=bottom,open=false": { - "model": "terrestria:block/rubber_trapdoor_bottom", - "y": 270 - }, - "facing=north,half=top,open=false": { - "model": "terrestria:block/rubber_trapdoor_top" - }, - "facing=south,half=top,open=false": { - "model": "terrestria:block/rubber_trapdoor_top", - "y": 180 - }, - "facing=east,half=top,open=false": { - "model": "terrestria:block/rubber_trapdoor_top", - "y": 90 - }, - "facing=west,half=top,open=false": { - "model": "terrestria:block/rubber_trapdoor_top", - "y": 270 - }, - "facing=north,half=bottom,open=true": { - "model": "terrestria:block/rubber_trapdoor_open" - }, - "facing=south,half=bottom,open=true": { - "model": "terrestria:block/rubber_trapdoor_open", - "y": 180 - }, - "facing=east,half=bottom,open=true": { - "model": "terrestria:block/rubber_trapdoor_open", - "y": 90 - }, - "facing=west,half=bottom,open=true": { - "model": "terrestria:block/rubber_trapdoor_open", - "y": 270 - }, - "facing=north,half=top,open=true": { - "model": "terrestria:block/rubber_trapdoor_open", - "x": 180, - "y": 180 - }, - "facing=south,half=top,open=true": { - "model": "terrestria:block/rubber_trapdoor_open", - "x": 180, - "y": 0 - }, - "facing=east,half=top,open=true": { - "model": "terrestria:block/rubber_trapdoor_open", - "x": 180, - "y": 270 - }, - "facing=west,half=top,open=true": { - "model": "terrestria:block/rubber_trapdoor_open", - "x": 180, - "y": 90 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/rubber_wall_hanging_sign.json b/client/src/main/resources/assets/terrestria/blockstates/rubber_wall_hanging_sign.json deleted file mode 100644 index 01c1910c..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/rubber_wall_hanging_sign.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "terrestria:block/rubber_hanging_sign" } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/rubber_wall_sign.json b/client/src/main/resources/assets/terrestria/blockstates/rubber_wall_sign.json deleted file mode 100644 index 015baa9c..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/rubber_wall_sign.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/rubber_sign" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/rubber_wood.json b/client/src/main/resources/assets/terrestria/blockstates/rubber_wood.json deleted file mode 100644 index 7cdbcaf4..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/rubber_wood.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "variants": { - "axis=x": { - "model": "terrestria:block/rubber_wood", - "x": 90, - "y": 90 - }, - "axis=y": { - "model": "terrestria:block/rubber_wood" - }, - "axis=z": { - "model": "terrestria:block/rubber_wood", - "x": 90 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/saguaro_cactus.json b/client/src/main/resources/assets/terrestria/blockstates/saguaro_cactus.json deleted file mode 100644 index e9cc5e4e..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/saguaro_cactus.json +++ /dev/null @@ -1,92 +0,0 @@ -{ - "multipart": [ - { - "when": { "up": "true"}, - "apply": { - "model": "terrestria:block/saguaro_cactus_log_branch" - } - }, - { - "when": { "down": "true"}, - "apply": { - "model": "terrestria:block/saguaro_cactus_log_branch", - "x": 180 - } - }, - { - "when": { "north": "true"}, - "apply": { - "model": "terrestria:block/saguaro_cactus_log_branch", - "x": 90 - } - }, - { - "when": { "south": "true"}, - "apply": { - "model": "terrestria:block/saguaro_cactus_log_branch", - "x": 90, - "y": 180 - } - }, - { - "when": { "east": "true"}, - "apply": { - "model": "terrestria:block/saguaro_cactus_log_branch", - "x": 90, - "y": 90 - } - }, - { - "when": { "west": "true"}, - "apply": { - "model": "terrestria:block/saguaro_cactus_log_branch", - "x": 90, - "y": 270 - } - }, - { - "when": { "up": "false"}, - "apply": { - "model": "terrestria:block/saguaro_cactus_log" - } - }, - { - "when": { "down": "false"}, - "apply": { - "model": "terrestria:block/saguaro_cactus_log", - "x": 180 - } - }, - { - "when": { "north": "false"}, - "apply": { - "model": "terrestria:block/saguaro_cactus_log", - "x": 90 - } - }, - { - "when": { "south": "false"}, - "apply": { - "model": "terrestria:block/saguaro_cactus_log", - "x": 90, - "y": 180 - } - }, - { - "when": { "east": "false"}, - "apply": { - "model": "terrestria:block/saguaro_cactus_log", - "x": 90, - "y": 90 - } - }, - { - "when": { "west": "false"}, - "apply": { - "model": "terrestria:block/saguaro_cactus_log", - "x": 90, - "y": 270 - } - } - ] -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/saguaro_cactus_sapling.json b/client/src/main/resources/assets/terrestria/blockstates/saguaro_cactus_sapling.json deleted file mode 100644 index 95b17198..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/saguaro_cactus_sapling.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "variants": { - "stage=0": { - "model": "terrestria:block/saguaro_cactus_sapling" - }, - "stage=1": { - "model": "terrestria:block/saguaro_cactus_sapling" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/sakura_button.json b/client/src/main/resources/assets/terrestria/blockstates/sakura_button.json deleted file mode 100644 index 0e66c479..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/sakura_button.json +++ /dev/null @@ -1,118 +0,0 @@ -{ - "variants": { - "face=floor,facing=east,powered=false": { - "model": "terrestria:block/sakura_button", - "y": 90 - }, - "face=floor,facing=west,powered=false": { - "model": "terrestria:block/sakura_button", - "y": 270 - }, - "face=floor,facing=south,powered=false": { - "model": "terrestria:block/sakura_button", - "y": 180 - }, - "face=floor,facing=north,powered=false": { - "model": "terrestria:block/sakura_button" - }, - "face=wall,facing=east,powered=false": { - "model": "terrestria:block/sakura_button", - "uvlock": true, - "x": 90, - "y": 90 - }, - "face=wall,facing=west,powered=false": { - "model": "terrestria:block/sakura_button", - "uvlock": true, - "x": 90, - "y": 270 - }, - "face=wall,facing=south,powered=false": { - "model": "terrestria:block/sakura_button", - "uvlock": true, - "x": 90, - "y": 180 - }, - "face=wall,facing=north,powered=false": { - "model": "terrestria:block/sakura_button", - "uvlock": true, - "x": 90 - }, - "face=ceiling,facing=east,powered=false": { - "model": "terrestria:block/sakura_button", - "x": 180, - "y": 270 - }, - "face=ceiling,facing=west,powered=false": { - "model": "terrestria:block/sakura_button", - "x": 180, - "y": 90 - }, - "face=ceiling,facing=south,powered=false": { - "model": "terrestria:block/sakura_button", - "x": 180 - }, - "face=ceiling,facing=north,powered=false": { - "model": "terrestria:block/sakura_button", - "x": 180, - "y": 180 - }, - "face=floor,facing=east,powered=true": { - "model": "terrestria:block/sakura_button_pressed", - "y": 90 - }, - "face=floor,facing=west,powered=true": { - "model": "terrestria:block/sakura_button_pressed", - "y": 270 - }, - "face=floor,facing=south,powered=true": { - "model": "terrestria:block/sakura_button_pressed", - "y": 180 - }, - "face=floor,facing=north,powered=true": { - "model": "terrestria:block/sakura_button_pressed" - }, - "face=wall,facing=east,powered=true": { - "model": "terrestria:block/sakura_button_pressed", - "uvlock": true, - "x": 90, - "y": 90 - }, - "face=wall,facing=west,powered=true": { - "model": "terrestria:block/sakura_button_pressed", - "uvlock": true, - "x": 90, - "y": 270 - }, - "face=wall,facing=south,powered=true": { - "model": "terrestria:block/sakura_button_pressed", - "uvlock": true, - "x": 90, - "y": 180 - }, - "face=wall,facing=north,powered=true": { - "model": "terrestria:block/sakura_button_pressed", - "uvlock": true, - "x": 90 - }, - "face=ceiling,facing=east,powered=true": { - "model": "terrestria:block/sakura_button_pressed", - "x": 180, - "y": 270 - }, - "face=ceiling,facing=west,powered=true": { - "model": "terrestria:block/sakura_button_pressed", - "x": 180, - "y": 90 - }, - "face=ceiling,facing=south,powered=true": { - "model": "terrestria:block/sakura_button_pressed", - "x": 180 - }, - "face=ceiling,facing=north,powered=true": { - "model": "terrestria:block/sakura_button_pressed", - "x": 180, - "y": 180 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/sakura_door.json b/client/src/main/resources/assets/terrestria/blockstates/sakura_door.json deleted file mode 100644 index d668db7f..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/sakura_door.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "variants": { - "facing=east,half=lower,hinge=left,open=false": { "model": "terrestria:block/sakura_door_bottom_left" }, - "facing=east,half=lower,hinge=left,open=true": { "model": "terrestria:block/sakura_door_bottom_left_open", "y": 90 }, - "facing=east,half=lower,hinge=right,open=false": { "model": "terrestria:block/sakura_door_bottom_right" }, - "facing=east,half=lower,hinge=right,open=true": { "model": "terrestria:block/sakura_door_bottom_right_open", "y": 270 }, - "facing=east,half=upper,hinge=left,open=false": { "model": "terrestria:block/sakura_door_top_left" }, - "facing=east,half=upper,hinge=left,open=true": { "model": "terrestria:block/sakura_door_top_left_open", "y": 90 }, - "facing=east,half=upper,hinge=right,open=false": { "model": "terrestria:block/sakura_door_top_right" }, - "facing=east,half=upper,hinge=right,open=true": { "model": "terrestria:block/sakura_door_top_right_open", "y": 270 }, - "facing=north,half=lower,hinge=left,open=false": { "model": "terrestria:block/sakura_door_bottom_left", "y": 270 }, - "facing=north,half=lower,hinge=left,open=true": { "model": "terrestria:block/sakura_door_bottom_left_open" }, - "facing=north,half=lower,hinge=right,open=false": { "model": "terrestria:block/sakura_door_bottom_right", "y": 270 }, - "facing=north,half=lower,hinge=right,open=true": { "model": "terrestria:block/sakura_door_bottom_right_open", "y": 180 }, - "facing=north,half=upper,hinge=left,open=false": { "model": "terrestria:block/sakura_door_top_left", "y": 270 }, - "facing=north,half=upper,hinge=left,open=true": { "model": "terrestria:block/sakura_door_top_left_open" }, - "facing=north,half=upper,hinge=right,open=false": { "model": "terrestria:block/sakura_door_top_right", "y": 270 }, - "facing=north,half=upper,hinge=right,open=true": { "model": "terrestria:block/sakura_door_top_right_open", "y": 180 }, - "facing=south,half=lower,hinge=left,open=false": { "model": "terrestria:block/sakura_door_bottom_left", "y": 90 }, - "facing=south,half=lower,hinge=left,open=true": { "model": "terrestria:block/sakura_door_bottom_left_open", "y": 180 }, - "facing=south,half=lower,hinge=right,open=false": { "model": "terrestria:block/sakura_door_bottom_right", "y": 90 }, - "facing=south,half=lower,hinge=right,open=true": { "model": "terrestria:block/sakura_door_bottom_right_open" }, - "facing=south,half=upper,hinge=left,open=false": { "model": "terrestria:block/sakura_door_top_left", "y": 90 }, - "facing=south,half=upper,hinge=left,open=true": { "model": "terrestria:block/sakura_door_top_left_open", "y": 180 }, - "facing=south,half=upper,hinge=right,open=false": { "model": "terrestria:block/sakura_door_top_right", "y": 90 }, - "facing=south,half=upper,hinge=right,open=true": { "model": "terrestria:block/sakura_door_top_right_open" }, - "facing=west,half=lower,hinge=left,open=false": { "model": "terrestria:block/sakura_door_bottom_left", "y": 180 }, - "facing=west,half=lower,hinge=left,open=true": { "model": "terrestria:block/sakura_door_bottom_left_open", "y": 270 }, - "facing=west,half=lower,hinge=right,open=false": { "model": "terrestria:block/sakura_door_bottom_right", "y": 180 }, - "facing=west,half=lower,hinge=right,open=true": { "model": "terrestria:block/sakura_door_bottom_right_open", "y": 90 }, - "facing=west,half=upper,hinge=left,open=false": { "model": "terrestria:block/sakura_door_top_left", "y": 180 }, - "facing=west,half=upper,hinge=left,open=true": { "model": "terrestria:block/sakura_door_top_left_open", "y": 270 }, - "facing=west,half=upper,hinge=right,open=false": { "model": "terrestria:block/sakura_door_top_right", "y": 180 }, - "facing=west,half=upper,hinge=right,open=true": { "model": "terrestria:block/sakura_door_top_right_open", "y": 90 } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/sakura_fence.json b/client/src/main/resources/assets/terrestria/blockstates/sakura_fence.json deleted file mode 100644 index 66c08751..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/sakura_fence.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "multipart": [ - { - "apply": { - "model": "terrestria:block/sakura_fence_post" - } - }, - { - "when": { - "north": "true" - }, - "apply": { - "model": "terrestria:block/sakura_fence_side", - "uvlock": true - } - }, - { - "when": { - "east": "true" - }, - "apply": { - "model": "terrestria:block/sakura_fence_side", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "true" - }, - "apply": { - "model": "terrestria:block/sakura_fence_side", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "true" - }, - "apply": { - "model": "terrestria:block/sakura_fence_side", - "y": 270, - "uvlock": true - } - } - ] -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/sakura_fence_gate.json b/client/src/main/resources/assets/terrestria/blockstates/sakura_fence_gate.json deleted file mode 100644 index 17984996..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/sakura_fence_gate.json +++ /dev/null @@ -1,80 +0,0 @@ -{ - "variants": { - "facing=south,in_wall=false,open=false": { - "model": "terrestria:block/sakura_fence_gate", - "uvlock": true - }, - "facing=west,in_wall=false,open=false": { - "model": "terrestria:block/sakura_fence_gate", - "uvlock": true, - "y": 90 - }, - "facing=north,in_wall=false,open=false": { - "model": "terrestria:block/sakura_fence_gate", - "uvlock": true, - "y": 180 - }, - "facing=east,in_wall=false,open=false": { - "model": "terrestria:block/sakura_fence_gate", - "uvlock": true, - "y": 270 - }, - "facing=south,in_wall=false,open=true": { - "model": "terrestria:block/sakura_fence_gate_open", - "uvlock": true - }, - "facing=west,in_wall=false,open=true": { - "model": "terrestria:block/sakura_fence_gate_open", - "uvlock": true, - "y": 90 - }, - "facing=north,in_wall=false,open=true": { - "model": "terrestria:block/sakura_fence_gate_open", - "uvlock": true, - "y": 180 - }, - "facing=east,in_wall=false,open=true": { - "model": "terrestria:block/sakura_fence_gate_open", - "uvlock": true, - "y": 270 - }, - "facing=south,in_wall=true,open=false": { - "model": "terrestria:block/sakura_fence_gate_wall", - "uvlock": true - }, - "facing=west,in_wall=true,open=false": { - "model": "terrestria:block/sakura_fence_gate_wall", - "uvlock": true, - "y": 90 - }, - "facing=north,in_wall=true,open=false": { - "model": "terrestria:block/sakura_fence_gate_wall", - "uvlock": true, - "y": 180 - }, - "facing=east,in_wall=true,open=false": { - "model": "terrestria:block/sakura_fence_gate_wall", - "uvlock": true, - "y": 270 - }, - "facing=south,in_wall=true,open=true": { - "model": "terrestria:block/sakura_fence_gate_wall_open", - "uvlock": true - }, - "facing=west,in_wall=true,open=true": { - "model": "terrestria:block/sakura_fence_gate_wall_open", - "uvlock": true, - "y": 90 - }, - "facing=north,in_wall=true,open=true": { - "model": "terrestria:block/sakura_fence_gate_wall_open", - "uvlock": true, - "y": 180 - }, - "facing=east,in_wall=true,open=true": { - "model": "terrestria:block/sakura_fence_gate_wall_open", - "uvlock": true, - "y": 270 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/sakura_hanging_sign.json b/client/src/main/resources/assets/terrestria/blockstates/sakura_hanging_sign.json deleted file mode 100644 index 29233c58..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/sakura_hanging_sign.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "terrestria:block/sakura_hanging_sign" } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/sakura_leaf_pile.json b/client/src/main/resources/assets/terrestria/blockstates/sakura_leaf_pile.json deleted file mode 100644 index 532f8714..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/sakura_leaf_pile.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/sakura_leaf_pile" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/sakura_leaves.json b/client/src/main/resources/assets/terrestria/blockstates/sakura_leaves.json deleted file mode 100644 index 81d283f4..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/sakura_leaves.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/sakura_leaves" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/sakura_log.json b/client/src/main/resources/assets/terrestria/blockstates/sakura_log.json deleted file mode 100644 index d28a15f3..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/sakura_log.json +++ /dev/null @@ -1,180 +0,0 @@ -{ - "multipart": [ - { - "when": { "up": "true"}, - "apply": { - "model": "terrestria:block/sakura_log_branch" - } - }, - { - "when": { "down": "true"}, - "apply": { - "model": "terrestria:block/sakura_log_branch", - "x": 180 - } - }, - { - "when": { "north": "true"}, - "apply": { - "model": "terrestria:block/sakura_log_branch", - "x": 90 - } - }, - { - "when": { "south": "true"}, - "apply": { - "model": "terrestria:block/sakura_log_branch", - "x": 90, - "y": 180 - } - }, - { - "when": { "east": "true"}, - "apply": { - "model": "terrestria:block/sakura_log_branch", - "x": 90, - "y": 90 - } - }, - { - "when": { "west": "true"}, - "apply": { - "model": "terrestria:block/sakura_log_branch", - "x": 90, - "y": 270 - } - }, - { - "when": { "up": "false"}, - "apply": { - "model": "terrestria:block/sakura_log" - } - }, - { - "when": { "down": "false"}, - "apply": { - "model": "terrestria:block/sakura_log", - "x": 180 - } - }, - { - "when": { "north": "false"}, - "apply": { - "model": "terrestria:block/sakura_log", - "x": 90 - } - }, - { - "when": { "south": "false"}, - "apply": { - "model": "terrestria:block/sakura_log", - "x": 90, - "y": 180 - } - }, - { - "when": { "east": "false"}, - "apply": { - "model": "terrestria:block/sakura_log", - "x": 90, - "y": 90 - } - }, - { - "when": { "west": "false"}, - "apply": { - "model": "terrestria:block/sakura_log", - "x": 90, - "y": 270 - } - }, - { - "when": { "up": "true", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/sakura_log_leaves_cutout" - } - }, - { - "when": { "down": "true", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/sakura_log_leaves_cutout", - "x": 180 - } - }, - { - "when": { "north": "true", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/sakura_log_leaves_cutout", - "x": 90 - } - }, - { - "when": { "south": "true", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/sakura_log_leaves_cutout", - "x": 90, - "y": 180 - } - }, - { - "when": { "east": "true", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/sakura_log_leaves_cutout", - "x": 90, - "y": 90 - } - }, - { - "when": { "west": "true", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/sakura_log_leaves_cutout", - "x": 90, - "y": 270 - } - }, - { - "when": { "up": "false", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/sakura_log_leaves" - } - }, - { - "when": { "down": "false", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/sakura_log_leaves", - "x": 180 - } - }, - { - "when": { "north": "false", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/sakura_log_leaves", - "x": 90 - } - }, - { - "when": { "south": "false", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/sakura_log_leaves", - "x": 90, - "y": 180 - } - }, - { - "when": { "east": "false", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/sakura_log_leaves", - "x": 90, - "y": 90 - } - }, - { - "when": { "west": "false", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/sakura_log_leaves", - "x": 90, - "y": 270 - } - } - ] -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/sakura_planks.json b/client/src/main/resources/assets/terrestria/blockstates/sakura_planks.json deleted file mode 100644 index 43ea91c8..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/sakura_planks.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/sakura_planks" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/sakura_pressure_plate.json b/client/src/main/resources/assets/terrestria/blockstates/sakura_pressure_plate.json deleted file mode 100644 index 99ba129c..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/sakura_pressure_plate.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "variants": { - "powered=false": { - "model": "terrestria:block/sakura_pressure_plate" - }, - "powered=true": { - "model": "terrestria:block/sakura_pressure_plate_down" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/sakura_sapling.json b/client/src/main/resources/assets/terrestria/blockstates/sakura_sapling.json deleted file mode 100644 index e0889fda..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/sakura_sapling.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "variants": { - "stage=0": { - "model": "terrestria:block/sakura_sapling" - }, - "stage=1": { - "model": "terrestria:block/sakura_sapling" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/sakura_sign.json b/client/src/main/resources/assets/terrestria/blockstates/sakura_sign.json deleted file mode 100644 index bcde4bf8..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/sakura_sign.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/sakura_sign" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/sakura_slab.json b/client/src/main/resources/assets/terrestria/blockstates/sakura_slab.json deleted file mode 100644 index b79485f0..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/sakura_slab.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "type=bottom": { - "model": "terrestria:block/sakura_slab" - }, - "type=top": { - "model": "terrestria:block/sakura_slab_top" - }, - "type=double": { - "model": "terrestria:block/sakura_planks" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/sakura_stairs.json b/client/src/main/resources/assets/terrestria/blockstates/sakura_stairs.json deleted file mode 100644 index 144dd27d..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/sakura_stairs.json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { - "model": "terrestria:block/sakura_stairs" - }, - "facing=west,half=bottom,shape=straight": { - "model": "terrestria:block/sakura_stairs", - "y": 180, - "uvlock": true - }, - "facing=south,half=bottom,shape=straight": { - "model": "terrestria:block/sakura_stairs", - "y": 90, - "uvlock": true - }, - "facing=north,half=bottom,shape=straight": { - "model": "terrestria:block/sakura_stairs", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_right": { - "model": "terrestria:block/sakura_stairs_outer" - }, - "facing=west,half=bottom,shape=outer_right": { - "model": "terrestria:block/sakura_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_right": { - "model": "terrestria:block/sakura_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_right": { - "model": "terrestria:block/sakura_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_left": { - "model": "terrestria:block/sakura_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_left": { - "model": "terrestria:block/sakura_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_left": { - "model": "terrestria:block/sakura_stairs_outer" - }, - "facing=north,half=bottom,shape=outer_left": { - "model": "terrestria:block/sakura_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_right": { - "model": "terrestria:block/sakura_stairs_inner" - }, - "facing=west,half=bottom,shape=inner_right": { - "model": "terrestria:block/sakura_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_right": { - "model": "terrestria:block/sakura_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_right": { - "model": "terrestria:block/sakura_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_left": { - "model": "terrestria:block/sakura_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_left": { - "model": "terrestria:block/sakura_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_left": { - "model": "terrestria:block/sakura_stairs_inner" - }, - "facing=north,half=bottom,shape=inner_left": { - "model": "terrestria:block/sakura_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=east,half=top,shape=straight": { - "model": "terrestria:block/sakura_stairs", - "x": 180, - "uvlock": true - }, - "facing=west,half=top,shape=straight": { - "model": "terrestria:block/sakura_stairs", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=straight": { - "model": "terrestria:block/sakura_stairs", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=north,half=top,shape=straight": { - "model": "terrestria:block/sakura_stairs", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=east,half=top,shape=outer_right": { - "model": "terrestria:block/sakura_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=top,shape=outer_right": { - "model": "terrestria:block/sakura_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=top,shape=outer_right": { - "model": "terrestria:block/sakura_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=north,half=top,shape=outer_right": { - "model": "terrestria:block/sakura_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=outer_left": { - "model": "terrestria:block/sakura_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=west,half=top,shape=outer_left": { - "model": "terrestria:block/sakura_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=outer_left": { - "model": "terrestria:block/sakura_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=north,half=top,shape=outer_left": { - "model": "terrestria:block/sakura_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=east,half=top,shape=inner_right": { - "model": "terrestria:block/sakura_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=top,shape=inner_right": { - "model": "terrestria:block/sakura_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=top,shape=inner_right": { - "model": "terrestria:block/sakura_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=north,half=top,shape=inner_right": { - "model": "terrestria:block/sakura_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=inner_left": { - "model": "terrestria:block/sakura_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_left": { - "model": "terrestria:block/sakura_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=inner_left": { - "model": "terrestria:block/sakura_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=north,half=top,shape=inner_left": { - "model": "terrestria:block/sakura_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/sakura_trapdoor.json b/client/src/main/resources/assets/terrestria/blockstates/sakura_trapdoor.json deleted file mode 100644 index 9feb5a9a..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/sakura_trapdoor.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "variants": { - "facing=north,half=bottom,open=false": { - "model": "terrestria:block/sakura_trapdoor_bottom" - }, - "facing=south,half=bottom,open=false": { - "model": "terrestria:block/sakura_trapdoor_bottom", - "y": 180 - }, - "facing=east,half=bottom,open=false": { - "model": "terrestria:block/sakura_trapdoor_bottom", - "y": 90 - }, - "facing=west,half=bottom,open=false": { - "model": "terrestria:block/sakura_trapdoor_bottom", - "y": 270 - }, - "facing=north,half=top,open=false": { - "model": "terrestria:block/sakura_trapdoor_top" - }, - "facing=south,half=top,open=false": { - "model": "terrestria:block/sakura_trapdoor_top", - "y": 180 - }, - "facing=east,half=top,open=false": { - "model": "terrestria:block/sakura_trapdoor_top", - "y": 90 - }, - "facing=west,half=top,open=false": { - "model": "terrestria:block/sakura_trapdoor_top", - "y": 270 - }, - "facing=north,half=bottom,open=true": { - "model": "terrestria:block/sakura_trapdoor_open" - }, - "facing=south,half=bottom,open=true": { - "model": "terrestria:block/sakura_trapdoor_open", - "y": 180 - }, - "facing=east,half=bottom,open=true": { - "model": "terrestria:block/sakura_trapdoor_open", - "y": 90 - }, - "facing=west,half=bottom,open=true": { - "model": "terrestria:block/sakura_trapdoor_open", - "y": 270 - }, - "facing=north,half=top,open=true": { - "model": "terrestria:block/sakura_trapdoor_open", - "x": 180, - "y": 180 - }, - "facing=south,half=top,open=true": { - "model": "terrestria:block/sakura_trapdoor_open", - "x": 180, - "y": 0 - }, - "facing=east,half=top,open=true": { - "model": "terrestria:block/sakura_trapdoor_open", - "x": 180, - "y": 270 - }, - "facing=west,half=top,open=true": { - "model": "terrestria:block/sakura_trapdoor_open", - "x": 180, - "y": 90 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/sakura_wall_hanging_sign.json b/client/src/main/resources/assets/terrestria/blockstates/sakura_wall_hanging_sign.json deleted file mode 100644 index 29233c58..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/sakura_wall_hanging_sign.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "terrestria:block/sakura_hanging_sign" } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/sakura_wall_sign.json b/client/src/main/resources/assets/terrestria/blockstates/sakura_wall_sign.json deleted file mode 100644 index bcde4bf8..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/sakura_wall_sign.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/sakura_sign" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/small_oak_log.json b/client/src/main/resources/assets/terrestria/blockstates/small_oak_log.json deleted file mode 100644 index a07963ef..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/small_oak_log.json +++ /dev/null @@ -1,180 +0,0 @@ -{ - "multipart": [ - { - "when": { "up": "true"}, - "apply": { - "model": "terrestria:block/small_oak_log_branch" - } - }, - { - "when": { "down": "true"}, - "apply": { - "model": "terrestria:block/small_oak_log_branch", - "x": 180 - } - }, - { - "when": { "north": "true"}, - "apply": { - "model": "terrestria:block/small_oak_log_branch", - "x": 90 - } - }, - { - "when": { "south": "true"}, - "apply": { - "model": "terrestria:block/small_oak_log_branch", - "x": 90, - "y": 180 - } - }, - { - "when": { "east": "true"}, - "apply": { - "model": "terrestria:block/small_oak_log_branch", - "x": 90, - "y": 90 - } - }, - { - "when": { "west": "true"}, - "apply": { - "model": "terrestria:block/small_oak_log_branch", - "x": 90, - "y": 270 - } - }, - { - "when": { "up": "false"}, - "apply": { - "model": "terrestria:block/small_oak_log" - } - }, - { - "when": { "down": "false"}, - "apply": { - "model": "terrestria:block/small_oak_log", - "x": 180 - } - }, - { - "when": { "north": "false"}, - "apply": { - "model": "terrestria:block/small_oak_log", - "x": 90 - } - }, - { - "when": { "south": "false"}, - "apply": { - "model": "terrestria:block/small_oak_log", - "x": 90, - "y": 180 - } - }, - { - "when": { "east": "false"}, - "apply": { - "model": "terrestria:block/small_oak_log", - "x": 90, - "y": 90 - } - }, - { - "when": { "west": "false"}, - "apply": { - "model": "terrestria:block/small_oak_log", - "x": 90, - "y": 270 - } - }, - { - "when": { "up": "true", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/small_oak_log_leaves_cutout" - } - }, - { - "when": { "down": "true", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/small_oak_log_leaves_cutout", - "x": 180 - } - }, - { - "when": { "north": "true", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/small_oak_log_leaves_cutout", - "x": 90 - } - }, - { - "when": { "south": "true", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/small_oak_log_leaves_cutout", - "x": 90, - "y": 180 - } - }, - { - "when": { "east": "true", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/small_oak_log_leaves_cutout", - "x": 90, - "y": 90 - } - }, - { - "when": { "west": "true", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/small_oak_log_leaves_cutout", - "x": 90, - "y": 270 - } - }, - { - "when": { "up": "false", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/small_oak_log_leaves" - } - }, - { - "when": { "down": "false", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/small_oak_log_leaves", - "x": 180 - } - }, - { - "when": { "north": "false", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/small_oak_log_leaves", - "x": 90 - } - }, - { - "when": { "south": "false", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/small_oak_log_leaves", - "x": 90, - "y": 180 - } - }, - { - "when": { "east": "false", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/small_oak_log_leaves", - "x": 90, - "y": 90 - } - }, - { - "when": { "west": "false", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/small_oak_log_leaves", - "x": 90, - "y": 270 - } - } - ] -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/smooth_basalt.json b/client/src/main/resources/assets/terrestria/blockstates/smooth_basalt.json deleted file mode 100644 index 7204ba99..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/smooth_basalt.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/smooth_basalt" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/smooth_basalt_slab.json b/client/src/main/resources/assets/terrestria/blockstates/smooth_basalt_slab.json deleted file mode 100644 index c9bc02e9..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/smooth_basalt_slab.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "type=bottom": { - "model": "terrestria:block/smooth_basalt_slab" - }, - "type=top": { - "model": "terrestria:block/smooth_basalt_slab_top" - }, - "type=double": { - "model": "terrestria:block/smooth_basalt_double_slab" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/smooth_basalt_stairs.json b/client/src/main/resources/assets/terrestria/blockstates/smooth_basalt_stairs.json deleted file mode 100644 index 803e6dd5..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/smooth_basalt_stairs.json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { - "model": "terrestria:block/smooth_basalt_stairs" - }, - "facing=west,half=bottom,shape=straight": { - "model": "terrestria:block/smooth_basalt_stairs", - "y": 180, - "uvlock": true - }, - "facing=south,half=bottom,shape=straight": { - "model": "terrestria:block/smooth_basalt_stairs", - "y": 90, - "uvlock": true - }, - "facing=north,half=bottom,shape=straight": { - "model": "terrestria:block/smooth_basalt_stairs", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_right": { - "model": "terrestria:block/smooth_basalt_stairs_outer" - }, - "facing=west,half=bottom,shape=outer_right": { - "model": "terrestria:block/smooth_basalt_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_right": { - "model": "terrestria:block/smooth_basalt_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_right": { - "model": "terrestria:block/smooth_basalt_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_left": { - "model": "terrestria:block/smooth_basalt_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_left": { - "model": "terrestria:block/smooth_basalt_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_left": { - "model": "terrestria:block/smooth_basalt_stairs_outer" - }, - "facing=north,half=bottom,shape=outer_left": { - "model": "terrestria:block/smooth_basalt_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_right": { - "model": "terrestria:block/smooth_basalt_stairs_inner" - }, - "facing=west,half=bottom,shape=inner_right": { - "model": "terrestria:block/smooth_basalt_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_right": { - "model": "terrestria:block/smooth_basalt_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_right": { - "model": "terrestria:block/smooth_basalt_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_left": { - "model": "terrestria:block/smooth_basalt_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_left": { - "model": "terrestria:block/smooth_basalt_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_left": { - "model": "terrestria:block/smooth_basalt_stairs_inner" - }, - "facing=north,half=bottom,shape=inner_left": { - "model": "terrestria:block/smooth_basalt_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=east,half=top,shape=straight": { - "model": "terrestria:block/smooth_basalt_stairs", - "x": 180, - "uvlock": true - }, - "facing=west,half=top,shape=straight": { - "model": "terrestria:block/smooth_basalt_stairs", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=straight": { - "model": "terrestria:block/smooth_basalt_stairs", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=north,half=top,shape=straight": { - "model": "terrestria:block/smooth_basalt_stairs", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=east,half=top,shape=outer_right": { - "model": "terrestria:block/smooth_basalt_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=top,shape=outer_right": { - "model": "terrestria:block/smooth_basalt_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=top,shape=outer_right": { - "model": "terrestria:block/smooth_basalt_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=north,half=top,shape=outer_right": { - "model": "terrestria:block/smooth_basalt_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=outer_left": { - "model": "terrestria:block/smooth_basalt_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=west,half=top,shape=outer_left": { - "model": "terrestria:block/smooth_basalt_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=outer_left": { - "model": "terrestria:block/smooth_basalt_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=north,half=top,shape=outer_left": { - "model": "terrestria:block/smooth_basalt_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=east,half=top,shape=inner_right": { - "model": "terrestria:block/smooth_basalt_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=top,shape=inner_right": { - "model": "terrestria:block/smooth_basalt_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=top,shape=inner_right": { - "model": "terrestria:block/smooth_basalt_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=north,half=top,shape=inner_right": { - "model": "terrestria:block/smooth_basalt_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=inner_left": { - "model": "terrestria:block/smooth_basalt_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_left": { - "model": "terrestria:block/smooth_basalt_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=inner_left": { - "model": "terrestria:block/smooth_basalt_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=north,half=top,shape=inner_left": { - "model": "terrestria:block/smooth_basalt_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/smooth_basalt_wall.json b/client/src/main/resources/assets/terrestria/blockstates/smooth_basalt_wall.json deleted file mode 100644 index 3bc62038..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/smooth_basalt_wall.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "multipart": [ - { - "when": { - "up": "true" - }, - "apply": { - "model": "terrestria:block/smooth_basalt_wall_post" - } - }, - { - "when": { - "north": "low" - }, - "apply": { - "model": "terrestria:block/smooth_basalt_wall_side", - "uvlock": true - } - }, - { - "when": { - "east": "low" - }, - "apply": { - "model": "terrestria:block/smooth_basalt_wall_side", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "low" - }, - "apply": { - "model": "terrestria:block/smooth_basalt_wall_side", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "low" - }, - "apply": { - "model": "terrestria:block/smooth_basalt_wall_side", - "y": 270, - "uvlock": true - } - }, - { - "when": { - "north": "tall" - }, - "apply": { - "model": "terrestria:block/smooth_basalt_wall_side_tall", - "uvlock": true - } - }, - { - "when": { - "east": "tall" - }, - "apply": { - "model": "terrestria:block/smooth_basalt_wall_side_tall", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "tall" - }, - "apply": { - "model": "terrestria:block/smooth_basalt_wall_side_tall", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "tall" - }, - "apply": { - "model": "terrestria:block/smooth_basalt_wall_side_tall", - "y": 270, - "uvlock": true - } - } - ] -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/stripped_cypress_log.json b/client/src/main/resources/assets/terrestria/blockstates/stripped_cypress_log.json deleted file mode 100644 index aa777a10..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/stripped_cypress_log.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "variants": { - "axis=x": { - "model": "terrestria:block/stripped_cypress_log", - "x": 90, - "y": 90 - }, - "axis=y": { - "model": "terrestria:block/stripped_cypress_log" - }, - "axis=z": { - "model": "terrestria:block/stripped_cypress_log", - "x": 90 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/stripped_cypress_quarter_log.json b/client/src/main/resources/assets/terrestria/blockstates/stripped_cypress_quarter_log.json deleted file mode 100644 index 349c3f7d..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/stripped_cypress_quarter_log.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "variants": { - "axis=x,bark_side=southwest": { - "model": "terrestria:block/stripped_cypress_quarter_log", - "x": 90, - "y": 270 - }, - "axis=x,bark_side=northwest": { - "model": "terrestria:block/stripped_cypress_quarter_log", - "x": 90, - "y": 90 - }, - "axis=x,bark_side=northeast": { - "model": "terrestria:block/stripped_cypress_quarter_log", - "x": 270, - "y": 90 - }, - "axis=x,bark_side=southeast": { - "model": "terrestria:block/stripped_cypress_quarter_log", - "x": 270, - "y": 270 - }, - "axis=y,bark_side=southwest": { - "model": "terrestria:block/stripped_cypress_quarter_log" - }, - "axis=y,bark_side=northwest": { - "model": "terrestria:block/stripped_cypress_quarter_log", - "y": 90 - }, - "axis=y,bark_side=northeast": { - "model": "terrestria:block/stripped_cypress_quarter_log", - "y": 180 - }, - "axis=y,bark_side=southeast": { - "model": "terrestria:block/stripped_cypress_quarter_log", - "y": 270 - }, - "axis=z,bark_side=southwest": { - "model": "terrestria:block/stripped_cypress_quarter_log", - "x": 90 - }, - "axis=z,bark_side=northwest": { - "model": "terrestria:block/stripped_cypress_quarter_log", - "x": 270 - }, - "axis=z,bark_side=northeast": { - "model": "terrestria:block/stripped_cypress_quarter_log", - "x": 270, - "y": 180 - }, - "axis=z,bark_side=southeast": { - "model": "terrestria:block/stripped_cypress_quarter_log", - "x": 90, - "y": 180 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/stripped_cypress_wood.json b/client/src/main/resources/assets/terrestria/blockstates/stripped_cypress_wood.json deleted file mode 100644 index 4b15f5f1..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/stripped_cypress_wood.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "variants": { - "axis=x": { - "model": "terrestria:block/stripped_cypress_wood", - "x": 90, - "y": 90 - }, - "axis=y": { - "model": "terrestria:block/stripped_cypress_wood" - }, - "axis=z": { - "model": "terrestria:block/stripped_cypress_wood", - "x": 90 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/stripped_hemlock_log.json b/client/src/main/resources/assets/terrestria/blockstates/stripped_hemlock_log.json deleted file mode 100644 index ca2978f4..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/stripped_hemlock_log.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "variants": { - "axis=x": { - "model": "terrestria:block/stripped_hemlock_log", - "x": 90, - "y": 90 - }, - "axis=y": { - "model": "terrestria:block/stripped_hemlock_log" - }, - "axis=z": { - "model": "terrestria:block/stripped_hemlock_log", - "x": 90 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/stripped_hemlock_quarter_log.json b/client/src/main/resources/assets/terrestria/blockstates/stripped_hemlock_quarter_log.json deleted file mode 100644 index 167c7aa9..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/stripped_hemlock_quarter_log.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "variants": { - "axis=x,bark_side=southwest": { - "model": "terrestria:block/stripped_hemlock_quarter_log", - "x": 90, - "y": 270 - }, - "axis=x,bark_side=northwest": { - "model": "terrestria:block/stripped_hemlock_quarter_log", - "x": 90, - "y": 90 - }, - "axis=x,bark_side=northeast": { - "model": "terrestria:block/stripped_hemlock_quarter_log", - "x": 270, - "y": 90 - }, - "axis=x,bark_side=southeast": { - "model": "terrestria:block/stripped_hemlock_quarter_log", - "x": 270, - "y": 270 - }, - "axis=y,bark_side=southwest": { - "model": "terrestria:block/stripped_hemlock_quarter_log" - }, - "axis=y,bark_side=northwest": { - "model": "terrestria:block/stripped_hemlock_quarter_log", - "y": 90 - }, - "axis=y,bark_side=northeast": { - "model": "terrestria:block/stripped_hemlock_quarter_log", - "y": 180 - }, - "axis=y,bark_side=southeast": { - "model": "terrestria:block/stripped_hemlock_quarter_log", - "y": 270 - }, - "axis=z,bark_side=southwest": { - "model": "terrestria:block/stripped_hemlock_quarter_log", - "x": 90 - }, - "axis=z,bark_side=northwest": { - "model": "terrestria:block/stripped_hemlock_quarter_log", - "x": 270 - }, - "axis=z,bark_side=northeast": { - "model": "terrestria:block/stripped_hemlock_quarter_log", - "x": 270, - "y": 180 - }, - "axis=z,bark_side=southeast": { - "model": "terrestria:block/stripped_hemlock_quarter_log", - "x": 90, - "y": 180 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/stripped_hemlock_wood.json b/client/src/main/resources/assets/terrestria/blockstates/stripped_hemlock_wood.json deleted file mode 100644 index 6c6fcb07..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/stripped_hemlock_wood.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "variants": { - "axis=x": { - "model": "terrestria:block/stripped_hemlock_wood", - "x": 90, - "y": 90 - }, - "axis=y": { - "model": "terrestria:block/stripped_hemlock_wood" - }, - "axis=z": { - "model": "terrestria:block/stripped_hemlock_wood", - "x": 90 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/stripped_japanese_maple_log.json b/client/src/main/resources/assets/terrestria/blockstates/stripped_japanese_maple_log.json deleted file mode 100644 index 83e4cf43..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/stripped_japanese_maple_log.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "variants": { - "axis=x": { - "model": "terrestria:block/stripped_japanese_maple_log", - "x": 90, - "y": 90 - }, - "axis=y": { - "model": "terrestria:block/stripped_japanese_maple_log" - }, - "axis=z": { - "model": "terrestria:block/stripped_japanese_maple_log", - "x": 90 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/stripped_japanese_maple_wood.json b/client/src/main/resources/assets/terrestria/blockstates/stripped_japanese_maple_wood.json deleted file mode 100644 index 01bc944d..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/stripped_japanese_maple_wood.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "variants": { - "axis=x": { - "model": "terrestria:block/stripped_japanese_maple_wood", - "x": 90, - "y": 90 - }, - "axis=y": { - "model": "terrestria:block/stripped_japanese_maple_wood" - }, - "axis=z": { - "model": "terrestria:block/stripped_japanese_maple_wood", - "x": 90 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/stripped_rainbow_eucalyptus_log.json b/client/src/main/resources/assets/terrestria/blockstates/stripped_rainbow_eucalyptus_log.json deleted file mode 100644 index b4816468..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/stripped_rainbow_eucalyptus_log.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "variants": { - "axis=x": { - "model": "terrestria:block/stripped_rainbow_eucalyptus_log", - "x": 90, - "y": 90 - }, - "axis=y": { - "model": "terrestria:block/stripped_rainbow_eucalyptus_log" - }, - "axis=z": { - "model": "terrestria:block/stripped_rainbow_eucalyptus_log", - "x": 90 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/stripped_rainbow_eucalyptus_quarter_log.json b/client/src/main/resources/assets/terrestria/blockstates/stripped_rainbow_eucalyptus_quarter_log.json deleted file mode 100644 index 675dc0a6..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/stripped_rainbow_eucalyptus_quarter_log.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "variants": { - "axis=x,bark_side=southwest": { - "model": "terrestria:block/stripped_rainbow_eucalyptus_quarter_log", - "x": 90, - "y": 270 - }, - "axis=x,bark_side=northwest": { - "model": "terrestria:block/stripped_rainbow_eucalyptus_quarter_log", - "x": 90, - "y": 90 - }, - "axis=x,bark_side=northeast": { - "model": "terrestria:block/stripped_rainbow_eucalyptus_quarter_log", - "x": 270, - "y": 90 - }, - "axis=x,bark_side=southeast": { - "model": "terrestria:block/stripped_rainbow_eucalyptus_quarter_log", - "x": 270, - "y": 270 - }, - "axis=y,bark_side=southwest": { - "model": "terrestria:block/stripped_rainbow_eucalyptus_quarter_log" - }, - "axis=y,bark_side=northwest": { - "model": "terrestria:block/stripped_rainbow_eucalyptus_quarter_log", - "y": 90 - }, - "axis=y,bark_side=northeast": { - "model": "terrestria:block/stripped_rainbow_eucalyptus_quarter_log", - "y": 180 - }, - "axis=y,bark_side=southeast": { - "model": "terrestria:block/stripped_rainbow_eucalyptus_quarter_log", - "y": 270 - }, - "axis=z,bark_side=southwest": { - "model": "terrestria:block/stripped_rainbow_eucalyptus_quarter_log", - "x": 90 - }, - "axis=z,bark_side=northwest": { - "model": "terrestria:block/stripped_rainbow_eucalyptus_quarter_log", - "x": 270 - }, - "axis=z,bark_side=northeast": { - "model": "terrestria:block/stripped_rainbow_eucalyptus_quarter_log", - "x": 270, - "y": 180 - }, - "axis=z,bark_side=southeast": { - "model": "terrestria:block/stripped_rainbow_eucalyptus_quarter_log", - "x": 90, - "y": 180 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/stripped_rainbow_eucalyptus_wood.json b/client/src/main/resources/assets/terrestria/blockstates/stripped_rainbow_eucalyptus_wood.json deleted file mode 100644 index ceff21a2..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/stripped_rainbow_eucalyptus_wood.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "variants": { - "axis=x": { - "model": "terrestria:block/stripped_rainbow_eucalyptus_wood", - "x": 90, - "y": 90 - }, - "axis=y": { - "model": "terrestria:block/stripped_rainbow_eucalyptus_wood" - }, - "axis=z": { - "model": "terrestria:block/stripped_rainbow_eucalyptus_wood", - "x": 90 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/stripped_redwood_log.json b/client/src/main/resources/assets/terrestria/blockstates/stripped_redwood_log.json deleted file mode 100644 index 4536ffb1..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/stripped_redwood_log.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "variants": { - "axis=x": { - "model": "terrestria:block/stripped_redwood_log", - "x": 90, - "y": 90 - }, - "axis=y": { - "model": "terrestria:block/stripped_redwood_log" - }, - "axis=z": { - "model": "terrestria:block/stripped_redwood_log", - "x": 90 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/stripped_redwood_quarter_log.json b/client/src/main/resources/assets/terrestria/blockstates/stripped_redwood_quarter_log.json deleted file mode 100644 index 05915398..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/stripped_redwood_quarter_log.json +++ /dev/null @@ -1,57 +0,0 @@ -{ - "variants": { - "axis=x,bark_side=southwest": { - "model": "terrestria:block/stripped_redwood_quarter_log", - "x": 90, - "y": 270 - }, - "axis=x,bark_side=northwest": { - "model": "terrestria:block/stripped_redwood_quarter_log", - "x": 90, - "y": 90 - }, - "axis=x,bark_side=northeast": { - "model": "terrestria:block/stripped_redwood_quarter_log", - "x": 270, - "y": 90 - }, - "axis=x,bark_side=southeast": { - "model": "terrestria:block/stripped_redwood_quarter_log", - "x": 270, - "y": 270 - }, - "axis=y,bark_side=southwest": { - "model": "terrestria:block/stripped_redwood_quarter_log" - }, - "axis=y,bark_side=northwest": { - "model": "terrestria:block/stripped_redwood_quarter_log", - "y": 90 - }, - "axis=y,bark_side=northeast": { - "model": "terrestria:block/stripped_redwood_quarter_log", - "y": 180 - }, - "axis=y,bark_side=southeast": { - "model": "terrestria:block/stripped_redwood_quarter_log", - "y": 270 - }, - "axis=z,bark_side=southwest": { - "model": "terrestria:block/stripped_redwood_quarter_log", - "x": 90 - }, - "axis=z,bark_side=northwest": { - "model": "terrestria:block/stripped_redwood_quarter_log", - "x": 270 - }, - "axis=z,bark_side=northeast": { - "model": "terrestria:block/stripped_redwood_quarter_log", - "x": 270, - "y": 180 - }, - "axis=z,bark_side=southeast": { - "model": "terrestria:block/stripped_redwood_quarter_log", - "x": 90, - "y": 180 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/stripped_redwood_wood.json b/client/src/main/resources/assets/terrestria/blockstates/stripped_redwood_wood.json deleted file mode 100644 index 14e0ed4a..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/stripped_redwood_wood.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "variants": { - "axis=x": { - "model": "terrestria:block/stripped_redwood_wood", - "x": 90, - "y": 90 - }, - "axis=y": { - "model": "terrestria:block/stripped_redwood_wood" - }, - "axis=z": { - "model": "terrestria:block/stripped_redwood_wood", - "x": 90 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/stripped_rubber_log.json b/client/src/main/resources/assets/terrestria/blockstates/stripped_rubber_log.json deleted file mode 100644 index 9604ab75..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/stripped_rubber_log.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "variants": { - "axis=x": { - "model": "terrestria:block/stripped_rubber_log", - "x": 90, - "y": 90 - }, - "axis=y": { - "model": "terrestria:block/stripped_rubber_log" - }, - "axis=z": { - "model": "terrestria:block/stripped_rubber_log", - "x": 90 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/stripped_rubber_wood.json b/client/src/main/resources/assets/terrestria/blockstates/stripped_rubber_wood.json deleted file mode 100644 index 8a81904f..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/stripped_rubber_wood.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "variants": { - "axis=x": { - "model": "terrestria:block/stripped_rubber_wood", - "x": 90, - "y": 90 - }, - "axis=y": { - "model": "terrestria:block/stripped_rubber_wood" - }, - "axis=z": { - "model": "terrestria:block/stripped_rubber_wood", - "x": 90 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/stripped_sakura_log.json b/client/src/main/resources/assets/terrestria/blockstates/stripped_sakura_log.json deleted file mode 100644 index d72c6164..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/stripped_sakura_log.json +++ /dev/null @@ -1,180 +0,0 @@ -{ - "multipart": [ - { - "when": { "up": "true"}, - "apply": { - "model": "terrestria:block/stripped_sakura_log_branch" - } - }, - { - "when": { "down": "true"}, - "apply": { - "model": "terrestria:block/stripped_sakura_log_branch", - "x": 180 - } - }, - { - "when": { "north": "true"}, - "apply": { - "model": "terrestria:block/stripped_sakura_log_branch", - "x": 90 - } - }, - { - "when": { "south": "true"}, - "apply": { - "model": "terrestria:block/stripped_sakura_log_branch", - "x": 90, - "y": 180 - } - }, - { - "when": { "east": "true"}, - "apply": { - "model": "terrestria:block/stripped_sakura_log_branch", - "x": 90, - "y": 90 - } - }, - { - "when": { "west": "true"}, - "apply": { - "model": "terrestria:block/stripped_sakura_log_branch", - "x": 90, - "y": 270 - } - }, - { - "when": { "up": "false"}, - "apply": { - "model": "terrestria:block/stripped_sakura_log" - } - }, - { - "when": { "down": "false"}, - "apply": { - "model": "terrestria:block/stripped_sakura_log", - "x": 180 - } - }, - { - "when": { "north": "false"}, - "apply": { - "model": "terrestria:block/stripped_sakura_log", - "x": 90 - } - }, - { - "when": { "south": "false"}, - "apply": { - "model": "terrestria:block/stripped_sakura_log", - "x": 90, - "y": 180 - } - }, - { - "when": { "east": "false"}, - "apply": { - "model": "terrestria:block/stripped_sakura_log", - "x": 90, - "y": 90 - } - }, - { - "when": { "west": "false"}, - "apply": { - "model": "terrestria:block/stripped_sakura_log", - "x": 90, - "y": 270 - } - }, - { - "when": { "up": "true", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/sakura_log_leaves_cutout" - } - }, - { - "when": { "down": "true", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/sakura_log_leaves_cutout", - "x": 180 - } - }, - { - "when": { "north": "true", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/sakura_log_leaves_cutout", - "x": 90 - } - }, - { - "when": { "south": "true", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/sakura_log_leaves_cutout", - "x": 90, - "y": 180 - } - }, - { - "when": { "east": "true", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/sakura_log_leaves_cutout", - "x": 90, - "y": 90 - } - }, - { - "when": { "west": "true", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/sakura_log_leaves_cutout", - "x": 90, - "y": 270 - } - }, - { - "when": { "up": "false", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/sakura_log_leaves" - } - }, - { - "when": { "down": "false", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/sakura_log_leaves", - "x": 180 - } - }, - { - "when": { "north": "false", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/sakura_log_leaves", - "x": 90 - } - }, - { - "when": { "south": "false", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/sakura_log_leaves", - "x": 90, - "y": 180 - } - }, - { - "when": { "east": "false", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/sakura_log_leaves", - "x": 90, - "y": 90 - } - }, - { - "when": { "west": "false", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/sakura_log_leaves", - "x": 90, - "y": 270 - } - } - ] -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/stripped_small_oak_log.json b/client/src/main/resources/assets/terrestria/blockstates/stripped_small_oak_log.json deleted file mode 100644 index 70db8c3b..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/stripped_small_oak_log.json +++ /dev/null @@ -1,180 +0,0 @@ -{ - "multipart": [ - { - "when": { "up": "true"}, - "apply": { - "model": "terrestria:block/stripped_small_oak_log_branch" - } - }, - { - "when": { "down": "true"}, - "apply": { - "model": "terrestria:block/stripped_small_oak_log_branch", - "x": 180 - } - }, - { - "when": { "north": "true"}, - "apply": { - "model": "terrestria:block/stripped_small_oak_log_branch", - "x": 90 - } - }, - { - "when": { "south": "true"}, - "apply": { - "model": "terrestria:block/stripped_small_oak_log_branch", - "x": 90, - "y": 180 - } - }, - { - "when": { "east": "true"}, - "apply": { - "model": "terrestria:block/stripped_small_oak_log_branch", - "x": 90, - "y": 90 - } - }, - { - "when": { "west": "true"}, - "apply": { - "model": "terrestria:block/stripped_small_oak_log_branch", - "x": 90, - "y": 270 - } - }, - { - "when": { "up": "false"}, - "apply": { - "model": "terrestria:block/stripped_small_oak_log" - } - }, - { - "when": { "down": "false"}, - "apply": { - "model": "terrestria:block/stripped_small_oak_log", - "x": 180 - } - }, - { - "when": { "north": "false"}, - "apply": { - "model": "terrestria:block/stripped_small_oak_log", - "x": 90 - } - }, - { - "when": { "south": "false"}, - "apply": { - "model": "terrestria:block/stripped_small_oak_log", - "x": 90, - "y": 180 - } - }, - { - "when": { "east": "false"}, - "apply": { - "model": "terrestria:block/stripped_small_oak_log", - "x": 90, - "y": 90 - } - }, - { - "when": { "west": "false"}, - "apply": { - "model": "terrestria:block/stripped_small_oak_log", - "x": 90, - "y": 270 - } - }, - { - "when": { "up": "true", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/small_oak_log_leaves_cutout" - } - }, - { - "when": { "down": "true", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/small_oak_log_leaves_cutout", - "x": 180 - } - }, - { - "when": { "north": "true", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/small_oak_log_leaves_cutout", - "x": 90 - } - }, - { - "when": { "south": "true", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/small_oak_log_leaves_cutout", - "x": 90, - "y": 180 - } - }, - { - "when": { "east": "true", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/small_oak_log_leaves_cutout", - "x": 90, - "y": 90 - } - }, - { - "when": { "west": "true", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/small_oak_log_leaves_cutout", - "x": 90, - "y": 270 - } - }, - { - "when": { "up": "false", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/small_oak_log_leaves" - } - }, - { - "when": { "down": "false", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/small_oak_log_leaves", - "x": 180 - } - }, - { - "when": { "north": "false", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/small_oak_log_leaves", - "x": 90 - } - }, - { - "when": { "south": "false", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/small_oak_log_leaves", - "x": 90, - "y": 180 - } - }, - { - "when": { "east": "false", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/small_oak_log_leaves", - "x": 90, - "y": 90 - } - }, - { - "when": { "west": "false", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/small_oak_log_leaves", - "x": 90, - "y": 270 - } - } - ] -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/stripped_willow_log.json b/client/src/main/resources/assets/terrestria/blockstates/stripped_willow_log.json deleted file mode 100644 index f804b500..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/stripped_willow_log.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "variants": { - "axis=x": { - "model": "terrestria:block/stripped_willow_log", - "x": 90, - "y": 90 - }, - "axis=y": { - "model": "terrestria:block/stripped_willow_log" - }, - "axis=z": { - "model": "terrestria:block/stripped_willow_log", - "x": 90 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/stripped_willow_wood.json b/client/src/main/resources/assets/terrestria/blockstates/stripped_willow_wood.json deleted file mode 100644 index 323f4d4b..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/stripped_willow_wood.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "variants": { - "axis=x": { - "model": "terrestria:block/stripped_willow_wood", - "x": 90, - "y": 90 - }, - "axis=y": { - "model": "terrestria:block/stripped_willow_wood" - }, - "axis=z": { - "model": "terrestria:block/stripped_willow_wood", - "x": 90 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/stripped_yucca_palm_log.json b/client/src/main/resources/assets/terrestria/blockstates/stripped_yucca_palm_log.json deleted file mode 100644 index a2ea3273..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/stripped_yucca_palm_log.json +++ /dev/null @@ -1,180 +0,0 @@ -{ - "multipart": [ - { - "when": { "up": "true"}, - "apply": { - "model": "terrestria:block/stripped_yucca_palm_log_branch" - } - }, - { - "when": { "down": "true"}, - "apply": { - "model": "terrestria:block/stripped_yucca_palm_log_branch", - "x": 180 - } - }, - { - "when": { "north": "true"}, - "apply": { - "model": "terrestria:block/stripped_yucca_palm_log_branch", - "x": 90 - } - }, - { - "when": { "south": "true"}, - "apply": { - "model": "terrestria:block/stripped_yucca_palm_log_branch", - "x": 90, - "y": 180 - } - }, - { - "when": { "east": "true"}, - "apply": { - "model": "terrestria:block/stripped_yucca_palm_log_branch", - "x": 90, - "y": 90 - } - }, - { - "when": { "west": "true"}, - "apply": { - "model": "terrestria:block/stripped_yucca_palm_log_branch", - "x": 90, - "y": 270 - } - }, - { - "when": { "up": "false"}, - "apply": { - "model": "terrestria:block/stripped_yucca_palm_log" - } - }, - { - "when": { "down": "false"}, - "apply": { - "model": "terrestria:block/stripped_yucca_palm_log", - "x": 180 - } - }, - { - "when": { "north": "false"}, - "apply": { - "model": "terrestria:block/stripped_yucca_palm_log", - "x": 90 - } - }, - { - "when": { "south": "false"}, - "apply": { - "model": "terrestria:block/stripped_yucca_palm_log", - "x": 90, - "y": 180 - } - }, - { - "when": { "east": "false"}, - "apply": { - "model": "terrestria:block/stripped_yucca_palm_log", - "x": 90, - "y": 90 - } - }, - { - "when": { "west": "false"}, - "apply": { - "model": "terrestria:block/stripped_yucca_palm_log", - "x": 90, - "y": 270 - } - }, - { - "when": { "up": "true", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/yucca_palm_log_leaves_cutout" - } - }, - { - "when": { "down": "true", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/yucca_palm_log_leaves_cutout", - "x": 180 - } - }, - { - "when": { "north": "true", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/yucca_palm_log_leaves_cutout", - "x": 90 - } - }, - { - "when": { "south": "true", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/yucca_palm_log_leaves_cutout", - "x": 90, - "y": 180 - } - }, - { - "when": { "east": "true", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/yucca_palm_log_leaves_cutout", - "x": 90, - "y": 90 - } - }, - { - "when": { "west": "true", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/yucca_palm_log_leaves_cutout", - "x": 90, - "y": 270 - } - }, - { - "when": { "up": "false", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/yucca_palm_log_leaves" - } - }, - { - "when": { "down": "false", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/yucca_palm_log_leaves", - "x": 180 - } - }, - { - "when": { "north": "false", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/yucca_palm_log_leaves", - "x": 90 - } - }, - { - "when": { "south": "false", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/yucca_palm_log_leaves", - "x": 90, - "y": 180 - } - }, - { - "when": { "east": "false", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/yucca_palm_log_leaves", - "x": 90, - "y": 90 - } - }, - { - "when": { "west": "false", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/yucca_palm_log_leaves", - "x": 90, - "y": 270 - } - } - ] -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/tall_cattail.json b/client/src/main/resources/assets/terrestria/blockstates/tall_cattail.json deleted file mode 100644 index 658a19ec..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/tall_cattail.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "variants": { - "half=lower": { - "model": "terrestria:block/tall_cattail_bottom" - }, - "half=upper": { - "model": "terrestria:block/tall_cattail_top" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/tiny_cactus.json b/client/src/main/resources/assets/terrestria/blockstates/tiny_cactus.json deleted file mode 100644 index 9562d7b8..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/tiny_cactus.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/tiny_cactus" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/willow_button.json b/client/src/main/resources/assets/terrestria/blockstates/willow_button.json deleted file mode 100644 index 29046f2d..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/willow_button.json +++ /dev/null @@ -1,118 +0,0 @@ -{ - "variants": { - "face=floor,facing=east,powered=false": { - "model": "terrestria:block/willow_button", - "y": 90 - }, - "face=floor,facing=west,powered=false": { - "model": "terrestria:block/willow_button", - "y": 270 - }, - "face=floor,facing=south,powered=false": { - "model": "terrestria:block/willow_button", - "y": 180 - }, - "face=floor,facing=north,powered=false": { - "model": "terrestria:block/willow_button" - }, - "face=wall,facing=east,powered=false": { - "model": "terrestria:block/willow_button", - "uvlock": true, - "x": 90, - "y": 90 - }, - "face=wall,facing=west,powered=false": { - "model": "terrestria:block/willow_button", - "uvlock": true, - "x": 90, - "y": 270 - }, - "face=wall,facing=south,powered=false": { - "model": "terrestria:block/willow_button", - "uvlock": true, - "x": 90, - "y": 180 - }, - "face=wall,facing=north,powered=false": { - "model": "terrestria:block/willow_button", - "uvlock": true, - "x": 90 - }, - "face=ceiling,facing=east,powered=false": { - "model": "terrestria:block/willow_button", - "x": 180, - "y": 270 - }, - "face=ceiling,facing=west,powered=false": { - "model": "terrestria:block/willow_button", - "x": 180, - "y": 90 - }, - "face=ceiling,facing=south,powered=false": { - "model": "terrestria:block/willow_button", - "x": 180 - }, - "face=ceiling,facing=north,powered=false": { - "model": "terrestria:block/willow_button", - "x": 180, - "y": 180 - }, - "face=floor,facing=east,powered=true": { - "model": "terrestria:block/willow_button_pressed", - "y": 90 - }, - "face=floor,facing=west,powered=true": { - "model": "terrestria:block/willow_button_pressed", - "y": 270 - }, - "face=floor,facing=south,powered=true": { - "model": "terrestria:block/willow_button_pressed", - "y": 180 - }, - "face=floor,facing=north,powered=true": { - "model": "terrestria:block/willow_button_pressed" - }, - "face=wall,facing=east,powered=true": { - "model": "terrestria:block/willow_button_pressed", - "uvlock": true, - "x": 90, - "y": 90 - }, - "face=wall,facing=west,powered=true": { - "model": "terrestria:block/willow_button_pressed", - "uvlock": true, - "x": 90, - "y": 270 - }, - "face=wall,facing=south,powered=true": { - "model": "terrestria:block/willow_button_pressed", - "uvlock": true, - "x": 90, - "y": 180 - }, - "face=wall,facing=north,powered=true": { - "model": "terrestria:block/willow_button_pressed", - "uvlock": true, - "x": 90 - }, - "face=ceiling,facing=east,powered=true": { - "model": "terrestria:block/willow_button_pressed", - "x": 180, - "y": 270 - }, - "face=ceiling,facing=west,powered=true": { - "model": "terrestria:block/willow_button_pressed", - "x": 180, - "y": 90 - }, - "face=ceiling,facing=south,powered=true": { - "model": "terrestria:block/willow_button_pressed", - "x": 180 - }, - "face=ceiling,facing=north,powered=true": { - "model": "terrestria:block/willow_button_pressed", - "x": 180, - "y": 180 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/willow_door.json b/client/src/main/resources/assets/terrestria/blockstates/willow_door.json deleted file mode 100644 index 82d08b7e..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/willow_door.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "variants": { - "facing=east,half=lower,hinge=left,open=false": { "model": "terrestria:block/willow_door_bottom_left" }, - "facing=east,half=lower,hinge=left,open=true": { "model": "terrestria:block/willow_door_bottom_left_open", "y": 90 }, - "facing=east,half=lower,hinge=right,open=false": { "model": "terrestria:block/willow_door_bottom_right" }, - "facing=east,half=lower,hinge=right,open=true": { "model": "terrestria:block/willow_door_bottom_right_open", "y": 270 }, - "facing=east,half=upper,hinge=left,open=false": { "model": "terrestria:block/willow_door_top_left" }, - "facing=east,half=upper,hinge=left,open=true": { "model": "terrestria:block/willow_door_top_left_open", "y": 90 }, - "facing=east,half=upper,hinge=right,open=false": { "model": "terrestria:block/willow_door_top_right" }, - "facing=east,half=upper,hinge=right,open=true": { "model": "terrestria:block/willow_door_top_right_open", "y": 270 }, - "facing=north,half=lower,hinge=left,open=false": { "model": "terrestria:block/willow_door_bottom_left", "y": 270 }, - "facing=north,half=lower,hinge=left,open=true": { "model": "terrestria:block/willow_door_bottom_left_open" }, - "facing=north,half=lower,hinge=right,open=false": { "model": "terrestria:block/willow_door_bottom_right", "y": 270 }, - "facing=north,half=lower,hinge=right,open=true": { "model": "terrestria:block/willow_door_bottom_right_open", "y": 180 }, - "facing=north,half=upper,hinge=left,open=false": { "model": "terrestria:block/willow_door_top_left", "y": 270 }, - "facing=north,half=upper,hinge=left,open=true": { "model": "terrestria:block/willow_door_top_left_open" }, - "facing=north,half=upper,hinge=right,open=false": { "model": "terrestria:block/willow_door_top_right", "y": 270 }, - "facing=north,half=upper,hinge=right,open=true": { "model": "terrestria:block/willow_door_top_right_open", "y": 180 }, - "facing=south,half=lower,hinge=left,open=false": { "model": "terrestria:block/willow_door_bottom_left", "y": 90 }, - "facing=south,half=lower,hinge=left,open=true": { "model": "terrestria:block/willow_door_bottom_left_open", "y": 180 }, - "facing=south,half=lower,hinge=right,open=false": { "model": "terrestria:block/willow_door_bottom_right", "y": 90 }, - "facing=south,half=lower,hinge=right,open=true": { "model": "terrestria:block/willow_door_bottom_right_open" }, - "facing=south,half=upper,hinge=left,open=false": { "model": "terrestria:block/willow_door_top_left", "y": 90 }, - "facing=south,half=upper,hinge=left,open=true": { "model": "terrestria:block/willow_door_top_left_open", "y": 180 }, - "facing=south,half=upper,hinge=right,open=false": { "model": "terrestria:block/willow_door_top_right", "y": 90 }, - "facing=south,half=upper,hinge=right,open=true": { "model": "terrestria:block/willow_door_top_right_open" }, - "facing=west,half=lower,hinge=left,open=false": { "model": "terrestria:block/willow_door_bottom_left", "y": 180 }, - "facing=west,half=lower,hinge=left,open=true": { "model": "terrestria:block/willow_door_bottom_left_open", "y": 270 }, - "facing=west,half=lower,hinge=right,open=false": { "model": "terrestria:block/willow_door_bottom_right", "y": 180 }, - "facing=west,half=lower,hinge=right,open=true": { "model": "terrestria:block/willow_door_bottom_right_open", "y": 90 }, - "facing=west,half=upper,hinge=left,open=false": { "model": "terrestria:block/willow_door_top_left", "y": 180 }, - "facing=west,half=upper,hinge=left,open=true": { "model": "terrestria:block/willow_door_top_left_open", "y": 270 }, - "facing=west,half=upper,hinge=right,open=false": { "model": "terrestria:block/willow_door_top_right", "y": 180 }, - "facing=west,half=upper,hinge=right,open=true": { "model": "terrestria:block/willow_door_top_right_open", "y": 90 } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/willow_fence.json b/client/src/main/resources/assets/terrestria/blockstates/willow_fence.json deleted file mode 100644 index bde1423c..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/willow_fence.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "multipart": [ - { - "apply": { - "model": "terrestria:block/willow_fence_post" - } - }, - { - "when": { - "north": "true" - }, - "apply": { - "model": "terrestria:block/willow_fence_side", - "uvlock": true - } - }, - { - "when": { - "east": "true" - }, - "apply": { - "model": "terrestria:block/willow_fence_side", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "true" - }, - "apply": { - "model": "terrestria:block/willow_fence_side", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "true" - }, - "apply": { - "model": "terrestria:block/willow_fence_side", - "y": 270, - "uvlock": true - } - } - ] -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/willow_fence_gate.json b/client/src/main/resources/assets/terrestria/blockstates/willow_fence_gate.json deleted file mode 100644 index 97fcae30..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/willow_fence_gate.json +++ /dev/null @@ -1,80 +0,0 @@ -{ - "variants": { - "facing=south,in_wall=false,open=false": { - "model": "terrestria:block/willow_fence_gate", - "uvlock": true - }, - "facing=west,in_wall=false,open=false": { - "model": "terrestria:block/willow_fence_gate", - "uvlock": true, - "y": 90 - }, - "facing=north,in_wall=false,open=false": { - "model": "terrestria:block/willow_fence_gate", - "uvlock": true, - "y": 180 - }, - "facing=east,in_wall=false,open=false": { - "model": "terrestria:block/willow_fence_gate", - "uvlock": true, - "y": 270 - }, - "facing=south,in_wall=false,open=true": { - "model": "terrestria:block/willow_fence_gate_open", - "uvlock": true - }, - "facing=west,in_wall=false,open=true": { - "model": "terrestria:block/willow_fence_gate_open", - "uvlock": true, - "y": 90 - }, - "facing=north,in_wall=false,open=true": { - "model": "terrestria:block/willow_fence_gate_open", - "uvlock": true, - "y": 180 - }, - "facing=east,in_wall=false,open=true": { - "model": "terrestria:block/willow_fence_gate_open", - "uvlock": true, - "y": 270 - }, - "facing=south,in_wall=true,open=false": { - "model": "terrestria:block/willow_fence_gate_wall", - "uvlock": true - }, - "facing=west,in_wall=true,open=false": { - "model": "terrestria:block/willow_fence_gate_wall", - "uvlock": true, - "y": 90 - }, - "facing=north,in_wall=true,open=false": { - "model": "terrestria:block/willow_fence_gate_wall", - "uvlock": true, - "y": 180 - }, - "facing=east,in_wall=true,open=false": { - "model": "terrestria:block/willow_fence_gate_wall", - "uvlock": true, - "y": 270 - }, - "facing=south,in_wall=true,open=true": { - "model": "terrestria:block/willow_fence_gate_wall_open", - "uvlock": true - }, - "facing=west,in_wall=true,open=true": { - "model": "terrestria:block/willow_fence_gate_wall_open", - "uvlock": true, - "y": 90 - }, - "facing=north,in_wall=true,open=true": { - "model": "terrestria:block/willow_fence_gate_wall_open", - "uvlock": true, - "y": 180 - }, - "facing=east,in_wall=true,open=true": { - "model": "terrestria:block/willow_fence_gate_wall_open", - "uvlock": true, - "y": 270 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/willow_hanging_sign.json b/client/src/main/resources/assets/terrestria/blockstates/willow_hanging_sign.json deleted file mode 100644 index 6af0c2c1..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/willow_hanging_sign.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "terrestria:block/willow_hanging_sign" } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/willow_leaves.json b/client/src/main/resources/assets/terrestria/blockstates/willow_leaves.json deleted file mode 100644 index 68ab6a07..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/willow_leaves.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/willow_leaves" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/willow_log.json b/client/src/main/resources/assets/terrestria/blockstates/willow_log.json deleted file mode 100644 index db8970c7..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/willow_log.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "variants": { - "axis=x": { - "model": "terrestria:block/willow_log", - "x": 90, - "y": 90 - }, - "axis=y": { - "model": "terrestria:block/willow_log" - }, - "axis=z": { - "model": "terrestria:block/willow_log", - "x": 90 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/willow_planks.json b/client/src/main/resources/assets/terrestria/blockstates/willow_planks.json deleted file mode 100644 index 85ecd6b1..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/willow_planks.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/willow_planks" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/willow_pressure_plate.json b/client/src/main/resources/assets/terrestria/blockstates/willow_pressure_plate.json deleted file mode 100644 index 2a74fd42..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/willow_pressure_plate.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "variants": { - "powered=false": { - "model": "terrestria:block/willow_pressure_plate" - }, - "powered=true": { - "model": "terrestria:block/willow_pressure_plate_down" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/willow_sapling.json b/client/src/main/resources/assets/terrestria/blockstates/willow_sapling.json deleted file mode 100644 index 4ef75138..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/willow_sapling.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "variants": { - "stage=0": { - "model": "terrestria:block/willow_sapling" - }, - "stage=1": { - "model": "terrestria:block/willow_sapling" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/willow_sign.json b/client/src/main/resources/assets/terrestria/blockstates/willow_sign.json deleted file mode 100644 index 912930fb..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/willow_sign.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/willow_sign" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/willow_slab.json b/client/src/main/resources/assets/terrestria/blockstates/willow_slab.json deleted file mode 100644 index 6f8ad175..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/willow_slab.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "type=bottom": { - "model": "terrestria:block/willow_slab" - }, - "type=top": { - "model": "terrestria:block/willow_slab_top" - }, - "type=double": { - "model": "terrestria:block/willow_planks" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/willow_stairs.json b/client/src/main/resources/assets/terrestria/blockstates/willow_stairs.json deleted file mode 100644 index 10f610e5..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/willow_stairs.json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { - "model": "terrestria:block/willow_stairs" - }, - "facing=west,half=bottom,shape=straight": { - "model": "terrestria:block/willow_stairs", - "y": 180, - "uvlock": true - }, - "facing=south,half=bottom,shape=straight": { - "model": "terrestria:block/willow_stairs", - "y": 90, - "uvlock": true - }, - "facing=north,half=bottom,shape=straight": { - "model": "terrestria:block/willow_stairs", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_right": { - "model": "terrestria:block/willow_stairs_outer" - }, - "facing=west,half=bottom,shape=outer_right": { - "model": "terrestria:block/willow_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_right": { - "model": "terrestria:block/willow_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_right": { - "model": "terrestria:block/willow_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_left": { - "model": "terrestria:block/willow_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_left": { - "model": "terrestria:block/willow_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_left": { - "model": "terrestria:block/willow_stairs_outer" - }, - "facing=north,half=bottom,shape=outer_left": { - "model": "terrestria:block/willow_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_right": { - "model": "terrestria:block/willow_stairs_inner" - }, - "facing=west,half=bottom,shape=inner_right": { - "model": "terrestria:block/willow_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_right": { - "model": "terrestria:block/willow_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_right": { - "model": "terrestria:block/willow_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_left": { - "model": "terrestria:block/willow_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_left": { - "model": "terrestria:block/willow_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_left": { - "model": "terrestria:block/willow_stairs_inner" - }, - "facing=north,half=bottom,shape=inner_left": { - "model": "terrestria:block/willow_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=east,half=top,shape=straight": { - "model": "terrestria:block/willow_stairs", - "x": 180, - "uvlock": true - }, - "facing=west,half=top,shape=straight": { - "model": "terrestria:block/willow_stairs", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=straight": { - "model": "terrestria:block/willow_stairs", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=north,half=top,shape=straight": { - "model": "terrestria:block/willow_stairs", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=east,half=top,shape=outer_right": { - "model": "terrestria:block/willow_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=top,shape=outer_right": { - "model": "terrestria:block/willow_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=top,shape=outer_right": { - "model": "terrestria:block/willow_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=north,half=top,shape=outer_right": { - "model": "terrestria:block/willow_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=outer_left": { - "model": "terrestria:block/willow_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=west,half=top,shape=outer_left": { - "model": "terrestria:block/willow_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=outer_left": { - "model": "terrestria:block/willow_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=north,half=top,shape=outer_left": { - "model": "terrestria:block/willow_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=east,half=top,shape=inner_right": { - "model": "terrestria:block/willow_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=top,shape=inner_right": { - "model": "terrestria:block/willow_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=top,shape=inner_right": { - "model": "terrestria:block/willow_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=north,half=top,shape=inner_right": { - "model": "terrestria:block/willow_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=inner_left": { - "model": "terrestria:block/willow_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_left": { - "model": "terrestria:block/willow_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=inner_left": { - "model": "terrestria:block/willow_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=north,half=top,shape=inner_left": { - "model": "terrestria:block/willow_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/willow_trapdoor.json b/client/src/main/resources/assets/terrestria/blockstates/willow_trapdoor.json deleted file mode 100644 index c14a337b..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/willow_trapdoor.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "variants": { - "facing=north,half=bottom,open=false": { - "model": "terrestria:block/willow_trapdoor_bottom" - }, - "facing=south,half=bottom,open=false": { - "model": "terrestria:block/willow_trapdoor_bottom", - "y": 180 - }, - "facing=east,half=bottom,open=false": { - "model": "terrestria:block/willow_trapdoor_bottom", - "y": 90 - }, - "facing=west,half=bottom,open=false": { - "model": "terrestria:block/willow_trapdoor_bottom", - "y": 270 - }, - "facing=north,half=top,open=false": { - "model": "terrestria:block/willow_trapdoor_top" - }, - "facing=south,half=top,open=false": { - "model": "terrestria:block/willow_trapdoor_top", - "y": 180 - }, - "facing=east,half=top,open=false": { - "model": "terrestria:block/willow_trapdoor_top", - "y": 90 - }, - "facing=west,half=top,open=false": { - "model": "terrestria:block/willow_trapdoor_top", - "y": 270 - }, - "facing=north,half=bottom,open=true": { - "model": "terrestria:block/willow_trapdoor_open" - }, - "facing=south,half=bottom,open=true": { - "model": "terrestria:block/willow_trapdoor_open", - "y": 180 - }, - "facing=east,half=bottom,open=true": { - "model": "terrestria:block/willow_trapdoor_open", - "y": 90 - }, - "facing=west,half=bottom,open=true": { - "model": "terrestria:block/willow_trapdoor_open", - "y": 270 - }, - "facing=north,half=top,open=true": { - "model": "terrestria:block/willow_trapdoor_open", - "x": 180, - "y": 180 - }, - "facing=south,half=top,open=true": { - "model": "terrestria:block/willow_trapdoor_open", - "x": 180, - "y": 0 - }, - "facing=east,half=top,open=true": { - "model": "terrestria:block/willow_trapdoor_open", - "x": 180, - "y": 270 - }, - "facing=west,half=top,open=true": { - "model": "terrestria:block/willow_trapdoor_open", - "x": 180, - "y": 90 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/willow_wall_hanging_sign.json b/client/src/main/resources/assets/terrestria/blockstates/willow_wall_hanging_sign.json deleted file mode 100644 index 6af0c2c1..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/willow_wall_hanging_sign.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "terrestria:block/willow_hanging_sign" } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/willow_wall_sign.json b/client/src/main/resources/assets/terrestria/blockstates/willow_wall_sign.json deleted file mode 100644 index 912930fb..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/willow_wall_sign.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/willow_sign" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/willow_wood.json b/client/src/main/resources/assets/terrestria/blockstates/willow_wood.json deleted file mode 100644 index a7d52a42..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/willow_wood.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "variants": { - "axis=x": { - "model": "terrestria:block/willow_wood", - "x": 90, - "y": 90 - }, - "axis=y": { - "model": "terrestria:block/willow_wood" - }, - "axis=z": { - "model": "terrestria:block/willow_wood", - "x": 90 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/yucca_palm_button.json b/client/src/main/resources/assets/terrestria/blockstates/yucca_palm_button.json deleted file mode 100644 index aa00087c..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/yucca_palm_button.json +++ /dev/null @@ -1,118 +0,0 @@ -{ - "variants": { - "face=floor,facing=east,powered=false": { - "model": "terrestria:block/yucca_palm_button", - "y": 90 - }, - "face=floor,facing=west,powered=false": { - "model": "terrestria:block/yucca_palm_button", - "y": 270 - }, - "face=floor,facing=south,powered=false": { - "model": "terrestria:block/yucca_palm_button", - "y": 180 - }, - "face=floor,facing=north,powered=false": { - "model": "terrestria:block/yucca_palm_button" - }, - "face=wall,facing=east,powered=false": { - "model": "terrestria:block/yucca_palm_button", - "uvlock": true, - "x": 90, - "y": 90 - }, - "face=wall,facing=west,powered=false": { - "model": "terrestria:block/yucca_palm_button", - "uvlock": true, - "x": 90, - "y": 270 - }, - "face=wall,facing=south,powered=false": { - "model": "terrestria:block/yucca_palm_button", - "uvlock": true, - "x": 90, - "y": 180 - }, - "face=wall,facing=north,powered=false": { - "model": "terrestria:block/yucca_palm_button", - "uvlock": true, - "x": 90 - }, - "face=ceiling,facing=east,powered=false": { - "model": "terrestria:block/yucca_palm_button", - "x": 180, - "y": 270 - }, - "face=ceiling,facing=west,powered=false": { - "model": "terrestria:block/yucca_palm_button", - "x": 180, - "y": 90 - }, - "face=ceiling,facing=south,powered=false": { - "model": "terrestria:block/yucca_palm_button", - "x": 180 - }, - "face=ceiling,facing=north,powered=false": { - "model": "terrestria:block/yucca_palm_button", - "x": 180, - "y": 180 - }, - "face=floor,facing=east,powered=true": { - "model": "terrestria:block/yucca_palm_button_pressed", - "y": 90 - }, - "face=floor,facing=west,powered=true": { - "model": "terrestria:block/yucca_palm_button_pressed", - "y": 270 - }, - "face=floor,facing=south,powered=true": { - "model": "terrestria:block/yucca_palm_button_pressed", - "y": 180 - }, - "face=floor,facing=north,powered=true": { - "model": "terrestria:block/yucca_palm_button_pressed" - }, - "face=wall,facing=east,powered=true": { - "model": "terrestria:block/yucca_palm_button_pressed", - "uvlock": true, - "x": 90, - "y": 90 - }, - "face=wall,facing=west,powered=true": { - "model": "terrestria:block/yucca_palm_button_pressed", - "uvlock": true, - "x": 90, - "y": 270 - }, - "face=wall,facing=south,powered=true": { - "model": "terrestria:block/yucca_palm_button_pressed", - "uvlock": true, - "x": 90, - "y": 180 - }, - "face=wall,facing=north,powered=true": { - "model": "terrestria:block/yucca_palm_button_pressed", - "uvlock": true, - "x": 90 - }, - "face=ceiling,facing=east,powered=true": { - "model": "terrestria:block/yucca_palm_button_pressed", - "x": 180, - "y": 270 - }, - "face=ceiling,facing=west,powered=true": { - "model": "terrestria:block/yucca_palm_button_pressed", - "x": 180, - "y": 90 - }, - "face=ceiling,facing=south,powered=true": { - "model": "terrestria:block/yucca_palm_button_pressed", - "x": 180 - }, - "face=ceiling,facing=north,powered=true": { - "model": "terrestria:block/yucca_palm_button_pressed", - "x": 180, - "y": 180 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/yucca_palm_door.json b/client/src/main/resources/assets/terrestria/blockstates/yucca_palm_door.json deleted file mode 100644 index 0d7c0c09..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/yucca_palm_door.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "variants": { - "facing=east,half=lower,hinge=left,open=false": { "model": "terrestria:block/yucca_palm_door_bottom_left" }, - "facing=east,half=lower,hinge=left,open=true": { "model": "terrestria:block/yucca_palm_door_bottom_left_open", "y": 90 }, - "facing=east,half=lower,hinge=right,open=false": { "model": "terrestria:block/yucca_palm_door_bottom_right" }, - "facing=east,half=lower,hinge=right,open=true": { "model": "terrestria:block/yucca_palm_door_bottom_right_open", "y": 270 }, - "facing=east,half=upper,hinge=left,open=false": { "model": "terrestria:block/yucca_palm_door_top_left" }, - "facing=east,half=upper,hinge=left,open=true": { "model": "terrestria:block/yucca_palm_door_top_left_open", "y": 90 }, - "facing=east,half=upper,hinge=right,open=false": { "model": "terrestria:block/yucca_palm_door_top_right" }, - "facing=east,half=upper,hinge=right,open=true": { "model": "terrestria:block/yucca_palm_door_top_right_open", "y": 270 }, - "facing=north,half=lower,hinge=left,open=false": { "model": "terrestria:block/yucca_palm_door_bottom_left", "y": 270 }, - "facing=north,half=lower,hinge=left,open=true": { "model": "terrestria:block/yucca_palm_door_bottom_left_open" }, - "facing=north,half=lower,hinge=right,open=false": { "model": "terrestria:block/yucca_palm_door_bottom_right", "y": 270 }, - "facing=north,half=lower,hinge=right,open=true": { "model": "terrestria:block/yucca_palm_door_bottom_right_open", "y": 180 }, - "facing=north,half=upper,hinge=left,open=false": { "model": "terrestria:block/yucca_palm_door_top_left", "y": 270 }, - "facing=north,half=upper,hinge=left,open=true": { "model": "terrestria:block/yucca_palm_door_top_left_open" }, - "facing=north,half=upper,hinge=right,open=false": { "model": "terrestria:block/yucca_palm_door_top_right", "y": 270 }, - "facing=north,half=upper,hinge=right,open=true": { "model": "terrestria:block/yucca_palm_door_top_right_open", "y": 180 }, - "facing=south,half=lower,hinge=left,open=false": { "model": "terrestria:block/yucca_palm_door_bottom_left", "y": 90 }, - "facing=south,half=lower,hinge=left,open=true": { "model": "terrestria:block/yucca_palm_door_bottom_left_open", "y": 180 }, - "facing=south,half=lower,hinge=right,open=false": { "model": "terrestria:block/yucca_palm_door_bottom_right", "y": 90 }, - "facing=south,half=lower,hinge=right,open=true": { "model": "terrestria:block/yucca_palm_door_bottom_right_open" }, - "facing=south,half=upper,hinge=left,open=false": { "model": "terrestria:block/yucca_palm_door_top_left", "y": 90 }, - "facing=south,half=upper,hinge=left,open=true": { "model": "terrestria:block/yucca_palm_door_top_left_open", "y": 180 }, - "facing=south,half=upper,hinge=right,open=false": { "model": "terrestria:block/yucca_palm_door_top_right", "y": 90 }, - "facing=south,half=upper,hinge=right,open=true": { "model": "terrestria:block/yucca_palm_door_top_right_open" }, - "facing=west,half=lower,hinge=left,open=false": { "model": "terrestria:block/yucca_palm_door_bottom_left", "y": 180 }, - "facing=west,half=lower,hinge=left,open=true": { "model": "terrestria:block/yucca_palm_door_bottom_left_open", "y": 270 }, - "facing=west,half=lower,hinge=right,open=false": { "model": "terrestria:block/yucca_palm_door_bottom_right", "y": 180 }, - "facing=west,half=lower,hinge=right,open=true": { "model": "terrestria:block/yucca_palm_door_bottom_right_open", "y": 90 }, - "facing=west,half=upper,hinge=left,open=false": { "model": "terrestria:block/yucca_palm_door_top_left", "y": 180 }, - "facing=west,half=upper,hinge=left,open=true": { "model": "terrestria:block/yucca_palm_door_top_left_open", "y": 270 }, - "facing=west,half=upper,hinge=right,open=false": { "model": "terrestria:block/yucca_palm_door_top_right", "y": 180 }, - "facing=west,half=upper,hinge=right,open=true": { "model": "terrestria:block/yucca_palm_door_top_right_open", "y": 90 } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/yucca_palm_fence.json b/client/src/main/resources/assets/terrestria/blockstates/yucca_palm_fence.json deleted file mode 100644 index d5278923..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/yucca_palm_fence.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "multipart": [ - { - "apply": { - "model": "terrestria:block/yucca_palm_fence_post" - } - }, - { - "when": { - "north": "true" - }, - "apply": { - "model": "terrestria:block/yucca_palm_fence_side", - "uvlock": true - } - }, - { - "when": { - "east": "true" - }, - "apply": { - "model": "terrestria:block/yucca_palm_fence_side", - "y": 90, - "uvlock": true - } - }, - { - "when": { - "south": "true" - }, - "apply": { - "model": "terrestria:block/yucca_palm_fence_side", - "y": 180, - "uvlock": true - } - }, - { - "when": { - "west": "true" - }, - "apply": { - "model": "terrestria:block/yucca_palm_fence_side", - "y": 270, - "uvlock": true - } - } - ] -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/yucca_palm_fence_gate.json b/client/src/main/resources/assets/terrestria/blockstates/yucca_palm_fence_gate.json deleted file mode 100644 index b2b27c20..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/yucca_palm_fence_gate.json +++ /dev/null @@ -1,80 +0,0 @@ -{ - "variants": { - "facing=south,in_wall=false,open=false": { - "model": "terrestria:block/yucca_palm_fence_gate", - "uvlock": true - }, - "facing=west,in_wall=false,open=false": { - "model": "terrestria:block/yucca_palm_fence_gate", - "uvlock": true, - "y": 90 - }, - "facing=north,in_wall=false,open=false": { - "model": "terrestria:block/yucca_palm_fence_gate", - "uvlock": true, - "y": 180 - }, - "facing=east,in_wall=false,open=false": { - "model": "terrestria:block/yucca_palm_fence_gate", - "uvlock": true, - "y": 270 - }, - "facing=south,in_wall=false,open=true": { - "model": "terrestria:block/yucca_palm_fence_gate_open", - "uvlock": true - }, - "facing=west,in_wall=false,open=true": { - "model": "terrestria:block/yucca_palm_fence_gate_open", - "uvlock": true, - "y": 90 - }, - "facing=north,in_wall=false,open=true": { - "model": "terrestria:block/yucca_palm_fence_gate_open", - "uvlock": true, - "y": 180 - }, - "facing=east,in_wall=false,open=true": { - "model": "terrestria:block/yucca_palm_fence_gate_open", - "uvlock": true, - "y": 270 - }, - "facing=south,in_wall=true,open=false": { - "model": "terrestria:block/yucca_palm_fence_gate_wall", - "uvlock": true - }, - "facing=west,in_wall=true,open=false": { - "model": "terrestria:block/yucca_palm_fence_gate_wall", - "uvlock": true, - "y": 90 - }, - "facing=north,in_wall=true,open=false": { - "model": "terrestria:block/yucca_palm_fence_gate_wall", - "uvlock": true, - "y": 180 - }, - "facing=east,in_wall=true,open=false": { - "model": "terrestria:block/yucca_palm_fence_gate_wall", - "uvlock": true, - "y": 270 - }, - "facing=south,in_wall=true,open=true": { - "model": "terrestria:block/yucca_palm_fence_gate_wall_open", - "uvlock": true - }, - "facing=west,in_wall=true,open=true": { - "model": "terrestria:block/yucca_palm_fence_gate_wall_open", - "uvlock": true, - "y": 90 - }, - "facing=north,in_wall=true,open=true": { - "model": "terrestria:block/yucca_palm_fence_gate_wall_open", - "uvlock": true, - "y": 180 - }, - "facing=east,in_wall=true,open=true": { - "model": "terrestria:block/yucca_palm_fence_gate_wall_open", - "uvlock": true, - "y": 270 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/yucca_palm_hanging_sign.json b/client/src/main/resources/assets/terrestria/blockstates/yucca_palm_hanging_sign.json deleted file mode 100644 index 0f2c677e..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/yucca_palm_hanging_sign.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "terrestria:block/yucca_palm_hanging_sign" } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/yucca_palm_leaf_pile.json b/client/src/main/resources/assets/terrestria/blockstates/yucca_palm_leaf_pile.json deleted file mode 100644 index 0490ef6b..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/yucca_palm_leaf_pile.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/yucca_palm_leaf_pile" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/yucca_palm_leaves.json b/client/src/main/resources/assets/terrestria/blockstates/yucca_palm_leaves.json deleted file mode 100644 index db5e3275..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/yucca_palm_leaves.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/yucca_palm_leaves" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/yucca_palm_log.json b/client/src/main/resources/assets/terrestria/blockstates/yucca_palm_log.json deleted file mode 100644 index 0ae2ee86..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/yucca_palm_log.json +++ /dev/null @@ -1,180 +0,0 @@ -{ - "multipart": [ - { - "when": { "up": "true"}, - "apply": { - "model": "terrestria:block/yucca_palm_log_branch" - } - }, - { - "when": { "down": "true"}, - "apply": { - "model": "terrestria:block/yucca_palm_log_branch", - "x": 180 - } - }, - { - "when": { "north": "true"}, - "apply": { - "model": "terrestria:block/yucca_palm_log_branch", - "x": 90 - } - }, - { - "when": { "south": "true"}, - "apply": { - "model": "terrestria:block/yucca_palm_log_branch", - "x": 90, - "y": 180 - } - }, - { - "when": { "east": "true"}, - "apply": { - "model": "terrestria:block/yucca_palm_log_branch", - "x": 90, - "y": 90 - } - }, - { - "when": { "west": "true"}, - "apply": { - "model": "terrestria:block/yucca_palm_log_branch", - "x": 90, - "y": 270 - } - }, - { - "when": { "up": "false"}, - "apply": { - "model": "terrestria:block/yucca_palm_log" - } - }, - { - "when": { "down": "false"}, - "apply": { - "model": "terrestria:block/yucca_palm_log", - "x": 180 - } - }, - { - "when": { "north": "false"}, - "apply": { - "model": "terrestria:block/yucca_palm_log", - "x": 90 - } - }, - { - "when": { "south": "false"}, - "apply": { - "model": "terrestria:block/yucca_palm_log", - "x": 90, - "y": 180 - } - }, - { - "when": { "east": "false"}, - "apply": { - "model": "terrestria:block/yucca_palm_log", - "x": 90, - "y": 90 - } - }, - { - "when": { "west": "false"}, - "apply": { - "model": "terrestria:block/yucca_palm_log", - "x": 90, - "y": 270 - } - }, - { - "when": { "up": "true", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/yucca_palm_log_leaves_cutout" - } - }, - { - "when": { "down": "true", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/yucca_palm_log_leaves_cutout", - "x": 180 - } - }, - { - "when": { "north": "true", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/yucca_palm_log_leaves_cutout", - "x": 90 - } - }, - { - "when": { "south": "true", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/yucca_palm_log_leaves_cutout", - "x": 90, - "y": 180 - } - }, - { - "when": { "east": "true", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/yucca_palm_log_leaves_cutout", - "x": 90, - "y": 90 - } - }, - { - "when": { "west": "true", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/yucca_palm_log_leaves_cutout", - "x": 90, - "y": 270 - } - }, - { - "when": { "up": "false", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/yucca_palm_log_leaves" - } - }, - { - "when": { "down": "false", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/yucca_palm_log_leaves", - "x": 180 - } - }, - { - "when": { "north": "false", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/yucca_palm_log_leaves", - "x": 90 - } - }, - { - "when": { "south": "false", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/yucca_palm_log_leaves", - "x": 90, - "y": 180 - } - }, - { - "when": { "east": "false", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/yucca_palm_log_leaves", - "x": 90, - "y": 90 - } - }, - { - "when": { "west": "false", "has_leaves": "true"}, - "apply": { - "model": "terrestria:block/yucca_palm_log_leaves", - "x": 90, - "y": 270 - } - } - ] -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/yucca_palm_planks.json b/client/src/main/resources/assets/terrestria/blockstates/yucca_palm_planks.json deleted file mode 100644 index 076e9c5f..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/yucca_palm_planks.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/yucca_palm_planks" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/yucca_palm_pressure_plate.json b/client/src/main/resources/assets/terrestria/blockstates/yucca_palm_pressure_plate.json deleted file mode 100644 index 57f1b4ca..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/yucca_palm_pressure_plate.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "variants": { - "powered=false": { - "model": "terrestria:block/yucca_palm_pressure_plate" - }, - "powered=true": { - "model": "terrestria:block/yucca_palm_pressure_plate_down" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/yucca_palm_sapling.json b/client/src/main/resources/assets/terrestria/blockstates/yucca_palm_sapling.json deleted file mode 100644 index 6ae9de6e..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/yucca_palm_sapling.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "variants": { - "stage=0": { - "model": "terrestria:block/yucca_palm_sapling" - }, - "stage=1": { - "model": "terrestria:block/yucca_palm_sapling" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/yucca_palm_sign.json b/client/src/main/resources/assets/terrestria/blockstates/yucca_palm_sign.json deleted file mode 100644 index 1924fb43..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/yucca_palm_sign.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/yucca_palm_sign" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/yucca_palm_slab.json b/client/src/main/resources/assets/terrestria/blockstates/yucca_palm_slab.json deleted file mode 100644 index 5863b124..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/yucca_palm_slab.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "variants": { - "type=bottom": { - "model": "terrestria:block/yucca_palm_slab" - }, - "type=top": { - "model": "terrestria:block/yucca_palm_slab_top" - }, - "type=double": { - "model": "terrestria:block/yucca_palm_planks" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/yucca_palm_stairs.json b/client/src/main/resources/assets/terrestria/blockstates/yucca_palm_stairs.json deleted file mode 100644 index 78f8264f..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/yucca_palm_stairs.json +++ /dev/null @@ -1,209 +0,0 @@ -{ - "variants": { - "facing=east,half=bottom,shape=straight": { - "model": "terrestria:block/yucca_palm_stairs" - }, - "facing=west,half=bottom,shape=straight": { - "model": "terrestria:block/yucca_palm_stairs", - "y": 180, - "uvlock": true - }, - "facing=south,half=bottom,shape=straight": { - "model": "terrestria:block/yucca_palm_stairs", - "y": 90, - "uvlock": true - }, - "facing=north,half=bottom,shape=straight": { - "model": "terrestria:block/yucca_palm_stairs", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_right": { - "model": "terrestria:block/yucca_palm_stairs_outer" - }, - "facing=west,half=bottom,shape=outer_right": { - "model": "terrestria:block/yucca_palm_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_right": { - "model": "terrestria:block/yucca_palm_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=north,half=bottom,shape=outer_right": { - "model": "terrestria:block/yucca_palm_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=outer_left": { - "model": "terrestria:block/yucca_palm_stairs_outer", - "y": 270, - "uvlock": true - }, - "facing=west,half=bottom,shape=outer_left": { - "model": "terrestria:block/yucca_palm_stairs_outer", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=outer_left": { - "model": "terrestria:block/yucca_palm_stairs_outer" - }, - "facing=north,half=bottom,shape=outer_left": { - "model": "terrestria:block/yucca_palm_stairs_outer", - "y": 180, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_right": { - "model": "terrestria:block/yucca_palm_stairs_inner" - }, - "facing=west,half=bottom,shape=inner_right": { - "model": "terrestria:block/yucca_palm_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_right": { - "model": "terrestria:block/yucca_palm_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=north,half=bottom,shape=inner_right": { - "model": "terrestria:block/yucca_palm_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=east,half=bottom,shape=inner_left": { - "model": "terrestria:block/yucca_palm_stairs_inner", - "y": 270, - "uvlock": true - }, - "facing=west,half=bottom,shape=inner_left": { - "model": "terrestria:block/yucca_palm_stairs_inner", - "y": 90, - "uvlock": true - }, - "facing=south,half=bottom,shape=inner_left": { - "model": "terrestria:block/yucca_palm_stairs_inner" - }, - "facing=north,half=bottom,shape=inner_left": { - "model": "terrestria:block/yucca_palm_stairs_inner", - "y": 180, - "uvlock": true - }, - "facing=east,half=top,shape=straight": { - "model": "terrestria:block/yucca_palm_stairs", - "x": 180, - "uvlock": true - }, - "facing=west,half=top,shape=straight": { - "model": "terrestria:block/yucca_palm_stairs", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=straight": { - "model": "terrestria:block/yucca_palm_stairs", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=north,half=top,shape=straight": { - "model": "terrestria:block/yucca_palm_stairs", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=east,half=top,shape=outer_right": { - "model": "terrestria:block/yucca_palm_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=top,shape=outer_right": { - "model": "terrestria:block/yucca_palm_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=top,shape=outer_right": { - "model": "terrestria:block/yucca_palm_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=north,half=top,shape=outer_right": { - "model": "terrestria:block/yucca_palm_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=outer_left": { - "model": "terrestria:block/yucca_palm_stairs_outer", - "x": 180, - "uvlock": true - }, - "facing=west,half=top,shape=outer_left": { - "model": "terrestria:block/yucca_palm_stairs_outer", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=outer_left": { - "model": "terrestria:block/yucca_palm_stairs_outer", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=north,half=top,shape=outer_left": { - "model": "terrestria:block/yucca_palm_stairs_outer", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=east,half=top,shape=inner_right": { - "model": "terrestria:block/yucca_palm_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=west,half=top,shape=inner_right": { - "model": "terrestria:block/yucca_palm_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - }, - "facing=south,half=top,shape=inner_right": { - "model": "terrestria:block/yucca_palm_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=north,half=top,shape=inner_right": { - "model": "terrestria:block/yucca_palm_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=east,half=top,shape=inner_left": { - "model": "terrestria:block/yucca_palm_stairs_inner", - "x": 180, - "uvlock": true - }, - "facing=west,half=top,shape=inner_left": { - "model": "terrestria:block/yucca_palm_stairs_inner", - "x": 180, - "y": 180, - "uvlock": true - }, - "facing=south,half=top,shape=inner_left": { - "model": "terrestria:block/yucca_palm_stairs_inner", - "x": 180, - "y": 90, - "uvlock": true - }, - "facing=north,half=top,shape=inner_left": { - "model": "terrestria:block/yucca_palm_stairs_inner", - "x": 180, - "y": 270, - "uvlock": true - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/yucca_palm_trapdoor.json b/client/src/main/resources/assets/terrestria/blockstates/yucca_palm_trapdoor.json deleted file mode 100644 index 4aa2e3dd..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/yucca_palm_trapdoor.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "variants": { - "facing=north,half=bottom,open=false": { - "model": "terrestria:block/yucca_palm_trapdoor_bottom" - }, - "facing=south,half=bottom,open=false": { - "model": "terrestria:block/yucca_palm_trapdoor_bottom", - "y": 180 - }, - "facing=east,half=bottom,open=false": { - "model": "terrestria:block/yucca_palm_trapdoor_bottom", - "y": 90 - }, - "facing=west,half=bottom,open=false": { - "model": "terrestria:block/yucca_palm_trapdoor_bottom", - "y": 270 - }, - "facing=north,half=top,open=false": { - "model": "terrestria:block/yucca_palm_trapdoor_top" - }, - "facing=south,half=top,open=false": { - "model": "terrestria:block/yucca_palm_trapdoor_top", - "y": 180 - }, - "facing=east,half=top,open=false": { - "model": "terrestria:block/yucca_palm_trapdoor_top", - "y": 90 - }, - "facing=west,half=top,open=false": { - "model": "terrestria:block/yucca_palm_trapdoor_top", - "y": 270 - }, - "facing=north,half=bottom,open=true": { - "model": "terrestria:block/yucca_palm_trapdoor_open" - }, - "facing=south,half=bottom,open=true": { - "model": "terrestria:block/yucca_palm_trapdoor_open", - "y": 180 - }, - "facing=east,half=bottom,open=true": { - "model": "terrestria:block/yucca_palm_trapdoor_open", - "y": 90 - }, - "facing=west,half=bottom,open=true": { - "model": "terrestria:block/yucca_palm_trapdoor_open", - "y": 270 - }, - "facing=north,half=top,open=true": { - "model": "terrestria:block/yucca_palm_trapdoor_open", - "x": 180, - "y": 180 - }, - "facing=south,half=top,open=true": { - "model": "terrestria:block/yucca_palm_trapdoor_open", - "x": 180, - "y": 0 - }, - "facing=east,half=top,open=true": { - "model": "terrestria:block/yucca_palm_trapdoor_open", - "x": 180, - "y": 270 - }, - "facing=west,half=top,open=true": { - "model": "terrestria:block/yucca_palm_trapdoor_open", - "x": 180, - "y": 90 - } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/yucca_palm_wall_hanging_sign.json b/client/src/main/resources/assets/terrestria/blockstates/yucca_palm_wall_hanging_sign.json deleted file mode 100644 index 0f2c677e..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/yucca_palm_wall_hanging_sign.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "variants": { - "": { "model": "terrestria:block/yucca_palm_hanging_sign" } - } -} diff --git a/client/src/main/resources/assets/terrestria/blockstates/yucca_palm_wall_sign.json b/client/src/main/resources/assets/terrestria/blockstates/yucca_palm_wall_sign.json deleted file mode 100644 index 1924fb43..00000000 --- a/client/src/main/resources/assets/terrestria/blockstates/yucca_palm_wall_sign.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "variants": { - "": { - "model": "terrestria:block/yucca_palm_sign" - } - } -} diff --git a/client/src/main/resources/assets/terrestria/lang/en_gb.json b/client/src/main/resources/assets/terrestria/lang/en_gb.json index 8665553e..61035cdc 100644 --- a/client/src/main/resources/assets/terrestria/lang/en_gb.json +++ b/client/src/main/resources/assets/terrestria/lang/en_gb.json @@ -1,4 +1,3 @@ { - "block.terrestria.chiseled_basalt_bricks": "Chiselled Volcanic Rock Bricks", - "item.terrestria.chiseled_basalt_bricks": "Chiselled Volcanic Rock Bricks" + "block.terrestria.chiseled_volcanic_rock_bricks": "Chiselled Volcanic Rock Bricks" } diff --git a/client/src/main/resources/assets/terrestria/lang/en_us.json b/client/src/main/resources/assets/terrestria/lang/en_us.json index f7c95796..8894d376 100644 --- a/client/src/main/resources/assets/terrestria/lang/en_us.json +++ b/client/src/main/resources/assets/terrestria/lang/en_us.json @@ -170,40 +170,40 @@ "block.terrestria.stripped_sakura_log": "Stripped Sakura Log", "block.terrestria.cattail": "Cattail", "block.terrestria.tall_cattail": "Tall Cattail", - "block.terrestria.basalt": "Volcanic Rock", - "block.terrestria.basalt_slab": "Volcanic Rock Slab", - "block.terrestria.basalt_stairs": "Volcanic Rock Stairs", - "block.terrestria.basalt_wall": "Volcanic Rock Wall", - "block.terrestria.smooth_basalt": "Smooth Volcanic Rock", - "block.terrestria.smooth_basalt_slab": "Smooth Volcanic Rock Slab", - "block.terrestria.smooth_basalt_stairs": "Smooth Volcanic Rock Stairs", - "block.terrestria.smooth_basalt_wall": "Smooth Volcanic Rock Wall", - "block.terrestria.basalt_cobblestone": "Volcanic Cobblestone", - "block.terrestria.basalt_cobblestone_slab": "Volcanic Cobblestone Slab", - "block.terrestria.basalt_cobblestone_stairs": "Volcanic Cobblestone Stairs", - "block.terrestria.basalt_cobblestone_wall": "Volcanic Cobblestone Wall", - "block.terrestria.mossy_basalt_cobblestone": "Mossy Volcanic Cobblestone", - "block.terrestria.mossy_basalt_cobblestone_slab": "Mossy Volcanic Cobblestone Slab", - "block.terrestria.mossy_basalt_cobblestone_stairs": "Mossy Volcanic Cobblestone Stairs", - "block.terrestria.mossy_basalt_cobblestone_wall": "Mossy Volcanic Cobblestone Wall", - "block.terrestria.basalt_bricks": "Volcanic Rock Bricks", - "block.terrestria.basalt_brick_slab": "Volcanic Rock Brick Slab", - "block.terrestria.basalt_brick_stairs": "Volcanic Rock Brick Stairs", - "block.terrestria.basalt_brick_wall": "Volcanic Rock Brick Wall", - "block.terrestria.mossy_basalt_bricks": "Mossy Volcanic Rock Bricks", - "block.terrestria.mossy_basalt_brick_slab": "Mossy Volcanic Rock Brick Slab", - "block.terrestria.mossy_basalt_brick_stairs": "Mossy Volcanic Rock Brick Stairs", - "block.terrestria.mossy_basalt_brick_wall": "Mossy Volcanic Rock Brick Wall", - "block.terrestria.basalt_button": "Volcanic Rock Button", - "block.terrestria.basalt_pressure_plate": "Volcanic Rock Pressure Plate", - "block.terrestria.chiseled_basalt_bricks": "Chiseled Volcanic Rock Bricks", - "block.terrestria.cracked_basalt_bricks": "Cracked Volcanic Rock Bricks", - "block.terrestria.basalt_grass_block": "Andisol Grass Block", - "block.terrestria.basalt_grass_path": "Andisol Dirt Path", - "block.terrestria.basalt_sand": "Black Sand", - "block.terrestria.basalt_dirt": "Andisol", - "block.terrestria.basalt_podzol": "Andisol Podzol", + "block.terrestria.volcanic_rock": "Volcanic Rock", + "block.terrestria.volcanic_rock_slab": "Volcanic Rock Slab", + "block.terrestria.volcanic_rock_stairs": "Volcanic Rock Stairs", + "block.terrestria.volcanic_rock_wall": "Volcanic Rock Wall", + "block.terrestria.smooth_volcanic_rock": "Smooth Volcanic Rock", + "block.terrestria.smooth_volcanic_rock_slab": "Smooth Volcanic Rock Slab", + "block.terrestria.smooth_volcanic_rock_stairs": "Smooth Volcanic Rock Stairs", + "block.terrestria.smooth_volcanic_rock_wall": "Smooth Volcanic Rock Wall", + "block.terrestria.volcanic_rock_cobblestone": "Volcanic Cobblestone", + "block.terrestria.volcanic_rock_cobblestone_slab": "Volcanic Cobblestone Slab", + "block.terrestria.volcanic_rock_cobblestone_stairs": "Volcanic Cobblestone Stairs", + "block.terrestria.volcanic_rock_cobblestone_wall": "Volcanic Cobblestone Wall", + "block.terrestria.mossy_volcanic_rock_cobblestone": "Mossy Volcanic Cobblestone", + "block.terrestria.mossy_volcanic_rock_cobblestone_slab": "Mossy Volcanic Cobblestone Slab", + "block.terrestria.mossy_volcanic_rock_cobblestone_stairs": "Mossy Volcanic Cobblestone Stairs", + "block.terrestria.mossy_volcanic_rock_cobblestone_wall": "Mossy Volcanic Cobblestone Wall", + "block.terrestria.volcanic_rock_bricks": "Volcanic Rock Bricks", + "block.terrestria.volcanic_rock_brick_slab": "Volcanic Rock Brick Slab", + "block.terrestria.volcanic_rock_brick_stairs": "Volcanic Rock Brick Stairs", + "block.terrestria.volcanic_rock_brick_wall": "Volcanic Rock Brick Wall", + "block.terrestria.mossy_volcanic_rock_bricks": "Mossy Volcanic Rock Bricks", + "block.terrestria.mossy_volcanic_rock_brick_slab": "Mossy Volcanic Rock Brick Slab", + "block.terrestria.mossy_volcanic_rock_brick_stairs": "Mossy Volcanic Rock Brick Stairs", + "block.terrestria.mossy_volcanic_rock_brick_wall": "Mossy Volcanic Rock Brick Wall", + "block.terrestria.volcanic_rock_button": "Volcanic Rock Button", + "block.terrestria.volcanic_rock_pressure_plate": "Volcanic Rock Pressure Plate", + "block.terrestria.chiseled_volcanic_rock_bricks": "Chiseled Volcanic Rock Bricks", + "block.terrestria.cracked_volcanic_rock_bricks": "Cracked Volcanic Rock Bricks", + "block.terrestria.volcanic_sand": "Volcanic Sand", + "block.terrestria.andisol": "Andisol", + "block.terrestria.andisol_dirt_path": "Andisol Dirt Path", "block.terrestria.andisol_farmland": "Andisol Farmland", + "block.terrestria.andisol_grass_block": "Andisol Grass Block", + "block.terrestria.andisol_podzol": "Andisol Podzol", "block.terrestria.indian_paintbrush": "Indian Paintbrush", "block.terrestria.monsteras": "Monsteras", "block.terrestria.potted_indian_paintbrush": "Potted Indian Paintbrush", @@ -275,238 +275,6 @@ "item.terrestria.log_turner": "Log Turner", "item.terrestria.log_turner.tooltip": "Use on a log to set axis and rotation", - "item.terrestria.redwood_log": "Redwood Log", - "item.terrestria.redwood_wood": "Redwood Wood", - "item.terrestria.redwood_quarter_log": "Redwood Quarter Log", - "item.terrestria.redwood_sapling": "Redwood Sapling", - "item.terrestria.redwood_leaves": "Redwood Leaves", - "item.terrestria.redwood_planks": "Redwood Planks", - "item.terrestria.redwood_slab": "Redwood Slab", - "item.terrestria.redwood_stairs": "Redwood Stairs", - "item.terrestria.redwood_fence": "Redwood Fence", - "item.terrestria.redwood_fence_gate": "Redwood Fence Gate", - "item.terrestria.redwood_door": "Redwood Door", - "item.terrestria.redwood_pressure_plate": "Redwood Pressure Plate", - "item.terrestria.redwood_button": "Redwood Button", - "item.terrestria.redwood_sign": "Redwood Sign", - "item.terrestria.redwood_hanging_sign": "Redwood Hanging Sign", - "item.terrestria.redwood_trapdoor": "Redwood Trapdoor", - "item.terrestria.stripped_redwood_wood": "Stripped Redwood Wood", - "item.terrestria.stripped_redwood_log": "Stripped Redwood Log", - "item.terrestria.stripped_redwood_quarter_log": "Stripped Redwood Quarter Log", - "item.terrestria.hemlock_log": "Hemlock Log", - "item.terrestria.hemlock_wood": "Hemlock Wood", - "item.terrestria.hemlock_quarter_log": "Hemlock Quarter Log", - "item.terrestria.hemlock_sapling": "Hemlock Sapling", - "item.terrestria.hemlock_leaves": "Hemlock Leaves", - "item.terrestria.hemlock_planks": "Hemlock Planks", - "item.terrestria.hemlock_slab": "Hemlock Slab", - "item.terrestria.hemlock_stairs": "Hemlock Stairs", - "item.terrestria.hemlock_fence": "Hemlock Fence", - "item.terrestria.hemlock_fence_gate": "Hemlock Fence Gate", - "item.terrestria.hemlock_door": "Hemlock Door", - "item.terrestria.hemlock_pressure_plate": "Hemlock Pressure Plate", - "item.terrestria.hemlock_button": "Hemlock Button", - "item.terrestria.hemlock_sign": "Hemlock Sign", - "item.terrestria.hemlock_hanging_sign": "Hemlock Hanging Sign", - "item.terrestria.hemlock_trapdoor": "Hemlock Trapdoor", - "item.terrestria.stripped_hemlock_wood": "Stripped Hemlock Wood", - "item.terrestria.stripped_hemlock_log": "Stripped Hemlock Log", - "item.terrestria.stripped_hemlock_quarter_log": "Stripped Hemlock Quarter Log", - "item.terrestria.jungle_palm_sapling": "Jungle Palm Sapling", - "item.terrestria.jungle_palm_leaves": "Jungle Palm Leaves", - "item.terrestria.rubber_log": "Rubber Log", - "item.terrestria.rubber_wood": "Rubber Wood", - "item.terrestria.rubber_sapling": "Rubber Sapling", - "item.terrestria.rubber_leaves": "Rubber Leaves", - "item.terrestria.rubber_planks": "Rubber Wood Planks", - "item.terrestria.rubber_slab": "Rubber Wood Slab", - "item.terrestria.rubber_stairs": "Rubber Wood Stairs", - "item.terrestria.rubber_fence": "Rubber Wood Fence", - "item.terrestria.rubber_fence_gate": "Rubber Wood Fence Gate", - "item.terrestria.rubber_door": "Rubber Wood Door", - "item.terrestria.rubber_pressure_plate": "Rubber Wood Pressure Plate", - "item.terrestria.rubber_button": "Rubber Wood Button", - "item.terrestria.rubber_sign": "Rubber Wood Sign", - "item.terrestria.rubber_hanging_sign": "Rubber Hanging Sign", - "item.terrestria.rubber_trapdoor": "Rubber Wood Trapdoor", - "item.terrestria.stripped_rubber_wood": "Stripped Rubber Wood", - "item.terrestria.stripped_rubber_log": "Stripped Rubber Log", - "item.terrestria.cypress_log": "Cypress Log", - "item.terrestria.cypress_wood": "Cypress Wood", - "item.terrestria.cypress_quarter_log": "Cypress Quarter Log", - "item.terrestria.cypress_sapling": "Cypress Sapling", - "item.terrestria.cypress_leaves": "Cypress Leaves", - "item.terrestria.cypress_planks": "Cypress Planks", - "item.terrestria.cypress_slab": "Cypress Slab", - "item.terrestria.cypress_stairs": "Cypress Stairs", - "item.terrestria.cypress_fence": "Cypress Fence", - "item.terrestria.cypress_fence_gate": "Cypress Fence Gate", - "item.terrestria.cypress_door": "Cypress Door", - "item.terrestria.cypress_pressure_plate": "Cypress Pressure Plate", - "item.terrestria.cypress_button": "Cypress Button", - "item.terrestria.cypress_sign": "Cypress Sign", - "item.terrestria.cypress_hanging_sign": "Cypress Hanging Sign", - "item.terrestria.cypress_trapdoor": "Cypress Trapdoor", - "item.terrestria.stripped_cypress_wood": "Stripped Cypress Wood", - "item.terrestria.stripped_cypress_log": "Stripped Cypress Log", - "item.terrestria.stripped_cypress_quarter_log": "Stripped Cypress Quarter Log", - "item.terrestria.willow_log": "Willow Log", - "item.terrestria.willow_wood": "Willow Wood", - "item.terrestria.willow_sapling": "Willow Sapling", - "item.terrestria.willow_leaves": "Willow Leaves", - "item.terrestria.willow_planks": "Willow Planks", - "item.terrestria.willow_slab": "Willow Slab", - "item.terrestria.willow_stairs": "Willow Stairs", - "item.terrestria.willow_fence": "Willow Fence", - "item.terrestria.willow_fence_gate": "Willow Fence Gate", - "item.terrestria.willow_door": "Willow Door", - "item.terrestria.willow_pressure_plate": "Willow Pressure Plate", - "item.terrestria.willow_button": "Willow Button", - "item.terrestria.willow_sign": "Willow Sign", - "item.terrestria.willow_hanging_sign": "Willow Hanging Sign", - "item.terrestria.willow_trapdoor": "Willow Trapdoor", - "item.terrestria.stripped_willow_wood": "Stripped Willow Wood", - "item.terrestria.stripped_willow_log": "Stripped Willow Log", - "item.terrestria.japanese_maple_log": "Japanese Maple Log", - "item.terrestria.japanese_maple_wood": "Japanese Maple Wood", - "item.terrestria.japanese_maple_sapling": "Japanese Maple Sapling", - "item.terrestria.japanese_maple_leaves": "Japanese Maple Leaves", - "item.terrestria.japanese_maple_planks": "Japanese Maple Planks", - "item.terrestria.japanese_maple_slab": "Japanese Maple Slab", - "item.terrestria.japanese_maple_stairs": "Japanese Maple Stairs", - "item.terrestria.japanese_maple_fence": "Japanese Maple Fence", - "item.terrestria.japanese_maple_fence_gate": "Japanese Maple Fence Gate", - "item.terrestria.japanese_maple_door": "Japanese Maple Door", - "item.terrestria.japanese_maple_pressure_plate": "Japanese Maple Pressure Plate", - "item.terrestria.japanese_maple_button": "Japanese Maple Button", - "item.terrestria.japanese_maple_sign": "Japanese Maple Sign", - "item.terrestria.japanese_maple_hanging_sign": "Japanese Maple Hanging Sign", - "item.terrestria.japanese_maple_trapdoor": "Japanese Maple Trapdoor", - "item.terrestria.stripped_japanese_maple_wood": "Stripped Japanese Maple Wood", - "item.terrestria.stripped_japanese_maple_log": "Stripped Japanese Maple Log", - "item.terrestria.dark_japanese_maple_leaves": "Dark Japanese Maple Leaves", - "item.terrestria.dark_japanese_maple_sapling": "Dark Japanese Maple Sapling", - "item.terrestria.rainbow_eucalyptus_log": "Rainbow Eucalyptus Log", - "item.terrestria.rainbow_eucalyptus_wood": "Rainbow Eucalyptus Wood", - "item.terrestria.rainbow_eucalyptus_quarter_log": "Rainbow Eucalyptus Quarter Log", - "item.terrestria.rainbow_eucalyptus_sapling": "Rainbow Eucalyptus Sapling", - "item.terrestria.rainbow_eucalyptus_leaves": "Rainbow Eucalyptus Leaves", - "item.terrestria.rainbow_eucalyptus_planks": "Rainbow Eucalyptus Planks", - "item.terrestria.rainbow_eucalyptus_slab": "Rainbow Eucalyptus Slab", - "item.terrestria.rainbow_eucalyptus_stairs": "Rainbow Eucalyptus Stairs", - "item.terrestria.rainbow_eucalyptus_fence": "Rainbow Eucalyptus Fence", - "item.terrestria.rainbow_eucalyptus_fence_gate": "Rainbow Eucalyptus Fence Gate", - "item.terrestria.rainbow_eucalyptus_door": "Rainbow Eucalyptus Door", - "item.terrestria.rainbow_eucalyptus_pressure_plate": "Rainbow Eucalyptus Pressure Plate", - "item.terrestria.rainbow_eucalyptus_button": "Rainbow Eucalyptus Button", - "item.terrestria.rainbow_eucalyptus_sign": "Rainbow Eucalyptus Sign", - "item.terrestria.rainbow_eucalyptus_hanging_sign": "Rainbow Eucalyptus Hanging Sign", - "item.terrestria.rainbow_eucalyptus_trapdoor": "Rainbow Eucalyptus Trapdoor", - "item.terrestria.stripped_rainbow_eucalyptus_wood": "Stripped Rainbow Eucalyptus Wood", - "item.terrestria.stripped_rainbow_eucalyptus_log": "Stripped Rainbow Eucalyptus Log", - "item.terrestria.stripped_rainbow_eucalyptus_quarter_log": "Stripped Rainbow Eucalyptus Quarter Log", - "item.terrestria.sakura_log": "Sakura Log", - "item.terrestria.sakura_sapling": "Sakura Sapling", - "item.terrestria.sakura_leaves": "Sakura Leaves", - "item.terrestria.sakura_leaf_pile": "Sakura Leaf Pile", - "item.terrestria.sakura_planks": "Sakura Planks", - "item.terrestria.sakura_slab": "Sakura Slab", - "item.terrestria.sakura_stairs": "Sakura Stairs", - "item.terrestria.sakura_fence": "Sakura Fence", - "item.terrestria.sakura_fence_gate": "Sakura Fence Gate", - "item.terrestria.sakura_door": "Sakura Door", - "item.terrestria.sakura_pressure_plate": "Sakura Pressure Plate", - "item.terrestria.sakura_button": "Sakura Button", - "item.terrestria.sakura_sign": "Sakura Sign", - "item.terrestria.sakura_hanging_sign": "Sakura Hanging Sign", - "item.terrestria.sakura_trapdoor": "Sakura Trapdoor", - "item.terrestria.stripped_sakura_wood": "Stripped Sakura Wood", - "item.terrestria.stripped_sakura_log": "Stripped Sakura Log", - "item.terrestria.cattail": "Cattail", - "item.terrestria.tall_cattail": "Tall Cattail", - "item.terrestria.basalt": "Volcanic Rock", - "item.terrestria.basalt_slab": "Volcanic Rock Slab", - "item.terrestria.basalt_stairs": "Volcanic Rock Stairs", - "item.terrestria.basalt_wall": "Volcanic Rock Wall", - "item.terrestria.smooth_basalt": "Smooth Volcanic Rock", - "item.terrestria.smooth_basalt_slab": "Smooth Volcanic Rock Slab", - "item.terrestria.smooth_basalt_stairs": "Smooth Volcanic Rock Stairs", - "item.terrestria.smooth_basalt_wall": "Smooth Volcanic Rock Wall", - "item.terrestria.basalt_cobblestone": "Volcanic Cobblestone", - "item.terrestria.basalt_cobblestone_slab": "Volcanic Cobblestone Slab", - "item.terrestria.basalt_cobblestone_stairs": "Volcanic Cobblestone Stairs", - "item.terrestria.basalt_cobblestone_wall": "Volcanic Cobblestone Wall", - "item.terrestria.mossy_basalt_cobblestone": "Mossy Volcanic Cobblestone", - "item.terrestria.mossy_basalt_cobblestone_slab": "Mossy Volcanic Cobblestone Slab", - "item.terrestria.mossy_basalt_cobblestone_stairs": "Mossy Volcanic Cobblestone Stairs", - "item.terrestria.mossy_basalt_cobblestone_wall": "Mossy Volcanic Cobblestone Wall", - "item.terrestria.basalt_bricks": "Volcanic Rock Bricks", - "item.terrestria.basalt_brick_slab": "Volcanic Rock Brick Slab", - "item.terrestria.basalt_brick_stairs": "Volcanic Rock Brick Stairs", - "item.terrestria.basalt_brick_wall": "Volcanic Rock Brick Wall", - "item.terrestria.mossy_basalt_bricks": "Mossy Volcanic Rock Bricks", - "item.terrestria.mossy_basalt_brick_slab": "Mossy Volcanic Rock Brick Slab", - "item.terrestria.mossy_basalt_brick_stairs": "Mossy Volcanic Rock Brick Stairs", - "item.terrestria.mossy_basalt_brick_wall": "Mossy Volcanic Rock Brick Wall", - "item.terrestria.basalt_button": "Volcanic Rock Button", - "item.terrestria.basalt_pressure_plate": "Volcanic Rock Pressure Plate", - "item.terrestria.chiseled_basalt_bricks": "Chiseled Volcanic Rock Bricks", - "item.terrestria.cracked_basalt_bricks": "Cracked Volcanic Rock Bricks", - "item.terrestria.basalt_grass_block": "Andisol Grass Block", - "item.terrestria.basalt_grass_path": "Andisol Dirt Path", - "item.terrestria.basalt_sand": "Black Sand", - "item.terrestria.basalt_dirt": "Andisol", - "item.terrestria.basalt_podzol": "Andisol Podzol", - "item.terrestria.andisol_farmland": "Andisol Farmland", - "item.terrestria.indian_paintbrush": "Indian Paintbrush", - "item.terrestria.monsteras": "Monsteras", - "item.terrestria.potted_indian_paintbrush": "Potted Indian Paintbrush", - "item.terrestria.potted_monsteras": "Potted Monsteras", - "item.terrestria.potted_bryce_sapling": "Potted Bryce Sapling", - "item.terrestria.japanese_maple_shrub_sapling": "Japanese Maple Shrub Sapling", - "item.terrestria.japanese_maple_shrub_leaves": "Japanese Maple Shrub Leaves", - "item.terrestria.potted_redwood_sapling": "Potted Redwood Sapling", - "item.terrestria.potted_hemlock_sapling": "Potted Hemlock Sapling", - "item.terrestria.potted_rubber_sapling": "Potted Rubber Sapling", - "item.terrestria.potted_cypress_sapling": "Potted Cypress Sapling", - "item.terrestria.potted_willow_sapling": "Potted Willow Sapling", - "item.terrestria.potted_japanese_maple_sapling": "Potted Japanese Maple Sapling", - "item.terrestria.potted_dark_japanese_maple_sapling": "Potted Dark Japanese Maple Sapling", - "item.terrestria.potted_rainbow_eucalyptus_sapling": "Potted Rainbow Eucalyptus Sapling", - "item.terrestria.potted_sakura_sapling": "Potted Sakura Sapling", - "item.terrestria.potted_jungle_palm_sapling": "Potted Jungle Palm Sapling", - "item.terrestria.potted_japanese_maple_shrub_sapling": "Potted Japanese Maple Shrub Sapling", - "item.terrestria.potted_saguaro_cactus_sapling": "Potted Saguaro Cactus Sapling", - "item.terrestria.potted_yucca_palm_sapling": "Potted Yucca Palm Sapling", - "item.terrestria.agave": "Agave", - "item.terrestria.tiny_cactus": "Tiny Cactus", - "item.terrestria.aloe_vera": "Aloe Vera", - "item.terrestria.dead_grass": "Dead Grass", - "item.terrestria.potted_agave": "Potted Agave", - "item.terrestria.potted_tiny_cactus": "Potted Tiny Cactus", - "item.terrestria.potted_aloe_vera": "Potted Aloe Vera", - "item.terrestria.yucca_palm_log": "Yucca Palm Log", - "item.terrestria.yucca_palm_leaves": "Yucca Palm Leaves", - "item.terrestria.yucca_palm_planks": "Yucca Palm Planks", - "item.terrestria.yucca_palm_slab": "Yucca Palm Slab", - "item.terrestria.yucca_palm_stairs": "Yucca Palm Stairs", - "item.terrestria.yucca_palm_fence": "Yucca Palm Fence", - "item.terrestria.yucca_palm_fence_gate": "Yucca Palm Fence Gate", - "item.terrestria.yucca_palm_door": "Yucca Palm Door", - "item.terrestria.yucca_palm_button": "Yucca Palm Button", - "item.terrestria.yucca_palm_pressure_plate": "Yucca Palm Pressure Plate", - "item.terrestria.yucca_palm_trapdoor": "Yucca Palm Trapdoor", - "item.terrestria.yucca_palm_sign": "Yucca Palm Sign", - "item.terrestria.yucca_palm_hanging_sign": "Yucca Palm Hanging Sign", - "item.terrestria.stripped_yucca_palm_log": "Stripped Yucca Palm Log", - "item.terrestria.small_oak_log": "Small Oak Log", - "item.terrestria.stripped_small_oak_log": "Stripped Small Oak Log", - "item.terrestria.saguaro_cactus": "Saguaro Cactus", - "item.terrestria.bryce_sapling": "Bryce Tree Sapling", - "item.terrestria.saguaro_cactus_sapling": "Saguaro Cactus Sapling", - "item.terrestria.yucca_palm_sapling": "Yucca Palm Sapling", - "item.terrestria.cypress_boat": "Cypress Boat", "item.terrestria.cypress_chest_boat": "Cypress Boat with Chest", "item.terrestria.hemlock_boat": "Hemlock Boat", diff --git a/client/src/main/resources/assets/terrestria/lang/es_ar.json b/client/src/main/resources/assets/terrestria/lang/es_ar.json index aac620bd..14cb1e2d 100644 --- a/client/src/main/resources/assets/terrestria/lang/es_ar.json +++ b/client/src/main/resources/assets/terrestria/lang/es_ar.json @@ -158,40 +158,40 @@ "block.terrestria.stripped_sakura_log": "Tronco de sakura sin corteza", "block.terrestria.cattail": "Totora", "block.terrestria.tall_cattail": "Totora alta", - "block.terrestria.basalt": "Roca volcánica", - "block.terrestria.basalt_slab": "Baldosa de roca volcánica", - "block.terrestria.basalt_stairs": "Escaleras de roca volcánica", - "block.terrestria.basalt_wall": "Pared de roca volcánica", - "block.terrestria.smooth_basalt": "Roca volcánica lisa", - "block.terrestria.smooth_basalt_slab": "Baldosa de roca volcánica lisa", - "block.terrestria.smooth_basalt_stairs": "Escaleras de roca volcánica lisa", - "block.terrestria.smooth_basalt_wall": "Pared de roca volcánica lisa", - "block.terrestria.basalt_cobblestone": "Adoquín de roca volcánica", - "block.terrestria.basalt_cobblestone_slab": "Baldosa de adoquín de roca volcánica", - "block.terrestria.basalt_cobblestone_stairs": "Escaleras de adoquín de roca volcánica", - "block.terrestria.basalt_cobblestone_wall": "Pared de adoquín de roca volcánica", - "block.terrestria.mossy_basalt_cobblestone": "Adoquín de roca volcánica musgoso", - "block.terrestria.mossy_basalt_cobblestone_slab": "Baldosa de adoquín de roca volcánica musgoso", - "block.terrestria.mossy_basalt_cobblestone_stairs": "Escaleras de adoquín de roca volcánica musgoso", - "block.terrestria.mossy_basalt_cobblestone_wall": "Pared de adoquín de roca volcánica musgoso", - "block.terrestria.basalt_bricks": "Ladrillos de roca volcánica", - "block.terrestria.basalt_brick_slab": "Baldosa de ladrillos de roca volcánica", - "block.terrestria.basalt_brick_stairs": "Escaleras de ladrillos de roca volcánica", - "block.terrestria.basalt_brick_wall": "Pared de ladrillos de roca volcánica", - "block.terrestria.mossy_basalt_bricks": "Ladrillos de roca volcánica musgosos", - "block.terrestria.mossy_basalt_brick_slab": "Baldosa de ladrillos de roca volcánica musgosos", - "block.terrestria.mossy_basalt_brick_stairs": "Escaleras de ladrillos de roca volcánica musgosos", - "block.terrestria.mossy_basalt_brick_wall": "Pared de ladrillos de roca volcánica musgosos", - "block.terrestria.basalt_button": "Botón de roca volcánica", - "block.terrestria.basalt_pressure_plate": "Placa de presión de roca volcánica", - "block.terrestria.chiseled_basalt_bricks": "Ladrillos de roca volcánica cincelados", - "block.terrestria.cracked_basalt_bricks": "Ladrillos de roca volcánica quebrados", - "block.terrestria.basalt_grass_block": "Bloque de pasto en andosol", - "block.terrestria.basalt_grass_path": "Camino de pasto en andosol", - "block.terrestria.basalt_sand": "Arena negra", - "block.terrestria.basalt_dirt": "Andosol", - "block.terrestria.basalt_podzol": "Podsol en andosol", + "block.terrestria.volcanic_rock": "Roca volcánica", + "block.terrestria.volcanic_rock_slab": "Baldosa de roca volcánica", + "block.terrestria.volcanic_rock_stairs": "Escaleras de roca volcánica", + "block.terrestria.volcanic_rock_wall": "Pared de roca volcánica", + "block.terrestria.smooth_volcanic_rock": "Roca volcánica lisa", + "block.terrestria.smooth_volcanic_rock_slab": "Baldosa de roca volcánica lisa", + "block.terrestria.smooth_volcanic_rock_stairs": "Escaleras de roca volcánica lisa", + "block.terrestria.smooth_volcanic_rock_wall": "Pared de roca volcánica lisa", + "block.terrestria.volcanic_rock_cobblestone": "Adoquín de roca volcánica", + "block.terrestria.volcanic_rock_cobblestone_slab": "Baldosa de adoquín de roca volcánica", + "block.terrestria.volcanic_rock_cobblestone_stairs": "Escaleras de adoquín de roca volcánica", + "block.terrestria.volcanic_rock_cobblestone_wall": "Pared de adoquín de roca volcánica", + "block.terrestria.mossy_volcanic_rock_cobblestone": "Adoquín de roca volcánica musgoso", + "block.terrestria.mossy_volcanic_rock_cobblestone_slab": "Baldosa de adoquín de roca volcánica musgoso", + "block.terrestria.mossy_volcanic_rock_cobblestone_stairs": "Escaleras de adoquín de roca volcánica musgoso", + "block.terrestria.mossy_volcanic_rock_cobblestone_wall": "Pared de adoquín de roca volcánica musgoso", + "block.terrestria.volcanic_rock_bricks": "Ladrillos de roca volcánica", + "block.terrestria.volcanic_rock_brick_slab": "Baldosa de ladrillos de roca volcánica", + "block.terrestria.volcanic_rock_brick_stairs": "Escaleras de ladrillos de roca volcánica", + "block.terrestria.volcanic_rock_brick_wall": "Pared de ladrillos de roca volcánica", + "block.terrestria.mossy_volcanic_rock_bricks": "Ladrillos de roca volcánica musgosos", + "block.terrestria.mossy_volcanic_rock_brick_slab": "Baldosa de ladrillos de roca volcánica musgosos", + "block.terrestria.mossy_volcanic_rock_brick_stairs": "Escaleras de ladrillos de roca volcánica musgosos", + "block.terrestria.mossy_volcanic_rock_brick_wall": "Pared de ladrillos de roca volcánica musgosos", + "block.terrestria.volcanic_rock_button": "Botón de roca volcánica", + "block.terrestria.volcanic_rock_pressure_plate": "Placa de presión de roca volcánica", + "block.terrestria.chiseled_volcanic_rock_bricks": "Ladrillos de roca volcánica cincelados", + "block.terrestria.cracked_volcanic_rock_bricks": "Ladrillos de roca volcánica quebrados", + "block.terrestria.volcanic_sand": "Arena negra", + "block.terrestria.andisol": "Andosol", + "block.terrestria.andisol_dirt_path": "Camino de pasto en andosol", "block.terrestria.andisol_farmland": "Tierra de cultivo en andosol", + "block.terrestria.andisol_grass_block": "Bloque de pasto en andosol", + "block.terrestria.andisol_podzol": "Podsol en andosol", "block.terrestria.indian_paintbrush": "Castilleja", "block.terrestria.monsteras": "Monstera", "block.terrestria.potted_indian_paintbrush": "Maceta con castilleja", @@ -250,227 +250,5 @@ "item.terrestria.rubber_boat": "Bote de madera de caucho", "item.terrestria.sakura_boat": "Bote de sakura", "item.terrestria.willow_boat": "Bote de sauce", - "item.terrestria.yucca_palm_boat": "Bote de palmera yuca", - - "item.terrestria.redwood_log": "Tronco de secoya", - "item.terrestria.redwood_wood": "Leño de secoya", - "item.terrestria.redwood_quarter_log": "Tronco de secoya", - "item.terrestria.redwood_sapling": "Brote de secoya", - "item.terrestria.redwood_leaves": "Hojas de secoya", - "item.terrestria.redwood_planks": "Madera de secoya", - "item.terrestria.redwood_slab": "Baldosa de secoya", - "item.terrestria.redwood_stairs": "Escaleras de secoya", - "item.terrestria.redwood_fence": "Valla de secoya", - "item.terrestria.redwood_fence_gate": "Puerta de valla de secoya", - "item.terrestria.redwood_door": "Puerta de secoya", - "item.terrestria.redwood_pressure_plate": "Placa de presión de secoya", - "item.terrestria.redwood_button": "Botón de secoya", - "item.terrestria.redwood_sign": "Cartel de secoya", - "item.terrestria.redwood_trapdoor": "Escotilla de secoya", - "item.terrestria.stripped_redwood_wood": "Leño de secoya sin corteza", - "item.terrestria.stripped_redwood_log": "Tronco de secoya sin corteza", - "item.terrestria.stripped_redwood_quarter_log": "Tronco de secoya sin corteza", - "item.terrestria.hemlock_log": "Tronco de tsuga", - "item.terrestria.hemlock_wood": "Leño de tsuga", - "item.terrestria.hemlock_quarter_log": "Tronco de tsuga", - "item.terrestria.hemlock_sapling": "Brote de tsuga", - "item.terrestria.hemlock_leaves": "Hojas de tsuga", - "item.terrestria.hemlock_planks": "Madera de tsuga", - "item.terrestria.hemlock_slab": "Baldosa de tsuga", - "item.terrestria.hemlock_stairs": "Escaleras de tsuga", - "item.terrestria.hemlock_fence": "Valla de tsuga", - "item.terrestria.hemlock_fence_gate": "Puerta de valla de tsuga", - "item.terrestria.hemlock_door": "Puerta de tsuga", - "item.terrestria.hemlock_pressure_plate": "Placa de presión de tsuga", - "item.terrestria.hemlock_button": "Botón de tsuga", - "item.terrestria.hemlock_sign": "Cartel de tsuga", - "item.terrestria.hemlock_trapdoor": "Escotilla de tsuga", - "item.terrestria.stripped_hemlock_wood": "Leño de tsuga sin corteza", - "item.terrestria.stripped_hemlock_log": "Tronco de tsuga sin corteza", - "item.terrestria.stripped_hemlock_quarter_log": "Tronco de tsuga sin corteza", - "item.terrestria.jungle_palm_sapling": "Brote de palmera de jungla", - "item.terrestria.jungle_palm_leaves": "Hojas de palmera de jungla", - "item.terrestria.rubber_log": "Tronco de árbol de caucho", - "item.terrestria.rubber_wood": "Leño de árbol de caucho", - "item.terrestria.rubber_sapling": "Brote de árbol de caucho", - "item.terrestria.rubber_leaves": "Hojas de árbol de caucho", - "item.terrestria.rubber_planks": "Madera de caucho", - "item.terrestria.rubber_slab": "Baldosa de madera de caucho", - "item.terrestria.rubber_stairs": "Escaleras de madera de caucho", - "item.terrestria.rubber_fence": "Valla de madera de caucho", - "item.terrestria.rubber_fence_gate": "Puerta de valla de madera de caucho", - "item.terrestria.rubber_door": "Puerta de madera de caucho", - "item.terrestria.rubber_pressure_plate": "Placa de presión de madera de caucho", - "item.terrestria.rubber_button": "Botón de madera de caucho", - "item.terrestria.rubber_sign": "Cartel de madera de caucho", - "item.terrestria.rubber_trapdoor": "Escotilla de madera de caucho", - "item.terrestria.stripped_rubber_wood": "Leño de árbol de caucho sin corteza", - "item.terrestria.stripped_rubber_log": "Tronco de árbol de caucho sin corteza", - "item.terrestria.cypress_log": "Tronco de ciprés", - "item.terrestria.cypress_wood": "Leño de ciprés", - "item.terrestria.cypress_quarter_log": "Tronco de ciprés", - "item.terrestria.cypress_sapling": "Brote de ciprés", - "item.terrestria.cypress_leaves": "Hojas de ciprés", - "item.terrestria.cypress_planks": "Madera de ciprés", - "item.terrestria.cypress_slab": "Baldosa de ciprés", - "item.terrestria.cypress_stairs": "Escaleras de ciprés", - "item.terrestria.cypress_fence": "Valla de ciprés", - "item.terrestria.cypress_fence_gate": "Puerta de valla de ciprés", - "item.terrestria.cypress_door": "Puerta de ciprés", - "item.terrestria.cypress_pressure_plate": "Placa de presión de ciprés", - "item.terrestria.cypress_button": "Botón de ciprés", - "item.terrestria.cypress_sign": "Cartel de ciprés", - "item.terrestria.cypress_trapdoor": "Escotilla de ciprés", - "item.terrestria.stripped_cypress_wood": "Leño de ciprés sin corteza", - "item.terrestria.stripped_cypress_log": "Tronco de ciprés sin corteza", - "item.terrestria.stripped_cypress_quarter_log": "Tronco de ciprés sin corteza", - "item.terrestria.willow_log": "Tronco de sauce", - "item.terrestria.willow_wood": "Leño de sauce", - "item.terrestria.willow_sapling": "Brote de sauce", - "item.terrestria.willow_leaves": "Hojas de sauce", - "item.terrestria.willow_planks": "Madera de sauce", - "item.terrestria.willow_slab": "Baldosa de sauce", - "item.terrestria.willow_stairs": "Escaleras de sauce", - "item.terrestria.willow_fence": "Valla de sauce", - "item.terrestria.willow_fence_gate": "Puerta de valla de sauce", - "item.terrestria.willow_door": "Puerta de sauce", - "item.terrestria.willow_pressure_plate": "Placa de presión de sauce", - "item.terrestria.willow_button": "Botón de sauce", - "item.terrestria.willow_sign": "Cartel de sauce", - "item.terrestria.willow_trapdoor": "Escotilla de sauce", - "item.terrestria.stripped_willow_wood": "Tronco de sauce sin corteza", - "item.terrestria.stripped_willow_log": "Leño de sauce sin corteza", - "item.terrestria.japanese_maple_log": "Tronco de arce japonés", - "item.terrestria.japanese_maple_wood": "Leño de arce japonés", - "item.terrestria.japanese_maple_sapling": "Brote de arce japonés", - "item.terrestria.japanese_maple_leaves": "Hojas de arce japonés", - "item.terrestria.japanese_maple_planks": "Madera de arce japonés", - "item.terrestria.japanese_maple_slab": "Baldosa de arce japonés", - "item.terrestria.japanese_maple_stairs": "Escaleras de arce japonés", - "item.terrestria.japanese_maple_fence": "Valla de arce japonés", - "item.terrestria.japanese_maple_fence_gate": "Puerta de valla de arce japonés", - "item.terrestria.japanese_maple_door": "Puerta de arce japonés", - "item.terrestria.japanese_maple_pressure_plate": "Placa de presión de arce japonés", - "item.terrestria.japanese_maple_button": "Botón de arce japonés", - "item.terrestria.japanese_maple_sign": "Cartel de arce japonés", - "item.terrestria.japanese_maple_trapdoor": "Escotilla de arce japonés", - "item.terrestria.stripped_japanese_maple_wood": "Leño de arce japonés sin corteza", - "item.terrestria.stripped_japanese_maple_log": "Tronco de arce japonés sin corteza", - "item.terrestria.dark_japanese_maple_leaves": "Hojas de arce japonés oscuras", - "item.terrestria.dark_japanese_maple_sapling": "Brote de arce japonés oscuro", - "item.terrestria.rainbow_eucalyptus_log": "Tronco de eucalipto arcoíris", - "item.terrestria.rainbow_eucalyptus_wood": "Leño de eucalipto arcoíris", - "item.terrestria.rainbow_eucalyptus_quarter_log": "Tronco de eucalipto arcoíris", - "item.terrestria.rainbow_eucalyptus_sapling": "Brote de eucalipto arcoíris", - "item.terrestria.rainbow_eucalyptus_leaves": "Hojas de eucalipto arcoíris", - "item.terrestria.rainbow_eucalyptus_planks": "Madera de eucalipto arcoíris", - "item.terrestria.rainbow_eucalyptus_slab": "Baldosa de eucalipto arcoíris", - "item.terrestria.rainbow_eucalyptus_stairs": "Escaleras de eucalipto arcoíris", - "item.terrestria.rainbow_eucalyptus_fence": "Valla de eucalipto arcoíris", - "item.terrestria.rainbow_eucalyptus_fence_gate": "Puerta de valla de eucalipto arcoíris", - "item.terrestria.rainbow_eucalyptus_door": "Puerta de eucalipto arcoíris", - "item.terrestria.rainbow_eucalyptus_pressure_plate": "Placa de presión", - "item.terrestria.rainbow_eucalyptus_button": "Botón de eucalipto arcoíris", - "item.terrestria.rainbow_eucalyptus_sign": "Cartel de eucalipto arcoíris", - "item.terrestria.rainbow_eucalyptus_trapdoor": "Escotilla de eucalipto arcoíris", - "item.terrestria.stripped_rainbow_eucalyptus_wood": "Leño de eucalipto arcoíris sin corteza", - "item.terrestria.stripped_rainbow_eucalyptus_log": "Tronco de eucalipto arcoíris sin corteza", - "item.terrestria.stripped_rainbow_eucalyptus_quarter_log": "Tronco de eucalipto arcoíris sin corteza", - "item.terrestria.sakura_log": "Tronco de sakura", - "item.terrestria.sakura_sapling": "Brote de sakura", - "item.terrestria.sakura_leaves": "Hojas de sakura", - "item.terrestria.sakura_leaf_pile": "Pila de hojas de sakura", - "item.terrestria.sakura_planks": "Madera de sakura", - "item.terrestria.sakura_slab": "Baldosa de sakura", - "item.terrestria.sakura_stairs": "Escaleras de sakura", - "item.terrestria.sakura_fence": "Valla de sakura", - "item.terrestria.sakura_fence_gate": "Puerta de valla de sakura", - "item.terrestria.sakura_door": "Puerta de sakura", - "item.terrestria.sakura_pressure_plate": "Placa de presión de sakura", - "item.terrestria.sakura_button": "Botón de sakura", - "item.terrestria.sakura_sign": "Cartel de sakura", - "item.terrestria.sakura_trapdoor": "Escotilla de sakura", - "item.terrestria.stripped_sakura_wood": "Leño de sakura sin corteza", - "item.terrestria.stripped_sakura_log": "Tronco de sakura sin corteza", - "item.terrestria.cattail": "Totora", - "item.terrestria.tall_cattail": "Totora alta", - "item.terrestria.basalt": "Roca volcánica", - "item.terrestria.basalt_slab": "Baldosa de roca volcánica", - "item.terrestria.basalt_stairs": "Escaleras de roca volcánica", - "item.terrestria.basalt_wall": "Pared de roca volcánica", - "item.terrestria.smooth_basalt": "Roca volcánica lisa", - "item.terrestria.smooth_basalt_slab": "Baldosa de roca volcánica lisa", - "item.terrestria.smooth_basalt_stairs": "Escaleras de roca volcánica lisa", - "item.terrestria.smooth_basalt_wall": "Pared de roca volcánica lisa", - "item.terrestria.basalt_cobblestone": "Adoquín de roca volcánica", - "item.terrestria.basalt_cobblestone_slab": "Baldosa de adoquín de roca volcánica", - "item.terrestria.basalt_cobblestone_stairs": "Escaleras de adoquín de roca volcánica", - "item.terrestria.basalt_cobblestone_wall": "Pared de adoquín de roca volcánica", - "item.terrestria.mossy_basalt_cobblestone": "Adoquín de roca volcánica musgoso", - "item.terrestria.mossy_basalt_cobblestone_slab": "Baldosa de adoquín de roca volcánica musgoso", - "item.terrestria.mossy_basalt_cobblestone_stairs": "Escaleras de adoquín de roca volcánica musgoso", - "item.terrestria.mossy_basalt_cobblestone_wall": "Pared de adoquín de roca volcánica musgoso", - "item.terrestria.basalt_bricks": "Ladrillos de roca volcánica", - "item.terrestria.basalt_brick_slab": "Baldosa de ladrillos de roca volcánica", - "item.terrestria.basalt_brick_stairs": "Escaleras de ladrillos de roca volcánica", - "item.terrestria.basalt_brick_wall": "Pared de ladrillos de roca volcánica", - "item.terrestria.mossy_basalt_bricks": "Ladrillos de roca volcánica musgosos", - "item.terrestria.mossy_basalt_brick_slab": "Baldosa de ladrillos de roca volcánica musgosos", - "item.terrestria.mossy_basalt_brick_stairs": "Escaleras de ladrillos de roca volcánica musgosos", - "item.terrestria.mossy_basalt_brick_wall": "Pared de ladrillos de roca volcánica musgosos", - "item.terrestria.basalt_button": "Botón de roca volcánica", - "item.terrestria.basalt_pressure_plate": "Placa de presión de roca volcánica", - "item.terrestria.chiseled_basalt_bricks": "Ladrillos de roca volcánica cincelados", - "item.terrestria.cracked_basalt_bricks": "Ladrillos de roca volcánica quebrados", - "item.terrestria.basalt_grass_block": "Bloque de pasto en andosol", - "item.terrestria.basalt_grass_path": "Camino de pasto en andosol", - "item.terrestria.basalt_sand": "Arena negra", - "item.terrestria.basalt_dirt": "Andosol", - "item.terrestria.basalt_podzol": "Podsol en andosol", - "item.terrestria.andisol_farmland": "Tierra de cultivo en andosol", - "item.terrestria.indian_paintbrush": "Castilleja", - "item.terrestria.monsteras": "Monstera", - "item.terrestria.potted_indian_paintbrush": "Maceta con castilleja", - "item.terrestria.potted_monsteras": "Maceta con monstera", - "item.terrestria.japanese_maple_shrub_sapling": "Brote de arbusto de arce japonés", - "item.terrestria.japanese_maple_shrub_leaves": "Hojas de arbusto de arce japonés", - "item.terrestria.potted_redwood_sapling": "Maceta con brote de secoya", - "item.terrestria.potted_hemlock_sapling": "Maceta con brote de tsuga", - "item.terrestria.potted_rubber_sapling": "Maceta con brote de árbol de caucho", - "item.terrestria.potted_cypress_sapling": "Maceta con brote de ciprés", - "item.terrestria.potted_willow_sapling": "Maceta con brote de sauce", - "item.terrestria.potted_japanese_maple_sapling": "Maceta con brote de arce japonés", - "item.terrestria.potted_dark_japanese_maple_sapling": "Maceta con brote de arce japonés oscuro", - "item.terrestria.potted_rainbow_eucalyptus_sapling": "Maceta con brote de eucalipto arcoíris", - "item.terrestria.potted_sakura_sapling": "Maceta con brote de sakura", - "item.terrestria.potted_jungle_palm_sapling": "Maceta con brote de palmera de jungla", - "item.terrestria.potted_japanese_maple_shrub_sapling": "Maceta con brote de arbusto de arce japonés", - "item.terrestria.potted_saguaro_cactus_sapling": "Maceta con brote de cactus saguaro", - "item.terrestria.potted_yucca_palm_sapling": "Maceta con brote de palmera yuca", - "item.terrestria.agave": "Agave", - "item.terrestria.tiny_cactus": "Cactus chiquito", - "item.terrestria.aloe_vera": "Aloe vera", - "item.terrestria.dead_grass": "Pasto muerto", - "item.terrestria.potted_agave": "Maceta con agave", - "item.terrestria.potted_tiny_cactus": "Maceta con cactus chiquito", - "item.terrestria.potted_aloe_vera": "Maceta con aloe vera", - "item.terrestria.yucca_palm_log": "Tronco de palmera yuca", - "item.terrestria.yucca_palm_leaves": "Hojas de palmera yuca", - "item.terrestria.yucca_palm_planks": "Madera de palmera yuca", - "item.terrestria.yucca_palm_slab": "Baldosa de palmera yuca", - "item.terrestria.yucca_palm_stairs": "Escaleras de palmera yuca", - "item.terrestria.yucca_palm_fence": "Valla de palmera yuca", - "item.terrestria.yucca_palm_fence_gate": "Puerta de palmera yuca", - "item.terrestria.yucca_palm_door": "Puerta de palmera yuca", - "item.terrestria.yucca_palm_button": "Botón de palmera yuca", - "item.terrestria.yucca_palm_pressure_plate": "Placa de presión de palmera yuca", - "item.terrestria.yucca_palm_trapdoor": "Escotilla de palmera yuca", - "item.terrestria.yucca_palm_sign": "Cartel de palmera yuca", - "item.terrestria.stripped_yucca_palm_log": "Tronco de palmera yuca sin corteza", - "item.terrestria.small_oak_log": "Tronco de roble pequeño", - "item.terrestria.stripped_small_oak_log": "Tronco de roble pequeño sin corteza", - "item.terrestria.saguaro_cactus": "Cactus saguaro", - "item.terrestria.bryce_sapling": "Brote de pino longevo", - "item.terrestria.saguaro_cactus_sapling": "Brote de cactus saguaro", - "item.terrestria.yucca_palm_sapling": "Brote de palmera yuca" + "item.terrestria.yucca_palm_boat": "Bote de palmera yuca" } diff --git a/client/src/main/resources/assets/terrestria/lang/es_es.json b/client/src/main/resources/assets/terrestria/lang/es_es.json index 495deb26..243e82bd 100644 --- a/client/src/main/resources/assets/terrestria/lang/es_es.json +++ b/client/src/main/resources/assets/terrestria/lang/es_es.json @@ -158,40 +158,40 @@ "block.terrestria.stripped_sakura_log": "Tronco de sakura sin corteza", "block.terrestria.cattail": "Totora", "block.terrestria.tall_cattail": "Totora alta", - "block.terrestria.basalt": "Roca volcánica", - "block.terrestria.basalt_slab": "Losa de roca volcánica", - "block.terrestria.basalt_stairs": "Escaleras de roca volcánica", - "block.terrestria.basalt_wall": "Muro de roca volcánica", - "block.terrestria.smooth_basalt": "Roca volcánica lisa", - "block.terrestria.smooth_basalt_slab": "Losa de roca volcánica lisa", - "block.terrestria.smooth_basalt_stairs": "Escaleras de roca volcánica lisa", - "block.terrestria.smooth_basalt_wall": "Muro de roca volcánica lisa", - "block.terrestria.basalt_cobblestone": "Roca volcánica labrada", - "block.terrestria.basalt_cobblestone_slab": "Losa de roca volcánica labrada", - "block.terrestria.basalt_cobblestone_stairs": "Escaleras de roca volcánica labrada", - "block.terrestria.basalt_cobblestone_wall": "Muro de roca volcánica labrada", - "block.terrestria.mossy_basalt_cobblestone": "Roca volcánica labrada musgosa", - "block.terrestria.mossy_basalt_cobblestone_slab": "Losa de roca volcánica labrada musgosa", - "block.terrestria.mossy_basalt_cobblestone_stairs": "Escaleras de roca volcánica labrada musgosa", - "block.terrestria.mossy_basalt_cobblestone_wall": "Muro de roca volcánica labrada musgosa", - "block.terrestria.basalt_bricks": "Ladrillos de roca volcánica", - "block.terrestria.basalt_brick_slab": "Losa de ladrillos de roca volcánica", - "block.terrestria.basalt_brick_stairs": "Escaleras de ladrillos de roca volcánica", - "block.terrestria.basalt_brick_wall": "Muro de ladrillos de roca volcánica", - "block.terrestria.mossy_basalt_bricks": "Ladrillos de roca volcánica musgosos", - "block.terrestria.mossy_basalt_brick_slab": "Losa de ladrillos de roca volcánica musgosos", - "block.terrestria.mossy_basalt_brick_stairs": "Escaleras de ladrillos de roca volcánica musgosos", - "block.terrestria.mossy_basalt_brick_wall": "Muro de ladrillos de roca volcánica musgosos", - "block.terrestria.basalt_button": "Botón de roca volcánica", - "block.terrestria.basalt_pressure_plate": "Placa de presión de roca volcánica", - "block.terrestria.chiseled_basalt_bricks": "Ladrillos de roca volcánica cincelados", - "block.terrestria.cracked_basalt_bricks": "Ladrillos de roca volcánica agrietados", - "block.terrestria.basalt_grass_block": "Césped en andosol", - "block.terrestria.basalt_grass_path": "Camino de césped en andosol", - "block.terrestria.basalt_sand": "Arena negra", - "block.terrestria.basalt_dirt": "Andosol", - "block.terrestria.basalt_podzol": "Podsol en andosol", + "block.terrestria.volcanic_rock": "Roca volcánica", + "block.terrestria.volcanic_rock_slab": "Losa de roca volcánica", + "block.terrestria.volcanic_rock_stairs": "Escaleras de roca volcánica", + "block.terrestria.volcanic_rock_wall": "Muro de roca volcánica", + "block.terrestria.smooth_volcanic_rock": "Roca volcánica lisa", + "block.terrestria.smooth_volcanic_rock_slab": "Losa de roca volcánica lisa", + "block.terrestria.smooth_volcanic_rock_stairs": "Escaleras de roca volcánica lisa", + "block.terrestria.smooth_volcanic_rock_wall": "Muro de roca volcánica lisa", + "block.terrestria.volcanic_rock_cobblestone": "Roca volcánica labrada", + "block.terrestria.volcanic_rock_cobblestone_slab": "Losa de roca volcánica labrada", + "block.terrestria.volcanic_rock_cobblestone_stairs": "Escaleras de roca volcánica labrada", + "block.terrestria.volcanic_rock_cobblestone_wall": "Muro de roca volcánica labrada", + "block.terrestria.mossy_volcanic_rock_cobblestone": "Roca volcánica labrada musgosa", + "block.terrestria.mossy_volcanic_rock_cobblestone_slab": "Losa de roca volcánica labrada musgosa", + "block.terrestria.mossy_volcanic_rock_cobblestone_stairs": "Escaleras de roca volcánica labrada musgosa", + "block.terrestria.mossy_volcanic_rock_cobblestone_wall": "Muro de roca volcánica labrada musgosa", + "block.terrestria.volcanic_rock_bricks": "Ladrillos de roca volcánica", + "block.terrestria.volcanic_rock_brick_slab": "Losa de ladrillos de roca volcánica", + "block.terrestria.volcanic_rock_brick_stairs": "Escaleras de ladrillos de roca volcánica", + "block.terrestria.volcanic_rock_brick_wall": "Muro de ladrillos de roca volcánica", + "block.terrestria.mossy_volcanic_rock_bricks": "Ladrillos de roca volcánica musgosos", + "block.terrestria.mossy_volcanic_rock_brick_slab": "Losa de ladrillos de roca volcánica musgosos", + "block.terrestria.mossy_volcanic_rock_brick_stairs": "Escaleras de ladrillos de roca volcánica musgosos", + "block.terrestria.mossy_volcanic_rock_brick_wall": "Muro de ladrillos de roca volcánica musgosos", + "block.terrestria.volcanic_rock_button": "Botón de roca volcánica", + "block.terrestria.volcanic_rock_pressure_plate": "Placa de presión de roca volcánica", + "block.terrestria.chiseled_volcanic_rock_bricks": "Ladrillos de roca volcánica cincelados", + "block.terrestria.cracked_volcanic_rock_bricks": "Ladrillos de roca volcánica agrietados", + "block.terrestria.volcanic_sand": "Arena negra", + "block.terrestria.andisol": "Andosol", + "block.terrestria.andisol_dirt_path": "Camino de césped en andosol", "block.terrestria.andisol_farmland": "Tierra de cultivo en andosol", + "block.terrestria.andisol_grass_block": "Césped en andosol", + "block.terrestria.andisol_podzol": "Podsol en andosol", "block.terrestria.indian_paintbrush": "Castilleja", "block.terrestria.monsteras": "Monstera", "block.terrestria.potted_indian_paintbrush": "Maceta con castilleja", @@ -250,227 +250,5 @@ "item.terrestria.rubber_boat": "Barca de madera de caucho", "item.terrestria.sakura_boat": "Barca de sakura", "item.terrestria.willow_boat": "Barca de sauce", - "item.terrestria.yucca_palm_boat": "Barca de palmera yuca", - - "item.terrestria.redwood_log": "Tronco de secoya", - "item.terrestria.redwood_wood": "Leño de secoya", - "item.terrestria.redwood_quarter_log": "Tronco de secoya", - "item.terrestria.redwood_sapling": "Brote de secoya", - "item.terrestria.redwood_leaves": "Hojas de secoya", - "item.terrestria.redwood_planks": "Madera de secoya", - "item.terrestria.redwood_slab": "Losa de secoya", - "item.terrestria.redwood_stairs": "Escaleras de secoya", - "item.terrestria.redwood_fence": "Valla de secoya", - "item.terrestria.redwood_fence_gate": "Puerta de valla de secoya", - "item.terrestria.redwood_door": "Puerta de secoya", - "item.terrestria.redwood_pressure_plate": "Placa de presión de secoya", - "item.terrestria.redwood_button": "Botón de secoya", - "item.terrestria.redwood_sign": "Cartel de secoya", - "item.terrestria.redwood_trapdoor": "Trampilla de secoya", - "item.terrestria.stripped_redwood_wood": "Leño de secoya sin corteza", - "item.terrestria.stripped_redwood_log": "Tronco de secoya sin corteza", - "item.terrestria.stripped_redwood_quarter_log": "Tronco de secoya sin corteza", - "item.terrestria.hemlock_log": "Tronco de tsuga", - "item.terrestria.hemlock_wood": "Leño de tsuga", - "item.terrestria.hemlock_quarter_log": "Tronco de tsuga", - "item.terrestria.hemlock_sapling": "Brote de tsuga", - "item.terrestria.hemlock_leaves": "Hojas de tsuga", - "item.terrestria.hemlock_planks": "Madera de tsuga", - "item.terrestria.hemlock_slab": "Losa de tsuga", - "item.terrestria.hemlock_stairs": "Escaleras de tsuga", - "item.terrestria.hemlock_fence": "Valla de tsuga", - "item.terrestria.hemlock_fence_gate": "Puerta de valla de tsuga", - "item.terrestria.hemlock_door": "Puerta de tsuga", - "item.terrestria.hemlock_pressure_plate": "Placa de presión de tsuga", - "item.terrestria.hemlock_button": "Botón de tsuga", - "item.terrestria.hemlock_sign": "Cartel de tsuga", - "item.terrestria.hemlock_trapdoor": "Trampilla de tsuga", - "item.terrestria.stripped_hemlock_wood": "Leño de tsuga sin corteza", - "item.terrestria.stripped_hemlock_log": "Tronco de tsuga sin corteza", - "item.terrestria.stripped_hemlock_quarter_log": "Tronco de tsuga sin corteza", - "item.terrestria.jungle_palm_sapling": "Brote de palmera de jungla", - "item.terrestria.jungle_palm_leaves": "Hojas de palmera de jungla", - "item.terrestria.rubber_log": "Tronco de árbol de caucho", - "item.terrestria.rubber_wood": "Leño de árbol de caucho", - "item.terrestria.rubber_sapling": "Brote de árbol de caucho", - "item.terrestria.rubber_leaves": "Hojas de árbol de caucho", - "item.terrestria.rubber_planks": "Madera de caucho", - "item.terrestria.rubber_slab": "Losa de madera de caucho", - "item.terrestria.rubber_stairs": "Escaleras de madera de caucho", - "item.terrestria.rubber_fence": "Valla de madera de caucho", - "item.terrestria.rubber_fence_gate": "Puerta de valla de madera de caucho", - "item.terrestria.rubber_door": "Puerta de madera de caucho", - "item.terrestria.rubber_pressure_plate": "Placa de presión de madera de caucho", - "item.terrestria.rubber_button": "Botón de madera de caucho", - "item.terrestria.rubber_sign": "Cartel de madera de caucho", - "item.terrestria.rubber_trapdoor": "Trampilla de madera de caucho", - "item.terrestria.stripped_rubber_wood": "Leño de árbol de caucho sin corteza", - "item.terrestria.stripped_rubber_log": "Tronco de árbol de caucho sin corteza", - "item.terrestria.cypress_log": "Tronco de ciprés", - "item.terrestria.cypress_wood": "Leño de ciprés", - "item.terrestria.cypress_quarter_log": "Tronco de ciprés", - "item.terrestria.cypress_sapling": "Brote de ciprés", - "item.terrestria.cypress_leaves": "Hojas de ciprés", - "item.terrestria.cypress_planks": "Madera de ciprés", - "item.terrestria.cypress_slab": "Losa de ciprés", - "item.terrestria.cypress_stairs": "Escaleras de ciprés", - "item.terrestria.cypress_fence": "Valla de ciprés", - "item.terrestria.cypress_fence_gate": "Puerta de valla de ciprés", - "item.terrestria.cypress_door": "Puerta de ciprés", - "item.terrestria.cypress_pressure_plate": "Placa de presión de ciprés", - "item.terrestria.cypress_button": "Botón de ciprés", - "item.terrestria.cypress_sign": "Cartel de ciprés", - "item.terrestria.cypress_trapdoor": "Trampilla de ciprés", - "item.terrestria.stripped_cypress_wood": "Leño de ciprés sin corteza", - "item.terrestria.stripped_cypress_log": "Tronco de ciprés sin corteza", - "item.terrestria.stripped_cypress_quarter_log": "Tronco de ciprés sin corteza", - "item.terrestria.willow_log": "Tronco de sauce", - "item.terrestria.willow_wood": "Leño de sauce", - "item.terrestria.willow_sapling": "Brote de sauce", - "item.terrestria.willow_leaves": "Hojas de sauce", - "item.terrestria.willow_planks": "Madera de sauce", - "item.terrestria.willow_slab": "Losa de sauce", - "item.terrestria.willow_stairs": "Escaleras de sauce", - "item.terrestria.willow_fence": "Valla de sauce", - "item.terrestria.willow_fence_gate": "Puerta de valla de sauce", - "item.terrestria.willow_door": "Puerta de sauce", - "item.terrestria.willow_pressure_plate": "Placa de presión de sauce", - "item.terrestria.willow_button": "Botón de sauce", - "item.terrestria.willow_sign": "Cartel de sauce", - "item.terrestria.willow_trapdoor": "Trampilla de sauce", - "item.terrestria.stripped_willow_wood": "Tronco de sauce sin corteza", - "item.terrestria.stripped_willow_log": "Leño de sauce sin corteza", - "item.terrestria.japanese_maple_log": "Tronco de arce japonés", - "item.terrestria.japanese_maple_wood": "Leño de arce japonés", - "item.terrestria.japanese_maple_sapling": "Brote de arce japonés", - "item.terrestria.japanese_maple_leaves": "Hojas de arce japonés", - "item.terrestria.japanese_maple_planks": "Madera de arce japonés", - "item.terrestria.japanese_maple_slab": "Losa de arce japonés", - "item.terrestria.japanese_maple_stairs": "Escaleras de arce japonés", - "item.terrestria.japanese_maple_fence": "Valla de arce japonés", - "item.terrestria.japanese_maple_fence_gate": "Puerta de valla de arce japonés", - "item.terrestria.japanese_maple_door": "Puerta de arce japonés", - "item.terrestria.japanese_maple_pressure_plate": "Placa de presión de arce japonés", - "item.terrestria.japanese_maple_button": "Botón de arce japonés", - "item.terrestria.japanese_maple_sign": "Cartel de arce japonés", - "item.terrestria.japanese_maple_trapdoor": "Trampilla de arce japonés", - "item.terrestria.stripped_japanese_maple_wood": "Leño de arce japonés sin corteza", - "item.terrestria.stripped_japanese_maple_log": "Tronco de arce japonés sin corteza", - "item.terrestria.dark_japanese_maple_leaves": "Hojas de arce japonés oscuras", - "item.terrestria.dark_japanese_maple_sapling": "Brote de arce japonés oscuro", - "item.terrestria.rainbow_eucalyptus_log": "Tronco de eucalipto arcoíris", - "item.terrestria.rainbow_eucalyptus_wood": "Leño de eucalipto arcoíris", - "item.terrestria.rainbow_eucalyptus_quarter_log": "Tronco de eucalipto arcoíris", - "item.terrestria.rainbow_eucalyptus_sapling": "Brote de eucalipto arcoíris", - "item.terrestria.rainbow_eucalyptus_leaves": "Hojas de eucalipto arcoíris", - "item.terrestria.rainbow_eucalyptus_planks": "Madera de eucalipto arcoíris", - "item.terrestria.rainbow_eucalyptus_slab": "Losa de eucalipto arcoíris", - "item.terrestria.rainbow_eucalyptus_stairs": "Escaleras de eucalipto arcoíris", - "item.terrestria.rainbow_eucalyptus_fence": "Valla de eucalipto arcoíris", - "item.terrestria.rainbow_eucalyptus_fence_gate": "Puerta de valla de eucalipto arcoíris", - "item.terrestria.rainbow_eucalyptus_door": "Puerta de eucalipto arcoíris", - "item.terrestria.rainbow_eucalyptus_pressure_plate": "Placa de presión", - "item.terrestria.rainbow_eucalyptus_button": "Botón de eucalipto arcoíris", - "item.terrestria.rainbow_eucalyptus_sign": "Cartel de eucalipto arcoíris", - "item.terrestria.rainbow_eucalyptus_trapdoor": "Trampilla de eucalipto arcoíris", - "item.terrestria.stripped_rainbow_eucalyptus_wood": "Leño de eucalipto arcoíris sin corteza", - "item.terrestria.stripped_rainbow_eucalyptus_log": "Tronco de eucalipto arcoíris sin corteza", - "item.terrestria.stripped_rainbow_eucalyptus_quarter_log": "Tronco de eucalipto arcoíris sin corteza", - "item.terrestria.sakura_log": "Tronco de sakura", - "item.terrestria.sakura_sapling": "Brote de sakura", - "item.terrestria.sakura_leaves": "Hojas de sakura", - "item.terrestria.sakura_leaf_pile": "Pila de hojas de sakura", - "item.terrestria.sakura_planks": "Madera de sakura", - "item.terrestria.sakura_slab": "Losa de sakura", - "item.terrestria.sakura_stairs": "Escaleras de sakura", - "item.terrestria.sakura_fence": "Valla de sakura", - "item.terrestria.sakura_fence_gate": "Puerta de valla de sakura", - "item.terrestria.sakura_door": "Puerta de sakura", - "item.terrestria.sakura_pressure_plate": "Placa de presión de sakura", - "item.terrestria.sakura_button": "Botón de sakura", - "item.terrestria.sakura_sign": "Cartel de sakura", - "item.terrestria.sakura_trapdoor": "Trampilla de sakura", - "item.terrestria.stripped_sakura_wood": "Leño de sakura sin corteza", - "item.terrestria.stripped_sakura_log": "Tronco de sakura sin corteza", - "item.terrestria.cattail": "Totora", - "item.terrestria.tall_cattail": "Totora alta", - "item.terrestria.basalt": "Roca volcánica", - "item.terrestria.basalt_slab": "Losa de roca volcánica", - "item.terrestria.basalt_stairs": "Escaleras de roca volcánica", - "item.terrestria.basalt_wall": "Muro de roca volcánica", - "item.terrestria.smooth_basalt": "Roca volcánica lisa", - "item.terrestria.smooth_basalt_slab": "Losa de roca volcánica lisa", - "item.terrestria.smooth_basalt_stairs": "Escaleras de roca volcánica lisa", - "item.terrestria.smooth_basalt_wall": "Muro de roca volcánica lisa", - "item.terrestria.basalt_cobblestone": "Roca volcánica labrada", - "item.terrestria.basalt_cobblestone_slab": "Losa de roca volcánica labrada", - "item.terrestria.basalt_cobblestone_stairs": "Escaleras de roca volcánica labrada", - "item.terrestria.basalt_cobblestone_wall": "Muro de roca volcánica labrada", - "item.terrestria.mossy_basalt_cobblestone": "Roca volcánica labrada musgosa", - "item.terrestria.mossy_basalt_cobblestone_slab": "Losa de roca volcánica labrada musgosa", - "item.terrestria.mossy_basalt_cobblestone_stairs": "Escaleras de roca volcánica labrada musgosa", - "item.terrestria.mossy_basalt_cobblestone_wall": "Muro de roca volcánica labrada musgosa", - "item.terrestria.basalt_bricks": "Ladrillos de roca volcánica", - "item.terrestria.basalt_brick_slab": "Losa de ladrillos de roca volcánica", - "item.terrestria.basalt_brick_stairs": "Escaleras de ladrillos de roca volcánica", - "item.terrestria.basalt_brick_wall": "Muro de ladrillos de roca volcánica", - "item.terrestria.mossy_basalt_bricks": "Ladrillos de roca volcánica musgosos", - "item.terrestria.mossy_basalt_brick_slab": "Losa de ladrillos de roca volcánica musgosos", - "item.terrestria.mossy_basalt_brick_stairs": "Escaleras de ladrillos de roca volcánica musgosos", - "item.terrestria.mossy_basalt_brick_wall": "Muro de ladrillos de roca volcánica musgosos", - "item.terrestria.basalt_button": "Botón de roca volcánica", - "item.terrestria.basalt_pressure_plate": "Placa de presión de roca volcánica", - "item.terrestria.chiseled_basalt_bricks": "Ladrillos de roca volcánica cincelados", - "item.terrestria.cracked_basalt_bricks": "Ladrillos de roca volcánica agrietados", - "item.terrestria.basalt_grass_block": "Césped en andosol", - "item.terrestria.basalt_grass_path": "Camino de césped en andosol", - "item.terrestria.basalt_sand": "Arena negra", - "item.terrestria.basalt_dirt": "Andosol", - "item.terrestria.basalt_podzol": "Podsol en andosol", - "item.terrestria.andisol_farmland": "Tierra de cultivo en andosol", - "item.terrestria.indian_paintbrush": "Castilleja", - "item.terrestria.monsteras": "Monstera", - "item.terrestria.potted_indian_paintbrush": "Maceta con castilleja", - "item.terrestria.potted_monsteras": "Maceta con monstera", - "item.terrestria.japanese_maple_shrub_sapling": "Brote de arbusto de arce japonés", - "item.terrestria.japanese_maple_shrub_leaves": "Hojas de arbusto de arce japonés", - "item.terrestria.potted_redwood_sapling": "Maceta con brote de secoya", - "item.terrestria.potted_hemlock_sapling": "Maceta con brote de tsuga", - "item.terrestria.potted_rubber_sapling": "Maceta con brote de árbol de caucho", - "item.terrestria.potted_cypress_sapling": "Maceta con brote de ciprés", - "item.terrestria.potted_willow_sapling": "Maceta con brote de sauce", - "item.terrestria.potted_japanese_maple_sapling": "Maceta con brote de arce japonés", - "item.terrestria.potted_dark_japanese_maple_sapling": "Maceta con brote de arce japonés oscuro", - "item.terrestria.potted_rainbow_eucalyptus_sapling": "Maceta con brote de eucalipto arcoíris", - "item.terrestria.potted_sakura_sapling": "Maceta con brote de sakura", - "item.terrestria.potted_jungle_palm_sapling": "Maceta con brote de palmera de jungla", - "item.terrestria.potted_japanese_maple_shrub_sapling": "Maceta con brote de arbusto de arce japonés", - "item.terrestria.potted_saguaro_cactus_sapling": "Maceta con brote de cactus saguaro", - "item.terrestria.potted_yucca_palm_sapling": "Maceta con brote de palmera yuca", - "item.terrestria.agave": "Agave", - "item.terrestria.tiny_cactus": "Cactus diminuto", - "item.terrestria.aloe_vera": "Aloe vera", - "item.terrestria.dead_grass": "Hierba muerta", - "item.terrestria.potted_agave": "Maceta con agave", - "item.terrestria.potted_tiny_cactus": "Maceta con cactus diminuto", - "item.terrestria.potted_aloe_vera": "Maceta con aloe vera", - "item.terrestria.yucca_palm_log": "Tronco de palmera yuca", - "item.terrestria.yucca_palm_leaves": "Hojas de palmera yuca", - "item.terrestria.yucca_palm_planks": "Madera de palmera yuca", - "item.terrestria.yucca_palm_slab": "Losa de palmera yuca", - "item.terrestria.yucca_palm_stairs": "Escaleras de palmera yuca", - "item.terrestria.yucca_palm_fence": "Valla de palmera yuca", - "item.terrestria.yucca_palm_fence_gate": "Puerta de palmera yuca", - "item.terrestria.yucca_palm_door": "Puerta de palmera yuca", - "item.terrestria.yucca_palm_button": "Botón de palmera yuca", - "item.terrestria.yucca_palm_pressure_plate": "Placa de presión de palmera yuca", - "item.terrestria.yucca_palm_trapdoor": "Trampilla de palmera yuca", - "item.terrestria.yucca_palm_sign": "Cartel de palmera yuca", - "item.terrestria.stripped_yucca_palm_log": "Tronco de palmera yuca sin corteza", - "item.terrestria.small_oak_log": "Tronco de roble pequeño", - "item.terrestria.stripped_small_oak_log": "Tronco de roble pequeño sin corteza", - "item.terrestria.saguaro_cactus": "Cactus saguaro", - "item.terrestria.bryce_sapling": "Brote de pino longevo", - "item.terrestria.saguaro_cactus_sapling": "Brote de cactus saguaro", - "item.terrestria.yucca_palm_sapling": "Brote de palmera yuca" + "item.terrestria.yucca_palm_boat": "Barca de palmera yuca" } diff --git a/client/src/main/resources/assets/terrestria/lang/es_mx.json b/client/src/main/resources/assets/terrestria/lang/es_mx.json index 6a99726f..fb0d1957 100644 --- a/client/src/main/resources/assets/terrestria/lang/es_mx.json +++ b/client/src/main/resources/assets/terrestria/lang/es_mx.json @@ -158,40 +158,40 @@ "block.terrestria.stripped_sakura_log": "Tronco de sakura sin corteza", "block.terrestria.cattail": "Totora", "block.terrestria.tall_cattail": "Totora alta", - "block.terrestria.basalt": "Roca volcánica", - "block.terrestria.basalt_slab": "Losa de roca volcánica", - "block.terrestria.basalt_stairs": "Escaleras de roca volcánica", - "block.terrestria.basalt_wall": "Pared de roca volcánica", - "block.terrestria.smooth_basalt": "Roca volcánica lisa", - "block.terrestria.smooth_basalt_slab": "Losa de roca volcánica lisa", - "block.terrestria.smooth_basalt_stairs": "Escaleras de roca volcánica lisa", - "block.terrestria.smooth_basalt_wall": "Pared de roca volcánica lisa", - "block.terrestria.basalt_cobblestone": "Roca volcánica labrada", - "block.terrestria.basalt_cobblestone_slab": "Losa de roca volcánica labrada", - "block.terrestria.basalt_cobblestone_stairs": "Escaleras de roca volcánica labrada", - "block.terrestria.basalt_cobblestone_wall": "Pared de roca volcánica labrada", - "block.terrestria.mossy_basalt_cobblestone": "Roca volcánica labrada musgosa", - "block.terrestria.mossy_basalt_cobblestone_slab": "Losa de roca volcánica labrada musgosa", - "block.terrestria.mossy_basalt_cobblestone_stairs": "Escaleras de roca volcánica labrada musgosa", - "block.terrestria.mossy_basalt_cobblestone_wall": "Pared de roca volcánica labrada musgosa", - "block.terrestria.basalt_bricks": "Ladrillos de roca volcánica", - "block.terrestria.basalt_brick_slab": "Losa de ladrillos de roca volcánica", - "block.terrestria.basalt_brick_stairs": "Escaleras de ladrillos de roca volcánica", - "block.terrestria.basalt_brick_wall": "Pared de ladrillos de roca volcánica", - "block.terrestria.mossy_basalt_bricks": "Ladrillos de roca volcánica musgosa", - "block.terrestria.mossy_basalt_brick_slab": "Losa de ladrillos de roca volcánica musgosa", - "block.terrestria.mossy_basalt_brick_stairs": "Escaleras de ladrillos de roca volcánica musgosa", - "block.terrestria.mossy_basalt_brick_wall": "Pared de ladrillos de roca volcánica musgosa", - "block.terrestria.basalt_button": "Botón de roca volcánica", - "block.terrestria.basalt_pressure_plate": "Placa de presión de roca volcánica", - "block.terrestria.chiseled_basalt_bricks": "Ladrillos de roca volcánica grabados", - "block.terrestria.cracked_basalt_bricks": "Ladrillos de roca volcánica rotos", - "block.terrestria.basalt_grass_block": "Bloque de pasto en andosol", - "block.terrestria.basalt_grass_path": "Camino de pasto en andosol", - "block.terrestria.basalt_sand": "Arena negra", - "block.terrestria.basalt_dirt": "Andosol", - "block.terrestria.basalt_podzol": "Podsol en andosol", + "block.terrestria.volcanic_rock": "Roca volcánica", + "block.terrestria.volcanic_rock_slab": "Losa de roca volcánica", + "block.terrestria.volcanic_rock_stairs": "Escaleras de roca volcánica", + "block.terrestria.volcanic_rock_wall": "Pared de roca volcánica", + "block.terrestria.smooth_volcanic_rock": "Roca volcánica lisa", + "block.terrestria.smooth_volcanic_rock_slab": "Losa de roca volcánica lisa", + "block.terrestria.smooth_volcanic_rock_stairs": "Escaleras de roca volcánica lisa", + "block.terrestria.smooth_volcanic_rock_wall": "Pared de roca volcánica lisa", + "block.terrestria.volcanic_rock_cobblestone": "Roca volcánica labrada", + "block.terrestria.volcanic_rock_cobblestone_slab": "Losa de roca volcánica labrada", + "block.terrestria.volcanic_rock_cobblestone_stairs": "Escaleras de roca volcánica labrada", + "block.terrestria.volcanic_rock_cobblestone_wall": "Pared de roca volcánica labrada", + "block.terrestria.mossy_volcanic_rock_cobblestone": "Roca volcánica labrada musgosa", + "block.terrestria.mossy_volcanic_rock_cobblestone_slab": "Losa de roca volcánica labrada musgosa", + "block.terrestria.mossy_volcanic_rock_cobblestone_stairs": "Escaleras de roca volcánica labrada musgosa", + "block.terrestria.mossy_volcanic_rock_cobblestone_wall": "Pared de roca volcánica labrada musgosa", + "block.terrestria.volcanic_rock_bricks": "Ladrillos de roca volcánica", + "block.terrestria.volcanic_rock_brick_slab": "Losa de ladrillos de roca volcánica", + "block.terrestria.volcanic_rock_brick_stairs": "Escaleras de ladrillos de roca volcánica", + "block.terrestria.volcanic_rock_brick_wall": "Pared de ladrillos de roca volcánica", + "block.terrestria.mossy_volcanic_rock_bricks": "Ladrillos de roca volcánica musgosa", + "block.terrestria.mossy_volcanic_rock_brick_slab": "Losa de ladrillos de roca volcánica musgosa", + "block.terrestria.mossy_volcanic_rock_brick_stairs": "Escaleras de ladrillos de roca volcánica musgosa", + "block.terrestria.mossy_volcanic_rock_brick_wall": "Pared de ladrillos de roca volcánica musgosa", + "block.terrestria.volcanic_rock_button": "Botón de roca volcánica", + "block.terrestria.volcanic_rock_pressure_plate": "Placa de presión de roca volcánica", + "block.terrestria.chiseled_volcanic_rock_bricks": "Ladrillos de roca volcánica grabados", + "block.terrestria.cracked_volcanic_rock_bricks": "Ladrillos de roca volcánica rotos", + "block.terrestria.volcanic_sand": "Arena negra", + "block.terrestria.andisol": "Andosol", + "block.terrestria.andisol_dirt_path": "Camino de pasto en andosol", "block.terrestria.andisol_farmland": "Tierra de cultivo en andosol", + "block.terrestria.andisol_grass_block": "Bloque de pasto en andosol", + "block.terrestria.andisol_podzol": "Podsol en andosol", "block.terrestria.indian_paintbrush": "Castilleja", "block.terrestria.monsteras": "Monstera", "block.terrestria.potted_indian_paintbrush": "Maceta con castilleja", @@ -250,227 +250,5 @@ "item.terrestria.rubber_boat": "Bote de madera de caucho", "item.terrestria.sakura_boat": "Bote de sakura", "item.terrestria.willow_boat": "Bote de sauce", - "item.terrestria.yucca_palm_boat": "Bote de palmera yuca", - - "item.terrestria.redwood_log": "Tronco de secoya", - "item.terrestria.redwood_wood": "Leño de secoya", - "item.terrestria.redwood_quarter_log": "Tronco de secoya", - "item.terrestria.redwood_sapling": "Retoño de secoya", - "item.terrestria.redwood_leaves": "Hojas de secoya", - "item.terrestria.redwood_planks": "Madera de secoya", - "item.terrestria.redwood_slab": "Losa de secoya", - "item.terrestria.redwood_stairs": "Escaleras de secoya", - "item.terrestria.redwood_fence": "Valla de secoya", - "item.terrestria.redwood_fence_gate": "Puerta de valla de secoya", - "item.terrestria.redwood_door": "Puerta de secoya", - "item.terrestria.redwood_pressure_plate": "Placa de presión de secoya", - "item.terrestria.redwood_button": "Botón de secoya", - "item.terrestria.redwood_sign": "Letrero de secoya", - "item.terrestria.redwood_trapdoor": "Trampilla de secoya", - "item.terrestria.stripped_redwood_wood": "Leño de secoya sin corteza", - "item.terrestria.stripped_redwood_log": "Tronco de secoya sin corteza", - "item.terrestria.stripped_redwood_quarter_log": "Tronco de secoya sin corteza", - "item.terrestria.hemlock_log": "Tronco de tsuga", - "item.terrestria.hemlock_wood": "Leño de tsuga", - "item.terrestria.hemlock_quarter_log": "Tronco de tsuga", - "item.terrestria.hemlock_sapling": "Retoño de tsuga", - "item.terrestria.hemlock_leaves": "Hojas de tsuga", - "item.terrestria.hemlock_planks": "Madera de tsuga", - "item.terrestria.hemlock_slab": "Losa de tsuga", - "item.terrestria.hemlock_stairs": "Escaleras de tsuga", - "item.terrestria.hemlock_fence": "Valla de tsuga", - "item.terrestria.hemlock_fence_gate": "Puerta de valla de tsuga", - "item.terrestria.hemlock_door": "Puerta de tsuga", - "item.terrestria.hemlock_pressure_plate": "Placa de presión de tsuga", - "item.terrestria.hemlock_button": "Botón de tsuga", - "item.terrestria.hemlock_sign": "Letrero de tsuga", - "item.terrestria.hemlock_trapdoor": "Trampilla de tsuga", - "item.terrestria.stripped_hemlock_wood": "Leño de tsuga sin corteza", - "item.terrestria.stripped_hemlock_log": "Tronco de tsuga sin corteza", - "item.terrestria.stripped_hemlock_quarter_log": "Tronco de tsuga sin corteza", - "item.terrestria.jungle_palm_sapling": "Retoño de palmera de jungla", - "item.terrestria.jungle_palm_leaves": "Hojas de palmera de jungla", - "item.terrestria.rubber_log": "Tronco de árbol de caucho", - "item.terrestria.rubber_wood": "Leño de árbol de caucho", - "item.terrestria.rubber_sapling": "Retoño de árbol de caucho", - "item.terrestria.rubber_leaves": "Hojas de árbol de caucho", - "item.terrestria.rubber_planks": "Madera de caucho", - "item.terrestria.rubber_slab": "Losa de madera de caucho", - "item.terrestria.rubber_stairs": "Escaleras de madera de caucho", - "item.terrestria.rubber_fence": "Valla de madera de caucho", - "item.terrestria.rubber_fence_gate": "Puerta de valla de madera de caucho", - "item.terrestria.rubber_door": "Puerta de madera de caucho", - "item.terrestria.rubber_pressure_plate": "Placa de presión de madera de caucho", - "item.terrestria.rubber_button": "Botón de madera de caucho", - "item.terrestria.rubber_sign": "Letrero de madera de caucho", - "item.terrestria.rubber_trapdoor": "Trampilla de madera de caucho", - "item.terrestria.stripped_rubber_wood": "Leño de árbol de caucho sin corteza", - "item.terrestria.stripped_rubber_log": "Tronco de árbol de caucho sin corteza", - "item.terrestria.cypress_log": "Tronco de ciprés", - "item.terrestria.cypress_wood": "Leño de ciprés", - "item.terrestria.cypress_quarter_log": "Tronco de ciprés", - "item.terrestria.cypress_sapling": "Retoño de ciprés", - "item.terrestria.cypress_leaves": "Hojas de ciprés", - "item.terrestria.cypress_planks": "Madera de ciprés", - "item.terrestria.cypress_slab": "Losa de ciprés", - "item.terrestria.cypress_stairs": "Escaleras de ciprés", - "item.terrestria.cypress_fence": "Valla de ciprés", - "item.terrestria.cypress_fence_gate": "Puerta de valla de ciprés", - "item.terrestria.cypress_door": "Puerta de ciprés", - "item.terrestria.cypress_pressure_plate": "Placa de presión de ciprés", - "item.terrestria.cypress_button": "Botón de ciprés", - "item.terrestria.cypress_sign": "Letrero de ciprés", - "item.terrestria.cypress_trapdoor": "Trampilla de ciprés", - "item.terrestria.stripped_cypress_wood": "Leño de ciprés sin corteza", - "item.terrestria.stripped_cypress_log": "Tronco de ciprés sin corteza", - "item.terrestria.stripped_cypress_quarter_log": "Tronco de ciprés sin corteza", - "item.terrestria.willow_log": "Tronco de sauce", - "item.terrestria.willow_wood": "Leño de sauce", - "item.terrestria.willow_sapling": "Retoño de sauce", - "item.terrestria.willow_leaves": "Hojas de sauce", - "item.terrestria.willow_planks": "Madera de sauce", - "item.terrestria.willow_slab": "Losa de sauce", - "item.terrestria.willow_stairs": "Escaleras de sauce", - "item.terrestria.willow_fence": "Valla de sauce", - "item.terrestria.willow_fence_gate": "Puerta de valla de sauce", - "item.terrestria.willow_door": "Puerta de sauce", - "item.terrestria.willow_pressure_plate": "Placa de presión de sauce", - "item.terrestria.willow_button": "Botón de sauce", - "item.terrestria.willow_sign": "Letrero de sauce", - "item.terrestria.willow_trapdoor": "Trampilla de sauce", - "item.terrestria.stripped_willow_wood": "Tronco de sauce sin corteza", - "item.terrestria.stripped_willow_log": "Leño de sauce sin corteza", - "item.terrestria.japanese_maple_log": "Tronco de arce japonés", - "item.terrestria.japanese_maple_wood": "Leño de arce japonés", - "item.terrestria.japanese_maple_sapling": "Retoño de arce japonés", - "item.terrestria.japanese_maple_leaves": "Hojas de arce japonés", - "item.terrestria.japanese_maple_planks": "Madera de arce japonés", - "item.terrestria.japanese_maple_slab": "Losa de arce japonés", - "item.terrestria.japanese_maple_stairs": "Escaleras de arce japonés", - "item.terrestria.japanese_maple_fence": "Valla de arce japonés", - "item.terrestria.japanese_maple_fence_gate": "Puerta de valla de arce japonés", - "item.terrestria.japanese_maple_door": "Puerta de arce japonés", - "item.terrestria.japanese_maple_pressure_plate": "Placa de presión de arce japonés", - "item.terrestria.japanese_maple_button": "Botón de arce japonés", - "item.terrestria.japanese_maple_sign": "Letrero de arce japonés", - "item.terrestria.japanese_maple_trapdoor": "Trampilla de arce japonés", - "item.terrestria.stripped_japanese_maple_wood": "Leño de arce japonés sin corteza", - "item.terrestria.stripped_japanese_maple_log": "Tronco de arce japonés sin corteza", - "item.terrestria.dark_japanese_maple_leaves": "Hojas de arce japonés oscuras", - "item.terrestria.dark_japanese_maple_sapling": "Retoño de arce japonés oscuro", - "item.terrestria.rainbow_eucalyptus_log": "Tronco de eucalipto arcoíris", - "item.terrestria.rainbow_eucalyptus_wood": "Leño de eucalipto arcoíris", - "item.terrestria.rainbow_eucalyptus_quarter_log": "Tronco de eucalipto arcoíris", - "item.terrestria.rainbow_eucalyptus_sapling": "Retoño de eucalipto arcoíris", - "item.terrestria.rainbow_eucalyptus_leaves": "Hojas de eucalipto arcoíris", - "item.terrestria.rainbow_eucalyptus_planks": "Madera de eucalipto arcoíris", - "item.terrestria.rainbow_eucalyptus_slab": "Losa de eucalipto arcoíris", - "item.terrestria.rainbow_eucalyptus_stairs": "Escaleras de eucalipto arcoíris", - "item.terrestria.rainbow_eucalyptus_fence": "Valla de eucalipto arcoíris", - "item.terrestria.rainbow_eucalyptus_fence_gate": "Puerta de valla de eucalipto arcoíris", - "item.terrestria.rainbow_eucalyptus_door": "Puerta de eucalipto arcoíris", - "item.terrestria.rainbow_eucalyptus_pressure_plate": "Placa de presión", - "item.terrestria.rainbow_eucalyptus_button": "Botón de eucalipto arcoíris", - "item.terrestria.rainbow_eucalyptus_sign": "Letrero de eucalipto arcoíris", - "item.terrestria.rainbow_eucalyptus_trapdoor": "Trampilla de eucalipto arcoíris", - "item.terrestria.stripped_rainbow_eucalyptus_wood": "Leño de eucalipto arcoíris sin corteza", - "item.terrestria.stripped_rainbow_eucalyptus_log": "Tronco de eucalipto arcoíris sin corteza", - "item.terrestria.stripped_rainbow_eucalyptus_quarter_log": "Tronco de eucalipto arcoíris sin corteza", - "item.terrestria.sakura_log": "Tronco de sakura", - "item.terrestria.sakura_sapling": "Retoño de sakura", - "item.terrestria.sakura_leaves": "Hojas de sakura", - "item.terrestria.sakura_leaf_pile": "Pila de hojas de sakura", - "item.terrestria.sakura_planks": "Madera de sakura", - "item.terrestria.sakura_slab": "Losa de sakura", - "item.terrestria.sakura_stairs": "Escaleras de sakura", - "item.terrestria.sakura_fence": "Valla de sakura", - "item.terrestria.sakura_fence_gate": "Puerta de valla de sakura", - "item.terrestria.sakura_door": "Puerta de sakura", - "item.terrestria.sakura_pressure_plate": "Placa de presión de sakura", - "item.terrestria.sakura_button": "Botón de sakura", - "item.terrestria.sakura_sign": "Letrero de sakura", - "item.terrestria.sakura_trapdoor": "Trampilla de sakura", - "item.terrestria.stripped_sakura_wood": "Leño de sakura sin corteza", - "item.terrestria.stripped_sakura_log": "Tronco de sakura sin corteza", - "item.terrestria.cattail": "Totora", - "item.terrestria.tall_cattail": "Totora alta", - "item.terrestria.basalt": "Roca volcánica", - "item.terrestria.basalt_slab": "Losa de roca volcánica", - "item.terrestria.basalt_stairs": "Escaleras de roca volcánica", - "item.terrestria.basalt_wall": "Pared de roca volcánica", - "item.terrestria.smooth_basalt": "Roca volcánica lisa", - "item.terrestria.smooth_basalt_slab": "Losa de roca volcánica lisa", - "item.terrestria.smooth_basalt_stairs": "Escaleras de roca volcánica lisa", - "item.terrestria.smooth_basalt_wall": "Pared de roca volcánica lisa", - "item.terrestria.basalt_cobblestone": "Roca volcánica labrada", - "item.terrestria.basalt_cobblestone_slab": "Losa de roca volcánica labrada", - "item.terrestria.basalt_cobblestone_stairs": "Escaleras de roca volcánica labrada", - "item.terrestria.basalt_cobblestone_wall": "Pared de roca volcánica labrada", - "item.terrestria.mossy_basalt_cobblestone": "Roca volcánica labrada musgosa", - "item.terrestria.mossy_basalt_cobblestone_slab": "Losa de roca volcánica labrada musgosa", - "item.terrestria.mossy_basalt_cobblestone_stairs": "Escaleras de roca volcánica labrada musgosa", - "item.terrestria.mossy_basalt_cobblestone_wall": "Pared de roca volcánica labrada musgosa", - "item.terrestria.basalt_bricks": "Ladrillos de roca volcánica", - "item.terrestria.basalt_brick_slab": "Losa de ladrillos de roca volcánica", - "item.terrestria.basalt_brick_stairs": "Escaleras de ladrillos de roca volcánica", - "item.terrestria.basalt_brick_wall": "Pared de ladrillos de roca volcánica", - "item.terrestria.mossy_basalt_bricks": "Ladrillos de roca volcánica musgosa", - "item.terrestria.mossy_basalt_brick_slab": "Losa de ladrillos de roca volcánica musgosa", - "item.terrestria.mossy_basalt_brick_stairs": "Escaleras de ladrillos de roca volcánica musgosa", - "item.terrestria.mossy_basalt_brick_wall": "Pared de ladrillos de roca volcánica musgosa", - "item.terrestria.basalt_button": "Botón de roca volcánica", - "item.terrestria.basalt_pressure_plate": "Placa de presión de roca volcánica", - "item.terrestria.chiseled_basalt_bricks": "Ladrillos de roca volcánica grabados", - "item.terrestria.cracked_basalt_bricks": "Ladrillos de roca volcánica rotos", - "item.terrestria.basalt_grass_block": "Bloque de pasto en andosol", - "item.terrestria.basalt_grass_path": "Camino de pasto en andosol", - "item.terrestria.basalt_sand": "Arena negra", - "item.terrestria.basalt_dirt": "Andosol", - "item.terrestria.basalt_podzol": "Podsol en andosol", - "item.terrestria.andisol_farmland": "Tierra de cultivo en andosol", - "item.terrestria.indian_paintbrush": "Castilleja", - "item.terrestria.monsteras": "Monstera", - "item.terrestria.potted_indian_paintbrush": "Maceta con castilleja", - "item.terrestria.potted_monsteras": "Maceta con monstera", - "item.terrestria.japanese_maple_shrub_sapling": "Retoño de arbusto de arce japonés", - "item.terrestria.japanese_maple_shrub_leaves": "Hojas de arbusto de arce japonés", - "item.terrestria.potted_redwood_sapling": "Maceta con retoño de secoya", - "item.terrestria.potted_hemlock_sapling": "Maceta con retoño de tsuga", - "item.terrestria.potted_rubber_sapling": "Maceta con retoño de árbol de caucho", - "item.terrestria.potted_cypress_sapling": "Maceta con retoño de ciprés", - "item.terrestria.potted_willow_sapling": "Maceta con retoño de sauce", - "item.terrestria.potted_japanese_maple_sapling": "Maceta con retoño de arce japonés", - "item.terrestria.potted_dark_japanese_maple_sapling": "Maceta con retoño de arce japonés oscuro", - "item.terrestria.potted_rainbow_eucalyptus_sapling": "Maceta con retoño de eucalipto arcoíris", - "item.terrestria.potted_sakura_sapling": "Maceta con retoño de sakura", - "item.terrestria.potted_jungle_palm_sapling": "Maceta con retoño de palmera de jungla", - "item.terrestria.potted_japanese_maple_shrub_sapling": "Maceta con retoño de arbusto de arce japonés", - "item.terrestria.potted_saguaro_cactus_sapling": "Maceta con retoño de cactus saguaro", - "item.terrestria.potted_yucca_palm_sapling": "Maceta con retoño de palmera yuca", - "item.terrestria.agave": "Agave", - "item.terrestria.tiny_cactus": "Cactus chiquito", - "item.terrestria.aloe_vera": "Aloe vera", - "item.terrestria.dead_grass": "Pasto muerto", - "item.terrestria.potted_agave": "Maceta con agave", - "item.terrestria.potted_tiny_cactus": "Maceta con cactus chiquito", - "item.terrestria.potted_aloe_vera": "Maceta con aloe vera", - "item.terrestria.yucca_palm_log": "Tronco de palmera yuca", - "item.terrestria.yucca_palm_leaves": "Hojas de palmera yuca", - "item.terrestria.yucca_palm_planks": "Madera de palmera yuca", - "item.terrestria.yucca_palm_slab": "Losa de palmera yuca", - "item.terrestria.yucca_palm_stairs": "Escaleras de palmera yuca", - "item.terrestria.yucca_palm_fence": "Valla de palmera yuca", - "item.terrestria.yucca_palm_fence_gate": "Puerta de palmera yuca", - "item.terrestria.yucca_palm_door": "Puerta de palmera yuca", - "item.terrestria.yucca_palm_button": "Botón de palmera yuca", - "item.terrestria.yucca_palm_pressure_plate": "Placa de presión de palmera yuca", - "item.terrestria.yucca_palm_trapdoor": "Trampilla de palmera yuca", - "item.terrestria.yucca_palm_sign": "Letrero de palmera yuca", - "item.terrestria.stripped_yucca_palm_log": "Tronco de palmera yuca sin corteza", - "item.terrestria.small_oak_log": "Tronco de roble pequeño", - "item.terrestria.stripped_small_oak_log": "Tronco de roble pequeño sin corteza", - "item.terrestria.saguaro_cactus": "Cactus saguaro", - "item.terrestria.bryce_sapling": "Retoño de pino longevo", - "item.terrestria.saguaro_cactus_sapling": "Retoño de cactus saguaro", - "item.terrestria.yucca_palm_sapling": "Retoño de palmera yuca" + "item.terrestria.yucca_palm_boat": "Bote de palmera yuca" } diff --git a/client/src/main/resources/assets/terrestria/lang/fr_fr.json b/client/src/main/resources/assets/terrestria/lang/fr_fr.json index 5ddc9352..f7d261b1 100644 --- a/client/src/main/resources/assets/terrestria/lang/fr_fr.json +++ b/client/src/main/resources/assets/terrestria/lang/fr_fr.json @@ -157,40 +157,40 @@ "block.terrestria.stripped_sakura_log": "Bûche de sakura écorcée", "block.terrestria.cattail": "Massettes", "block.terrestria.tall_cattail": "Grandes massettes", - "block.terrestria.basalt": "Roche volcanique", - "block.terrestria.basalt_slab": "Dalle de roche volcanique", - "block.terrestria.basalt_stairs": "Escalier de roche volcanique", - "block.terrestria.basalt_wall": "Muret de roche volcanique", - "block.terrestria.smooth_basalt": "Roche volcanique lisse", - "block.terrestria.smooth_basalt_slab": "Dalle de roche volcanique lisse", - "block.terrestria.smooth_basalt_stairs": "Escalier de roche volcanique lisse", - "block.terrestria.smooth_basalt_wall": "Muret de roche volcanique lisse", - "block.terrestria.basalt_cobblestone": "Pierres volcaniques", - "block.terrestria.basalt_cobblestone_slab": "Dalle de pierres volcaniques", - "block.terrestria.basalt_cobblestone_stairs": "Escalier de pierres volcaniques", - "block.terrestria.basalt_cobblestone_wall": "Muret de pierres volcaniques", - "block.terrestria.mossy_basalt_cobblestone": "Pierres volcaniques moussues", - "block.terrestria.mossy_basalt_cobblestone_slab": "Dalle de pierres volcaniques moussues", - "block.terrestria.mossy_basalt_cobblestone_stairs": "Escalier de pierres volcaniques moussues", - "block.terrestria.mossy_basalt_cobblestone_wall": "Muret de pierres volcaniques moussues", - "block.terrestria.basalt_bricks": "Roche volcanique taillée", - "block.terrestria.basalt_brick_slab": "Dalle de roche volcanique taillée", - "block.terrestria.basalt_brick_stairs": "Escalier de roche volcanique taillée", - "block.terrestria.basalt_brick_wall": "Muret de roche volcanique taillée", - "block.terrestria.mossy_basalt_bricks": "Roche volcanique taillée moussue", - "block.terrestria.mossy_basalt_brick_slab": "Dalle de roche volcanique taillée moussue", - "block.terrestria.mossy_basalt_brick_stairs": "Escalier de roche volcanique taillée moussue", - "block.terrestria.mossy_basalt_brick_wall": "Muret de roche volcanique taillée moussue", - "block.terrestria.basalt_button": "Bouton de roche volcanique", - "block.terrestria.basalt_pressure_plate": "Plaque de pression de roche volcanique", - "block.terrestria.chiseled_basalt_bricks": "Roche volcanique sculptée", - "block.terrestria.cracked_basalt_bricks": "Roche volcanique taillée craquelée", - "block.terrestria.basalt_grass_block": "Bloc d'herbe d'Andisol", - "block.terrestria.basalt_grass_path": "Chemin d'herbe d'Andisol", - "block.terrestria.basalt_sand": "Sable noirc", - "block.terrestria.basalt_dirt": "Andisol", - "block.terrestria.basalt_podzol": "Podzol d'Andisol", + "block.terrestria.volcanic_rock": "Roche volcanique", + "block.terrestria.volcanic_rock_slab": "Dalle de roche volcanique", + "block.terrestria.volcanic_rock_stairs": "Escalier de roche volcanique", + "block.terrestria.volcanic_rock_wall": "Muret de roche volcanique", + "block.terrestria.smooth_volcanic_rock": "Roche volcanique lisse", + "block.terrestria.smooth_volcanic_rock_slab": "Dalle de roche volcanique lisse", + "block.terrestria.smooth_volcanic_rock_stairs": "Escalier de roche volcanique lisse", + "block.terrestria.smooth_volcanic_rock_wall": "Muret de roche volcanique lisse", + "block.terrestria.volcanic_rock_cobblestone": "Pierres volcaniques", + "block.terrestria.volcanic_rock_cobblestone_slab": "Dalle de pierres volcaniques", + "block.terrestria.volcanic_rock_cobblestone_stairs": "Escalier de pierres volcaniques", + "block.terrestria.volcanic_rock_cobblestone_wall": "Muret de pierres volcaniques", + "block.terrestria.mossy_volcanic_rock_cobblestone": "Pierres volcaniques moussues", + "block.terrestria.mossy_volcanic_rock_cobblestone_slab": "Dalle de pierres volcaniques moussues", + "block.terrestria.mossy_volcanic_rock_cobblestone_stairs": "Escalier de pierres volcaniques moussues", + "block.terrestria.mossy_volcanic_rock_cobblestone_wall": "Muret de pierres volcaniques moussues", + "block.terrestria.volcanic_rock_bricks": "Roche volcanique taillée", + "block.terrestria.volcanic_rock_brick_slab": "Dalle de roche volcanique taillée", + "block.terrestria.volcanic_rock_brick_stairs": "Escalier de roche volcanique taillée", + "block.terrestria.volcanic_rock_brick_wall": "Muret de roche volcanique taillée", + "block.terrestria.mossy_volcanic_rock_bricks": "Roche volcanique taillée moussue", + "block.terrestria.mossy_volcanic_rock_brick_slab": "Dalle de roche volcanique taillée moussue", + "block.terrestria.mossy_volcanic_rock_brick_stairs": "Escalier de roche volcanique taillée moussue", + "block.terrestria.mossy_volcanic_rock_brick_wall": "Muret de roche volcanique taillée moussue", + "block.terrestria.volcanic_rock_button": "Bouton de roche volcanique", + "block.terrestria.volcanic_rock_pressure_plate": "Plaque de pression de roche volcanique", + "block.terrestria.chiseled_volcanic_rock_bricks": "Roche volcanique sculptée", + "block.terrestria.cracked_volcanic_rock_bricks": "Roche volcanique taillée craquelée", + "block.terrestria.volcanic_sand": "Sable noirc", + "block.terrestria.andisol": "Andisol", + "block.terrestria.andisol_dirt_path": "Chemin d'herbe d'Andisol", "block.terrestria.andisol_farmland": "Andisol labouré", + "block.terrestria.andisol_grass_block": "Bloc d'herbe d'Andisol", + "block.terrestria.andisol_podzol": "Podzol d'Andisol", "block.terrestria.indian_paintbrush": "Castilleja", "block.terrestria.monsteras": "Monsteras", "block.terrestria.potted_indian_paintbrush": "Castilleja en pot", @@ -248,225 +248,5 @@ "item.terrestria.rubber_boat": "Bateau en hévéa", "item.terrestria.sakura_boat": "Bateau en sakura", "item.terrestria.willow_boat": "Bateau en saule", - "item.terrestria.yucca_palm_boat": "Bateau en palmier yucca", - - "item.terrestria.redwood_log": "Bûche de séquoia", - "item.terrestria.redwood_wood": "Bois de séquoia", - "item.terrestria.redwood_quarter_log": "Bûche de séquoia", - "item.terrestria.redwood_sapling": "Pousse de séquoia", - "item.terrestria.redwood_leaves": "Feuilles de séquoia", - "item.terrestria.redwood_planks": "Planches de séquoia", - "item.terrestria.redwood_slab": "Dalle en séquoia", - "item.terrestria.redwood_stairs": "Escalier en séquoia", - "item.terrestria.redwood_fence": "Barrière en séquoia", - "item.terrestria.redwood_fence_gate": "Portillon en séquoia", - "item.terrestria.redwood_door": "Porte en séquoia", - "item.terrestria.redwood_pressure_plate": "Plaque de pression en séquoia", - "item.terrestria.redwood_button": "Bouton en séquoia", - "item.terrestria.redwood_sign": "Pancarte en séquoia", - "item.terrestria.redwood_trapdoor": "Trappe en séquoia", - "item.terrestria.stripped_redwood_wood": "Bois de séquoia écorcé", - "item.terrestria.stripped_redwood_log": "Bûche de séquoia écorcée", - "item.terrestria.stripped_redwood_quarter_log": "Bûche de séquoia écorcée", - "item.terrestria.hemlock_log": "Bûche de tsuga", - "item.terrestria.hemlock_wood": "Bois de tsuga", - "item.terrestria.hemlock_quarter_log": "Bûche de tsuga", - "item.terrestria.hemlock_sapling": "Pousse de tsuga", - "item.terrestria.hemlock_leaves": "Feuilles de tsuga", - "item.terrestria.hemlock_planks": "Planches de tsuga", - "item.terrestria.hemlock_slab": "Dalle en tsuga", - "item.terrestria.hemlock_stairs": "Escalier en tsuga", - "item.terrestria.hemlock_fence": "Barrière en tsuga", - "item.terrestria.hemlock_fence_gate": "Portillon en tsuga", - "item.terrestria.hemlock_door": "Porte en tsuga", - "item.terrestria.hemlock_pressure_plate": "Plaque de pression en tsuga", - "item.terrestria.hemlock_button": "Bouton en tsuga", - "item.terrestria.hemlock_sign": "Pancarte en tsuga", - "item.terrestria.hemlock_trapdoor": "Trappe en tsuga", - "item.terrestria.stripped_hemlock_wood": "Bois de tsuga écorcé", - "item.terrestria.stripped_hemlock_log": "Bûche de tsuga écorcée", - "item.terrestria.stripped_hemlock_quarter_log": "Bûche de tsuga écorcée", - "item.terrestria.jungle_palm_sapling": "Pousse de palmier de la jungle", - "item.terrestria.jungle_palm_leaves": "Feuilles de palmier de la jungle", - "item.terrestria.rubber_log": "Bûche de hévéa", - "item.terrestria.rubber_wood": "Bois de hévéa", - "item.terrestria.rubber_sapling": "Pousse de hévéa", - "item.terrestria.rubber_leaves": "Feuilles de hévéa", - "item.terrestria.rubber_planks": "Planches de hévéa", - "item.terrestria.rubber_slab": "Dalle en hévéa", - "item.terrestria.rubber_stairs": "Escalier en hévéa", - "item.terrestria.rubber_fence": "Barrière en hévéa", - "item.terrestria.rubber_fence_gate": "Portillon en hévéa", - "item.terrestria.rubber_door": "Porte en hévéa", - "item.terrestria.rubber_pressure_plate": "Plaque de pression en hévéa", - "item.terrestria.rubber_button": "Bouton en hévéa", - "item.terrestria.rubber_sign": "Pancarte en hévéa", - "item.terrestria.rubber_trapdoor": "Trappe en hévéa", - "item.terrestria.stripped_rubber_wood": "Bois de hévéa écorcé", - "item.terrestria.stripped_rubber_log": "Bûche de hévéa écorcée", - "item.terrestria.cypress_log": "Bûche de cyprès", - "item.terrestria.cypress_wood": "Bois de cyprès", - "item.terrestria.cypress_quarter_log": "Bûche de cyprès", - "item.terrestria.cypress_sapling": "Pousse de cyprès", - "item.terrestria.cypress_leaves": "Feuilles de cyprès", - "item.terrestria.cypress_planks": "Planches de cyprès", - "item.terrestria.cypress_slab": "Dalle en cyprès", - "item.terrestria.cypress_stairs": "Escalier en cyprès", - "item.terrestria.cypress_fence": "Barrière en cyprès", - "item.terrestria.cypress_fence_gate": "Portillon en cyprès", - "item.terrestria.cypress_door": "Porte en cyprès", - "item.terrestria.cypress_pressure_plate": "Plaque de pression en cyprès", - "item.terrestria.cypress_button": "Bouton en cyprès", - "item.terrestria.cypress_sign": "Pancarte en cyprès", - "item.terrestria.cypress_trapdoor": "Trappe en cyprès", - "item.terrestria.stripped_cypress_wood": "Bois de cyprès écorcé", - "item.terrestria.stripped_cypress_log": "Bûche de cyprès écorcée", - "item.terrestria.stripped_cypress_quarter_log": "Bûche de cyprès écorcée", - "item.terrestria.willow_log": "Bûche de saule", - "item.terrestria.willow_wood": "Bois de saule", - "item.terrestria.willow_sapling": "Pousse de saule", - "item.terrestria.willow_leaves": "Feuilles de saule", - "item.terrestria.willow_planks": "Planches de saule", - "item.terrestria.willow_slab": "Dalle en saule", - "item.terrestria.willow_stairs": "Escalier en saule", - "item.terrestria.willow_fence": "Barrière en saule", - "item.terrestria.willow_fence_gate": "Portillon en saule", - "item.terrestria.willow_door": "Porte en saule", - "item.terrestria.willow_pressure_plate": "Plaque de pression en saule", - "item.terrestria.willow_button": "Bouton en saule", - "item.terrestria.willow_sign": "Pancarte en saule", - "item.terrestria.willow_trapdoor": "Trappe en saule", - "item.terrestria.stripped_willow_wood": "Bois de saule écorcé", - "item.terrestria.stripped_willow_log": "Bûche de saule écorcée", - "item.terrestria.japanese_maple_log": "Bûche d'érable japonais", - "item.terrestria.japanese_maple_wood": "Bois d'érable japonais", - "item.terrestria.japanese_maple_sapling": "Pousse d'érable japonais", - "item.terrestria.japanese_maple_leaves": "Feuilles d'érable japonais", - "item.terrestria.japanese_maple_planks": "Planches d'érable japonais", - "item.terrestria.japanese_maple_slab": "Dalle en érable japonais", - "item.terrestria.japanese_maple_stairs": "Escalier en érable japonais", - "item.terrestria.japanese_maple_fence": "Barrière en érable japonais", - "item.terrestria.japanese_maple_fence_gate": "Portillon en érable japonais", - "item.terrestria.japanese_maple_door": "Porte en érable japonais", - "item.terrestria.japanese_maple_pressure_plate": "Plaque de pression en érable japonais", - "item.terrestria.japanese_maple_button": "Bouton en érable japonais", - "item.terrestria.japanese_maple_sign": "Pancarte en érable japonais", - "item.terrestria.japanese_maple_trapdoor": "Trappe en érable japonais", - "item.terrestria.stripped_japanese_maple_wood": "Bois d'érable japonais écorcé", - "item.terrestria.stripped_japanese_maple_log": "Bûche d'érable japonais écorcée", - "item.terrestria.dark_japanese_maple_leaves": "Feuilles d'érable japonais sombre", - "item.terrestria.dark_japanese_maple_sapling": "Pousse d'érable japonais sombre", - "item.terrestria.rainbow_eucalyptus_log": "Bûche d'eucalyptus arc-en-ciel", - "item.terrestria.rainbow_eucalyptus_wood": "Bois d'eucalyptus arc-en-ciel", - "item.terrestria.rainbow_eucalyptus_quarter_log": "Bûche d'eucalyptus arc-en-ciel", - "item.terrestria.rainbow_eucalyptus_sapling": "Pousse d'eucalyptus arc-en-ciel", - "item.terrestria.rainbow_eucalyptus_leaves": "Feuilles d'eucalyptus arc-en-ciel", - "item.terrestria.rainbow_eucalyptus_planks": "Planches d'eucalyptus arc-en-ciel", - "item.terrestria.rainbow_eucalyptus_slab": "Dalle en eucalyptus arc-en-ciel", - "item.terrestria.rainbow_eucalyptus_stairs": "Escalier en eucalyptus arc-en-ciel", - "item.terrestria.rainbow_eucalyptus_fence": "Barrière en eucalyptus arc-en-ciel", - "item.terrestria.rainbow_eucalyptus_fence_gate": "Portillon en eucalyptus arc-en-ciel", - "item.terrestria.rainbow_eucalyptus_door": "Porte en eucalyptus arc-en-ciel", - "item.terrestria.rainbow_eucalyptus_pressure_plate": "Plaque de pression en eucalyptus arc-en-ciel", - "item.terrestria.rainbow_eucalyptus_button": "Bouton en eucalyptus arc-en-ciel", - "item.terrestria.rainbow_eucalyptus_sign": "Pancarte en eucalyptus arc-en-ciel", - "item.terrestria.rainbow_eucalyptus_trapdoor": "Trappe en eucalyptus arc-en-ciel", - "item.terrestria.stripped_rainbow_eucalyptus_wood": "Bois d'eucalyptus arc-en-ciel écorcé", - "item.terrestria.stripped_rainbow_eucalyptus_log": "Bûche d'eucalyptus arc-en-ciel écorcée", - "item.terrestria.stripped_rainbow_eucalyptus_quarter_log": "Bûche d'eucalyptus arc-en-ciel écorcée", - "item.terrestria.sakura_log": "Bûche de sakura", - "item.terrestria.sakura_sapling": "Pousse de sakura", - "item.terrestria.sakura_leaves": "Feuilles de sakura", - "item.terrestria.sakura_planks": "Planches de sakura", - "item.terrestria.sakura_slab": "Dalle en sakura", - "item.terrestria.sakura_stairs": "Escalier en sakura", - "item.terrestria.sakura_fence": "Barrière en sakura", - "item.terrestria.sakura_fence_gate": "Portillon en sakura", - "item.terrestria.sakura_door": "Porte en sakura", - "item.terrestria.sakura_pressure_plate": "Plaque de pression en sakura", - "item.terrestria.sakura_button": "Bouton en sakura", - "item.terrestria.sakura_sign": "Pancarte en sakura", - "item.terrestria.sakura_trapdoor": "Trappe en sakura", - "item.terrestria.stripped_sakura_wood": "Bois de sakura écorcé", - "item.terrestria.stripped_sakura_log": "Bûche de sakura écorcée", - "item.terrestria.cattail": "Massettes", - "item.terrestria.tall_cattail": "Grandes massettes", - "item.terrestria.basalt": "Roche volcanique", - "item.terrestria.basalt_slab": "Dalle de roche volcanique", - "item.terrestria.basalt_stairs": "Escalier de roche volcanique", - "item.terrestria.basalt_wall": "Muret de roche volcanique", - "item.terrestria.smooth_basalt": "Roche volcanique lisse", - "item.terrestria.smooth_basalt_slab": "Dalle de roche volcanique lisse", - "item.terrestria.smooth_basalt_stairs": "Escalier de roche volcanique lisse", - "item.terrestria.smooth_basalt_wall": "Muret de roche volcanique lisse", - "item.terrestria.basalt_cobblestone": "Pierres volcaniques", - "item.terrestria.basalt_cobblestone_slab": "Dalle de pierres volcaniques", - "item.terrestria.basalt_cobblestone_stairs": "Escalier de pierres volcaniques", - "item.terrestria.basalt_cobblestone_wall": "Muret de pierres volcaniques", - "item.terrestria.mossy_basalt_cobblestone": "Pierres volcaniques moussues", - "item.terrestria.mossy_basalt_cobblestone_slab": "Dalle de pierres volcaniques moussues", - "item.terrestria.mossy_basalt_cobblestone_stairs": "Escalier de pierres volcaniques moussues", - "item.terrestria.mossy_basalt_cobblestone_wall": "Muret de pierres volcaniques moussues", - "item.terrestria.basalt_bricks": "Roche volcanique taillée", - "item.terrestria.basalt_brick_slab": "Dalle de roche volcanique taillée", - "item.terrestria.basalt_brick_stairs": "Escalier de roche volcanique taillée", - "item.terrestria.basalt_brick_wall": "Muret de roche volcanique taillée", - "item.terrestria.mossy_basalt_bricks": "Roche volcanique taillée moussue", - "item.terrestria.mossy_basalt_brick_slab": "Dalle de roche volcanique taillée moussue", - "item.terrestria.mossy_basalt_brick_stairs": "Escalier de roche volcanique taillée moussue", - "item.terrestria.mossy_basalt_brick_wall": "Muret de roche volcanique taillée moussue", - "item.terrestria.basalt_button": "Bouton de roche volcanique", - "item.terrestria.basalt_pressure_plate": "Plaque de pression de roche volcanique", - "item.terrestria.chiseled_basalt_bricks": "Roche volcanique sculptée", - "item.terrestria.cracked_basalt_bricks": "Roche volcanique taillée craquelée", - "item.terrestria.basalt_grass_block": "Bloc d'herbe d'Andisol", - "item.terrestria.basalt_grass_path": "Chemin d'herbe d'Andisol", - "item.terrestria.basalt_sand": "Sable noirc", - "item.terrestria.basalt_dirt": "Andisol", - "item.terrestria.basalt_podzol": "Podzol d'Andisol", - "item.terrestria.andisol_farmland": "Andisol labouré", - "item.terrestria.indian_paintbrush": "Castilleja", - "item.terrestria.monsteras": "Monsteras", - "item.terrestria.potted_indian_paintbrush": "Castilleja en pot", - "item.terrestria.potted_monsteras": "Monsteras en pot", - "item.terrestria.japanese_maple_shrub_sapling": "Pousse de buisson d'érable japonais", - "item.terrestria.japanese_maple_shrub_leaves": "Feuilles de buisson d'érable japonais", - "item.terrestria.potted_redwood_sapling": "Pousse de séquoia en pot", - "item.terrestria.potted_hemlock_sapling": "Pousse de tsuga en pot", - "item.terrestria.potted_rubber_sapling": "Pousse d'hévéa en pot", - "item.terrestria.potted_cypress_sapling": "Pousse de cyprès en pot", - "item.terrestria.potted_willow_sapling": "Pousse de saule en pot", - "item.terrestria.potted_japanese_maple_sapling": "Pousse d'érable japonais en pot", - "item.terrestria.potted_dark_japanese_maple_sapling": "Pousse d'érable japonais sombre en pot", - "item.terrestria.potted_rainbow_eucalyptus_sapling": "Pousse d'eucalyptus arc-en-ciel en pot", - "item.terrestria.potted_sakura_sapling": "Pousse de sakura en pot", - "item.terrestria.potted_jungle_palm_sapling": "Pousse de palmier de la jungle en pot", - "item.terrestria.potted_japanese_maple_shrub_sapling": "Pousse de buisson d'érable japonais en pot", - "item.terrestria.potted_saguaro_cactus_sapling": "Pousse de saguaro en pot", - "item.terrestria.agave": "Agave", - "item.terrestria.tiny_cactus": "Petit cactus", - "item.terrestria.aloe_vera": "Aloe vera", - "item.terrestria.dead_grass": "Herbe morte", - "item.terrestria.potted_agave": "Agave en pot", - "item.terrestria.potted_tiny_cactus": "Petit cactus en pot", - "item.terrestria.potted_aloe_vera": "Aloe vera en pot", - "item.terrestria.yucca_palm_log": "Bûche de palmier yucca", - "item.terrestria.yucca_palm_leaves": "Feuilles de palmier yucca", - "item.terrestria.yucca_palm_planks": "Planches de palmier yucca", - "item.terrestria.yucca_palm_slab": "Dalle en palmier yucca", - "item.terrestria.yucca_palm_stairs": "Escalier en palmier yucca", - "item.terrestria.yucca_palm_fence": "Barrière en palmier yucca", - "item.terrestria.yucca_palm_fence_gate": "Portillon en palmier yucca", - "item.terrestria.yucca_palm_door": "Porte en palmier yucca", - "item.terrestria.yucca_palm_button": "Bouton en palmier yucca", - "item.terrestria.yucca_palm_pressure_plate": "Plaque de pression en palmier yucca", - "item.terrestria.yucca_palm_trapdoor": "Trappe en palmier yucca", - "item.terrestria.yucca_palm_sign": "Pancarte en palmier yucca", - "item.terrestria.stripped_yucca_palm_log": "Bûche de palmier yucca écorcée", - "item.terrestria.small_oak_log": "Petite bûche de chêne", - "item.terrestria.stripped_small_oak_log": "Petite bûche de chêne écorcée", - "item.terrestria.saguaro_cactus": "Saguaro", - "item.terrestria.bryce_sapling": "Pouse de sapin de Douglas", - "item.terrestria.saguaro_cactus_sapling": "Pousse de saguaro", - "item.terrestria.yucca_palm_sapling": "Pousse de palmier yucca" + "item.terrestria.yucca_palm_boat": "Bateau en palmier yucca" } diff --git a/client/src/main/resources/assets/terrestria/lang/it_it.json b/client/src/main/resources/assets/terrestria/lang/it_it.json index 84f2654d..9351515c 100644 --- a/client/src/main/resources/assets/terrestria/lang/it_it.json +++ b/client/src/main/resources/assets/terrestria/lang/it_it.json @@ -170,40 +170,40 @@ "block.terrestria.stripped_sakura_log": "Tronco di Sakura scortecciato", "block.terrestria.cattail": "Tifa", "block.terrestria.tall_cattail": "Tifa alta", - "block.terrestria.basalt": "Roccia vulcanica", - "block.terrestria.basalt_slab": "Lastra di roccia vulcanica", - "block.terrestria.basalt_stairs": "Scale di roccia vulcanica", - "block.terrestria.basalt_wall": "Muro Di Roccia Vulcanica", - "block.terrestria.smooth_basalt": "Roccia vulcanica liscia", - "block.terrestria.smooth_basalt_slab": "Lastra di roccia vulcanica liscia", - "block.terrestria.smooth_basalt_stairs": "Scale di roccia vulcanica liscia", - "block.terrestria.smooth_basalt_wall": "Parete di roccia vulcanica liscia", - "block.terrestria.basalt_cobblestone": "Ciottolo vulcanico", - "block.terrestria.basalt_cobblestone_slab": "Lastra di ciottoli vulcanici", - "block.terrestria.basalt_cobblestone_stairs": "Scale di ciottoli vulcanici", - "block.terrestria.basalt_cobblestone_wall": "Muro di ciottoli vulcanico", - "block.terrestria.mossy_basalt_cobblestone": "Ciottoli vulcanici coperti di muschio", - "block.terrestria.mossy_basalt_cobblestone_slab": "Lastra di ciottoli vulcanici coperti di muschio", - "block.terrestria.mossy_basalt_cobblestone_stairs": "Scale di ciottoli vulcanici coperti di muschio", - "block.terrestria.mossy_basalt_cobblestone_wall": "Muro di ciottoli vulcanici coperti di muschio", - "block.terrestria.basalt_bricks": "Mattoni Di Roccia Vulcanica", - "block.terrestria.basalt_brick_slab": "Lastra di mattoni di roccia vulcanica", - "block.terrestria.basalt_brick_stairs": "Scale di mattoni di roccia vulcanica", - "block.terrestria.basalt_brick_wall": "Muro di mattoni di roccia vulcanica", - "block.terrestria.mossy_basalt_bricks": "Mattoni di roccia vulcanica coperti di muschio", - "block.terrestria.mossy_basalt_brick_slab": "Lastra di mattoni di roccia vulcanica coperti di muschio", - "block.terrestria.mossy_basalt_brick_stairs": "Scale di mattoni di roccia vulcanica coperti di muschio", - "block.terrestria.mossy_basalt_brick_wall": "Muro di mattoni di roccia vulcanica coperti di muschio", - "block.terrestria.basalt_button": "Pulsante di roccia vulcanica", - "block.terrestria.basalt_pressure_plate": "Piastra di pressione in roccia vulcanica", - "block.terrestria.chiseled_basalt_bricks": "Mattoni di roccia vulcanica cesellati", - "block.terrestria.cracked_basalt_bricks": "Mattoni di roccia vulcanica incrinati", - "block.terrestria.basalt_grass_block": "Blocco d'erba Andisol", - "block.terrestria.basalt_grass_path": "Sentiero sterrato di Andisol", - "block.terrestria.basalt_sand": "Sabbia Nera", - "block.terrestria.basalt_dirt": "Andisol", - "block.terrestria.basalt_podzol": "Andisol Podzol", + "block.terrestria.volcanic_rock": "Roccia vulcanica", + "block.terrestria.volcanic_rock_slab": "Lastra di roccia vulcanica", + "block.terrestria.volcanic_rock_stairs": "Scale di roccia vulcanica", + "block.terrestria.volcanic_rock_wall": "Muro Di Roccia Vulcanica", + "block.terrestria.smooth_volcanic_rock": "Roccia vulcanica liscia", + "block.terrestria.smooth_volcanic_rock_slab": "Lastra di roccia vulcanica liscia", + "block.terrestria.smooth_volcanic_rock_stairs": "Scale di roccia vulcanica liscia", + "block.terrestria.smooth_volcanic_rock_wall": "Parete di roccia vulcanica liscia", + "block.terrestria.volcanic_rock_cobblestone": "Ciottolo vulcanico", + "block.terrestria.volcanic_rock_cobblestone_slab": "Lastra di ciottoli vulcanici", + "block.terrestria.volcanic_rock_cobblestone_stairs": "Scale di ciottoli vulcanici", + "block.terrestria.volcanic_rock_cobblestone_wall": "Muro di ciottoli vulcanico", + "block.terrestria.mossy_volcanic_rock_cobblestone": "Ciottoli vulcanici coperti di muschio", + "block.terrestria.mossy_volcanic_rock_cobblestone_slab": "Lastra di ciottoli vulcanici coperti di muschio", + "block.terrestria.mossy_volcanic_rock_cobblestone_stairs": "Scale di ciottoli vulcanici coperti di muschio", + "block.terrestria.mossy_volcanic_rock_cobblestone_wall": "Muro di ciottoli vulcanici coperti di muschio", + "block.terrestria.volcanic_rock_bricks": "Mattoni Di Roccia Vulcanica", + "block.terrestria.volcanic_rock_brick_slab": "Lastra di mattoni di roccia vulcanica", + "block.terrestria.volcanic_rock_brick_stairs": "Scale di mattoni di roccia vulcanica", + "block.terrestria.volcanic_rock_brick_wall": "Muro di mattoni di roccia vulcanica", + "block.terrestria.mossy_volcanic_rock_bricks": "Mattoni di roccia vulcanica coperti di muschio", + "block.terrestria.mossy_volcanic_rock_brick_slab": "Lastra di mattoni di roccia vulcanica coperti di muschio", + "block.terrestria.mossy_volcanic_rock_brick_stairs": "Scale di mattoni di roccia vulcanica coperti di muschio", + "block.terrestria.mossy_volcanic_rock_brick_wall": "Muro di mattoni di roccia vulcanica coperti di muschio", + "block.terrestria.volcanic_rock_button": "Pulsante di roccia vulcanica", + "block.terrestria.volcanic_rock_pressure_plate": "Piastra di pressione in roccia vulcanica", + "block.terrestria.chiseled_volcanic_rock_bricks": "Mattoni di roccia vulcanica cesellati", + "block.terrestria.cracked_volcanic_rock_bricks": "Mattoni di roccia vulcanica incrinati", + "block.terrestria.volcanic_sand": "Sabbia Nera", + "block.terrestria.andisol": "Andisol", + "block.terrestria.andisol_dirt_path": "Sentiero sterrato di Andisol", "block.terrestria.andisol_farmland": "Andisol Terreno agricolo", + "block.terrestria.andisol_grass_block": "Blocco d'erba Andisol", + "block.terrestria.andisol_podzol": "Andisol Podzol", "block.terrestria.indian_paintbrush": "Pennello indiano", "block.terrestria.monsteras": "Monsteras", "block.terrestria.potted_indian_paintbrush": "Pennello indiano in vaso", @@ -273,237 +273,5 @@ "item.terrestria.willow_boat": "Barca di salice", "item.terrestria.willow_chest_boat": "Barca di salice con cassa", "item.terrestria.yucca_palm_boat": "Barca di palma Yucca", - "item.terrestria.yucca_palm_chest_boat": "Barca di palma Yucca con cassa", - - "item.terrestria.redwood_log": "Tronco di sequoia", - "item.terrestria.redwood_wood": "Legno di sequoia", - "item.terrestria.redwood_quarter_log": "Tronco di un quarto di sequoia", - "item.terrestria.redwood_sapling": "Alberello di sequoia", - "item.terrestria.redwood_leaves": "Foglie di sequoia", - "item.terrestria.redwood_planks": "Tavole di sequoia", - "item.terrestria.redwood_slab": "Lastra di sequoia", - "item.terrestria.redwood_stairs": "Scale di sequoia", - "item.terrestria.redwood_fence": "Recinto di sequoia", - "item.terrestria.redwood_fence_gate": "Cancello del recinto della sequoia", - "item.terrestria.redwood_door": "Porta di sequoia", - "item.terrestria.redwood_pressure_plate": "Piastra di pressione in legno di sequoia", - "item.terrestria.redwood_button": "Bottone di sequoia", - "item.terrestria.redwood_sign": "Cartello di sequoia", - "item.terrestria.redwood_hanging_sign": "Cartello da appendere in legno di sequoia", - "item.terrestria.redwood_trapdoor": "Botola di sequoia", - "item.terrestria.stripped_redwood_wood": "Legno di sequoia scortecciato", - "item.terrestria.stripped_redwood_log": "Tronco di sequoia scortecciato", - "item.terrestria.stripped_redwood_quarter_log": "Tronco di un quarto di sequoia scortecciato", - "item.terrestria.hemlock_log": "Tronco di Cicuta", - "item.terrestria.hemlock_wood": "Legno di cicuta", - "item.terrestria.hemlock_quarter_log": "Tronco di un quarto di cicuta", - "item.terrestria.hemlock_sapling": "Alberello di cicuta", - "item.terrestria.hemlock_leaves": "Foglie Di Cicuta", - "item.terrestria.hemlock_planks": "Tavole di cicuta", - "item.terrestria.hemlock_slab": "Lastra di cicuta", - "item.terrestria.hemlock_stairs": "Scale di cicuta", - "item.terrestria.hemlock_fence": "Recinto di cicuta", - "item.terrestria.hemlock_fence_gate": "Cancello del recinto della cicuta", - "item.terrestria.hemlock_door": "Porta di Cicuta", - "item.terrestria.hemlock_pressure_plate": "Piastra di pressione in cicuta", - "item.terrestria.hemlock_button": "Bottone di cicuta", - "item.terrestria.hemlock_sign": "Cartello di cicuta", - "item.terrestria.hemlock_hanging_sign": "Cartello da appendere in cicuta", - "item.terrestria.hemlock_trapdoor": "Botola di cicuta", - "item.terrestria.stripped_hemlock_wood": "Legno di cicuta scortecciato", - "item.terrestria.stripped_hemlock_log": "Tronco di cicuta scortecciato", - "item.terrestria.stripped_hemlock_quarter_log": "Tronco di un quarto di cicuta scortecciato", - "item.terrestria.jungle_palm_sapling": "Alberello di palma della giungla", - "item.terrestria.jungle_palm_leaves": "Foglie di palma della giungla", - "item.terrestria.rubber_log": "Legno Albero della gomma", - "item.terrestria.rubber_wood": "Albero della gomma", - "item.terrestria.rubber_sapling": "Alberello Albero della gomma", - "item.terrestria.rubber_leaves": "Foglie Albero della gomma", - "item.terrestria.rubber_planks": "Assi Albero della gomma", - "item.terrestria.rubber_slab": "Lastra Albero della gomma", - "item.terrestria.rubber_stairs": "Scale Albero della gomma", - "item.terrestria.rubber_fence": "Recinzione in legno della gomma", - "item.terrestria.rubber_fence_gate": "Cancello per recinzione in legno della gomma", - "item.terrestria.rubber_door": "Porta in legno della gomma", - "item.terrestria.rubber_pressure_plate": "Piastra di pressione in legno della gomma", - "item.terrestria.rubber_button": "Bottone in legno della gomma", - "item.terrestria.rubber_sign": "Cartello di legno della gomma", - "item.terrestria.rubber_hanging_sign": "Cartello da appendere in legno della gomma", - "item.terrestria.rubber_trapdoor": "Botola in legno della gomma", - "item.terrestria.stripped_rubber_wood": "Legno della gomma scortecciato", - "item.terrestria.stripped_rubber_log": "Tronco della Gomma scortecciato", - "item.terrestria.cypress_log": "Tronco di cipresso", - "item.terrestria.cypress_wood": "Legno di Cipresso", - "item.terrestria.cypress_quarter_log": "Tronco di un quarto di cipresso", - "item.terrestria.cypress_sapling": "Alberello Di Cipresso", - "item.terrestria.cypress_leaves": "Foglie Di Cipresso", - "item.terrestria.cypress_planks": "Tavole di cipresso", - "item.terrestria.cypress_slab": "Lastra di cipresso", - "item.terrestria.cypress_stairs": "Scale di cipresso", - "item.terrestria.cypress_fence": "Recinto di cipresso", - "item.terrestria.cypress_fence_gate": "Cancello recinzione di cipresso", - "item.terrestria.cypress_door": "Porta di Cipresso", - "item.terrestria.cypress_pressure_plate": "Piastra a pressione in cipresso", - "item.terrestria.cypress_button": "Bottone di cipresso", - "item.terrestria.cypress_sign": "Cartello di cipresso", - "item.terrestria.cypress_hanging_sign": "Cartello sospeso in cipresso", - "item.terrestria.cypress_trapdoor": "Botola di cipresso", - "item.terrestria.stripped_cypress_wood": "Legno di cipresso scortecciato", - "item.terrestria.stripped_cypress_log": "Tronco di cipresso scortecciato", - "item.terrestria.stripped_cypress_quarter_log": "Tronco di un quarto di cipresso scortecciato", - "item.terrestria.willow_log": "Tronco di salice", - "item.terrestria.willow_wood": "Legno di salice", - "item.terrestria.willow_sapling": "Alberello Di Salice", - "item.terrestria.willow_leaves": "Foglie di salice", - "item.terrestria.willow_planks": "Tavole Di Salice", - "item.terrestria.willow_slab": "Lastra di salice", - "item.terrestria.willow_stairs": "Scale di salice", - "item.terrestria.willow_fence": "Recinto di salice", - "item.terrestria.willow_fence_gate": "Cancello del recinto del salice", - "item.terrestria.willow_door": "Porta di salice", - "item.terrestria.willow_pressure_plate": "Piastra a pressione in salice", - "item.terrestria.willow_button": "Pulsante in salice", - "item.terrestria.willow_sign": "Cartello in salice", - "item.terrestria.willow_hanging_sign": "Cartello sospeso di salice", - "item.terrestria.willow_trapdoor": "Botola di salice", - "item.terrestria.stripped_willow_wood": "Legno di salice scortecciato", - "item.terrestria.stripped_willow_log": "Tronco di salice scortecciato", - "item.terrestria.japanese_maple_log": "Tronco d'acero giapponese", - "item.terrestria.japanese_maple_wood": "Legno di acero giapponese", - "item.terrestria.japanese_maple_sapling": "Alberello Di Acero Giapponese", - "item.terrestria.japanese_maple_leaves": "Foglie di acero giapponese", - "item.terrestria.japanese_maple_planks": "Tavole di acero giapponese", - "item.terrestria.japanese_maple_slab": "Lastra di acero giapponese", - "item.terrestria.japanese_maple_stairs": "Scale di acero giapponese", - "item.terrestria.japanese_maple_fence": "Recinzione in acero giapponese", - "item.terrestria.japanese_maple_fence_gate": "Cancello di recinzione in acero giapponese", - "item.terrestria.japanese_maple_door": "Porta in acero giapponese", - "item.terrestria.japanese_maple_pressure_plate": "Piastra di pressione in acero giapponese", - "item.terrestria.japanese_maple_button": "Bottone in acero giapponese", - "item.terrestria.japanese_maple_sign": "Cartello di acero giapponese", - "item.terrestria.japanese_maple_hanging_sign": "Cartello sospeso in acero giapponese", - "item.terrestria.japanese_maple_trapdoor": "Botola in acero giapponese", - "item.terrestria.stripped_japanese_maple_wood": "Legno di acero giapponese scortecciato", - "item.terrestria.stripped_japanese_maple_log": "Tronco di acero giapponese scortecciato", - "item.terrestria.dark_japanese_maple_leaves": "Foglie di acero giapponese scuro", - "item.terrestria.dark_japanese_maple_sapling": "Alberello di acero giapponese scuro", - "item.terrestria.rainbow_eucalyptus_log": "Tronco di eucalipto arcobaleno", - "item.terrestria.rainbow_eucalyptus_wood": "Legno di eucalipto arcobaleno", - "item.terrestria.rainbow_eucalyptus_quarter_log": "Tronco di un quarto di eucalipto arcobaleno", - "item.terrestria.rainbow_eucalyptus_sapling": "Alberello di eucalipto arcobaleno", - "item.terrestria.rainbow_eucalyptus_leaves": "Foglie di eucalipto arcobaleno", - "item.terrestria.rainbow_eucalyptus_planks": "Tavole di eucalipto arcobaleno", - "item.terrestria.rainbow_eucalyptus_slab": "Lastra di eucalipto arcobaleno", - "item.terrestria.rainbow_eucalyptus_stairs": "Scale di eucalipto arcobaleno", - "item.terrestria.rainbow_eucalyptus_fence": "Recinto di eucalipto arcobaleno", - "item.terrestria.rainbow_eucalyptus_fence_gate": "Cancello di recinzione di eucalipto arcobaleno", - "item.terrestria.rainbow_eucalyptus_door": "Porta di eucalipto arcobaleno", - "item.terrestria.rainbow_eucalyptus_pressure_plate": "Piastra di pressione in eucalipto arcobaleno", - "item.terrestria.rainbow_eucalyptus_button": "Pulsante di eucalipto arcobaleno", - "item.terrestria.rainbow_eucalyptus_sign": "Cartello di eucalipto arcobaleno", - "item.terrestria.rainbow_eucalyptus_hanging_sign": "Cartello da appendere con eucalipto arcobaleno", - "item.terrestria.rainbow_eucalyptus_trapdoor": "Botola in eucalipto arcobaleno", - "item.terrestria.stripped_rainbow_eucalyptus_wood": "Legno di eucalipto arcobaleno scortecciato", - "item.terrestria.stripped_rainbow_eucalyptus_log": "Tronco di eucalipto arcobaleno scortecciato", - "item.terrestria.stripped_rainbow_eucalyptus_quarter_log": "Tronco di un quarto di eucalipto arcobaleno scortecciato", - "item.terrestria.sakura_log": "Tronco di Sakura", - "item.terrestria.sakura_sapling": "Alberello di Sakura", - "item.terrestria.sakura_leaves": "Foglie Di Sakura", - "item.terrestria.sakura_leaf_pile": "Mucchio di foglie di Sakura", - "item.terrestria.sakura_planks": "Tavole di Sakura", - "item.terrestria.sakura_slab": "Lastra di Sakura", - "item.terrestria.sakura_stairs": "Scala di Sakura", - "item.terrestria.sakura_fence": "Recinto di Sakura", - "item.terrestria.sakura_fence_gate": "Cancello del recinto di Sakura", - "item.terrestria.sakura_door": "Porta di Sakura", - "item.terrestria.sakura_pressure_plate": "Piastra di pressione di Sakura", - "item.terrestria.sakura_button": "Pulsante di Sakura", - "item.terrestria.sakura_sign": "Cartello di Sakura", - "item.terrestria.sakura_hanging_sign": "Cartello sospeso di Sakura", - "item.terrestria.sakura_trapdoor": "Botola di Sakura", - "item.terrestria.stripped_sakura_wood": "Legno di Sakura scortecciato", - "item.terrestria.stripped_sakura_log": "Tronco di Sakura scortecciato", - "item.terrestria.cattail": "Tifa", - "item.terrestria.tall_cattail": "Tifa alta", - "item.terrestria.basalt": "Roccia vulcanica", - "item.terrestria.basalt_slab": "Lastra di roccia vulcanica", - "item.terrestria.basalt_stairs": "Scale di roccia vulcanica", - "item.terrestria.basalt_wall": "Muro Di Roccia Vulcanica", - "item.terrestria.smooth_basalt": "Roccia vulcanica liscia", - "item.terrestria.smooth_basalt_slab": "Lastra di roccia vulcanica liscia", - "item.terrestria.smooth_basalt_stairs": "Scale di roccia vulcanica liscia", - "item.terrestria.smooth_basalt_wall": "Parete di roccia vulcanica liscia", - "item.terrestria.basalt_cobblestone": "Ciottolo vulcanico", - "item.terrestria.basalt_cobblestone_slab": "Lastra di ciottoli vulcanici", - "item.terrestria.basalt_cobblestone_stairs": "Scale di ciottoli vulcanici", - "item.terrestria.basalt_cobblestone_wall": "Muro di ciottoli vulcanico", - "item.terrestria.mossy_basalt_cobblestone": "Ciottoli vulcanici coperti di muschio", - "item.terrestria.mossy_basalt_cobblestone_slab": "Lastra di ciottoli vulcanici coperti di muschio", - "item.terrestria.mossy_basalt_cobblestone_stairs": "Scale di ciottoli vulcanici coperti di muschio", - "item.terrestria.mossy_basalt_cobblestone_wall": "Muro di ciottoli vulcanici coperti di muschio", - "item.terrestria.basalt_bricks": "Mattoni Di Roccia Vulcanica", - "item.terrestria.basalt_brick_slab": "Lastra di mattoni di roccia vulcanica", - "item.terrestria.basalt_brick_stairs": "Scale di mattoni di roccia vulcanica", - "item.terrestria.basalt_brick_wall": "Muro di mattoni di roccia vulcanica", - "item.terrestria.mossy_basalt_bricks": "Mattoni di roccia vulcanica coperti di muschio", - "item.terrestria.mossy_basalt_brick_slab": "Lastra di mattoni di roccia vulcanica coperti di muschio", - "item.terrestria.mossy_basalt_brick_stairs": "Scale di mattoni di roccia vulcanica coperti di muschio", - "item.terrestria.mossy_basalt_brick_wall": "Muro di mattoni di roccia vulcanica coperti di muschio", - "item.terrestria.basalt_button": "Pulsante di roccia vulcanica", - "item.terrestria.basalt_pressure_plate": "Piastra di pressione in roccia vulcanica", - "item.terrestria.chiseled_basalt_bricks": "Mattoni di roccia vulcanica cesellati", - "item.terrestria.cracked_basalt_bricks": "Mattoni di roccia vulcanica incrinati", - "item.terrestria.basalt_grass_block": "Blocco d'erba Andisol", - "item.terrestria.basalt_grass_path": "Sentiero sterrato di Andisol", - "item.terrestria.basalt_sand": "Sabbia Nera", - "item.terrestria.basalt_dirt": "Andisol", - "item.terrestria.basalt_podzol": "Andisol Podzol", - "item.terrestria.andisol_farmland": "Andisol Terreno agricolo", - "item.terrestria.indian_paintbrush": "Pennello indiano", - "item.terrestria.monsteras": "Monsteras", - "item.terrestria.potted_indian_paintbrush": "Pennello indiano in vaso", - "item.terrestria.potted_monsteras": "Monsteras in vaso", - "item.terrestria.potted_bryce_sapling": "Alberello di Bryce in vaso", - "item.terrestria.japanese_maple_shrub_sapling": "Alberello dell'arbusto dell'acero giapponese", - "item.terrestria.japanese_maple_shrub_leaves": "Foglie di arbusto di acero giapponese", - "item.terrestria.potted_redwood_sapling": "Alberello di sequoia in vaso", - "item.terrestria.potted_hemlock_sapling": "Alberello di cicuta in vaso", - "item.terrestria.potted_rubber_sapling": "Alberello della gomma in vaso", - "item.terrestria.potted_cypress_sapling": "Alberello di cipresso in vaso", - "item.terrestria.potted_willow_sapling": "Alberello di salice in vaso", - "item.terrestria.potted_japanese_maple_sapling": "Alberello di acero giapponese in vaso", - "item.terrestria.potted_dark_japanese_maple_sapling": "Alberello di acero giapponese scuro in vaso", - "item.terrestria.potted_rainbow_eucalyptus_sapling": "Alberello di eucalipto arcobaleno in vaso", - "item.terrestria.potted_sakura_sapling": "Alberello di Sakura in vaso", - "item.terrestria.potted_jungle_palm_sapling": "Alberello di palma della giungla in vaso", - "item.terrestria.potted_japanese_maple_shrub_sapling": "Alberello di arbusto di acero giapponese in vaso", - "item.terrestria.potted_saguaro_cactus_sapling": "Alberello di cactus Saguaro in vaso", - "item.terrestria.potted_yucca_palm_sapling": "Alberello di palma Yucca in vaso", - "item.terrestria.agave": "Agave", - "item.terrestria.tiny_cactus": "Piccolo cactus", - "item.terrestria.aloe_vera": "Aloe Vera", - "item.terrestria.dead_grass": "Erba Morta", - "item.terrestria.potted_agave": "Agave in vaso", - "item.terrestria.potted_tiny_cactus": "Piccolo cactus in vaso", - "item.terrestria.potted_aloe_vera": "Aloe Vera in vaso", - "item.terrestria.yucca_palm_log": "Tronco di palma Yucca", - "item.terrestria.yucca_palm_leaves": "Foglie di palma Yucca", - "item.terrestria.yucca_palm_planks": "Tavole di palma Yucca", - "item.terrestria.yucca_palm_slab": "Lastra di palma Yucca", - "item.terrestria.yucca_palm_stairs": "Scale di palma Yucca", - "item.terrestria.yucca_palm_fence": "Recinto di palma Yucca", - "item.terrestria.yucca_palm_fence_gate": "Cancello del recinto di palma Yucca", - "item.terrestria.yucca_palm_door": "Porta di palma Yucca", - "item.terrestria.yucca_palm_button": "Pulsante di palma Yucca", - "item.terrestria.yucca_palm_pressure_plate": "Piastra di pressione di palma Yucca", - "item.terrestria.yucca_palm_trapdoor": "Botola di palma Yucca", - "item.terrestria.yucca_palm_sign": "Cartello di palma Yucca", - "item.terrestria.yucca_palm_hanging_sign": "Cartello da appendere di palma Yucca", - "item.terrestria.stripped_yucca_palm_log": "Tronco di palma Yucca scortecciato", - "item.terrestria.small_oak_log": "Tronco di quercia piccolo", - "item.terrestria.stripped_small_oak_log": "Tronco di quercia piccolo scortecciato", - "item.terrestria.saguaro_cactus": "Cactus Saguaro", - "item.terrestria.bryce_sapling": "Alberello dell'albero di Bryce", - "item.terrestria.saguaro_cactus_sapling": "Alberello Di Cactus Saguaro", - "item.terrestria.yucca_palm_sapling": "Alberello di palma Yucca" + "item.terrestria.yucca_palm_chest_boat": "Barca di palma Yucca con cassa" } diff --git a/client/src/main/resources/assets/terrestria/lang/ko_kr.json b/client/src/main/resources/assets/terrestria/lang/ko_kr.json index 5c288e7b..8073d159 100644 --- a/client/src/main/resources/assets/terrestria/lang/ko_kr.json +++ b/client/src/main/resources/assets/terrestria/lang/ko_kr.json @@ -170,40 +170,40 @@ "block.terrestria.stripped_sakura_log": "껍질 벗긴 벚나무 원목", "block.terrestria.cattail": "부들", "block.terrestria.tall_cattail": "키 큰 부들", - "block.terrestria.basalt": "화산암", - "block.terrestria.basalt_slab": "화산암 반 블록", - "block.terrestria.basalt_stairs": "화산암 계단", - "block.terrestria.basalt_wall": "화산암 담장", - "block.terrestria.smooth_basalt": "매끄러운 화산암", - "block.terrestria.smooth_basalt_slab": "매끄러운 화산암 반 블록", - "block.terrestria.smooth_basalt_stairs": "매끄러운 화산암 계단", - "block.terrestria.smooth_basalt_wall": "매끄러운 화산암 담장", - "block.terrestria.basalt_cobblestone": "화산암 조약돌", - "block.terrestria.basalt_cobblestone_slab": "화산암 조약돌 반 블록", - "block.terrestria.basalt_cobblestone_stairs": "화산암 조약돌 계단", - "block.terrestria.basalt_cobblestone_wall": "화산암 조약돌 담장", - "block.terrestria.mossy_basalt_cobblestone": "이끼 낀 화산암 조약돌", - "block.terrestria.mossy_basalt_cobblestone_slab": "이끼 낀 화산암 조약돌 반 블록", - "block.terrestria.mossy_basalt_cobblestone_stairs": "이끼 낀 화산암 조약돌 계단", - "block.terrestria.mossy_basalt_cobblestone_wall": "이끼 낀 화산암 조약돌 담장", - "block.terrestria.basalt_bricks": "화산암 벽돌", - "block.terrestria.basalt_brick_slab": "화산암 벽돌 반 블록", - "block.terrestria.basalt_brick_stairs": "화산암 벽돌 계단", - "block.terrestria.basalt_brick_wall": "화산암 벽돌 담장", - "block.terrestria.mossy_basalt_bricks": "이끼 낀 화산암 벽돌", - "block.terrestria.mossy_basalt_brick_slab": "이끼 낀 화산암 벽돌 반 블록", - "block.terrestria.mossy_basalt_brick_stairs": "이끼 낀 화산암 벽돌 계단", - "block.terrestria.mossy_basalt_brick_wall": "이끼 낀 화산암 벽돌 담장", - "block.terrestria.basalt_button": "화산암 버튼", - "block.terrestria.basalt_pressure_plate": "화산암 압력판", - "block.terrestria.chiseled_basalt_bricks": "조각된 화산암 벽돌", - "block.terrestria.cracked_basalt_bricks": "금 간 화산암 벽돌", - "block.terrestria.basalt_grass_block": "안디솔 잔디 블록", - "block.terrestria.basalt_grass_path": "안디솔 흙 길", - "block.terrestria.basalt_sand": "검은 모래", - "block.terrestria.basalt_dirt": "안디솔", - "block.terrestria.basalt_podzol": "안디솔 회백토", + "block.terrestria.volcanic_rock": "화산암", + "block.terrestria.volcanic_rock_slab": "화산암 반 블록", + "block.terrestria.volcanic_rock_stairs": "화산암 계단", + "block.terrestria.volcanic_rock_wall": "화산암 담장", + "block.terrestria.smooth_volcanic_rock": "매끄러운 화산암", + "block.terrestria.smooth_volcanic_rock_slab": "매끄러운 화산암 반 블록", + "block.terrestria.smooth_volcanic_rock_stairs": "매끄러운 화산암 계단", + "block.terrestria.smooth_volcanic_rock_wall": "매끄러운 화산암 담장", + "block.terrestria.volcanic_rock_cobblestone": "화산암 조약돌", + "block.terrestria.volcanic_rock_cobblestone_slab": "화산암 조약돌 반 블록", + "block.terrestria.volcanic_rock_cobblestone_stairs": "화산암 조약돌 계단", + "block.terrestria.volcanic_rock_cobblestone_wall": "화산암 조약돌 담장", + "block.terrestria.mossy_volcanic_rock_cobblestone": "이끼 낀 화산암 조약돌", + "block.terrestria.mossy_volcanic_rock_cobblestone_slab": "이끼 낀 화산암 조약돌 반 블록", + "block.terrestria.mossy_volcanic_rock_cobblestone_stairs": "이끼 낀 화산암 조약돌 계단", + "block.terrestria.mossy_volcanic_rock_cobblestone_wall": "이끼 낀 화산암 조약돌 담장", + "block.terrestria.volcanic_rock_bricks": "화산암 벽돌", + "block.terrestria.volcanic_rock_brick_slab": "화산암 벽돌 반 블록", + "block.terrestria.volcanic_rock_brick_stairs": "화산암 벽돌 계단", + "block.terrestria.volcanic_rock_brick_wall": "화산암 벽돌 담장", + "block.terrestria.mossy_volcanic_rock_bricks": "이끼 낀 화산암 벽돌", + "block.terrestria.mossy_volcanic_rock_brick_slab": "이끼 낀 화산암 벽돌 반 블록", + "block.terrestria.mossy_volcanic_rock_brick_stairs": "이끼 낀 화산암 벽돌 계단", + "block.terrestria.mossy_volcanic_rock_brick_wall": "이끼 낀 화산암 벽돌 담장", + "block.terrestria.volcanic_rock_button": "화산암 버튼", + "block.terrestria.volcanic_rock_pressure_plate": "화산암 압력판", + "block.terrestria.chiseled_volcanic_rock_bricks": "조각된 화산암 벽돌", + "block.terrestria.cracked_volcanic_rock_bricks": "금 간 화산암 벽돌", + "block.terrestria.volcanic_sand": "검은 모래", + "block.terrestria.andisol": "안디솔", + "block.terrestria.andisol_dirt_path": "안디솔 흙 길", "block.terrestria.andisol_farmland": "안디솔 경작지", + "block.terrestria.andisol_grass_block": "안디솔 잔디 블록", + "block.terrestria.andisol_podzol": "안디솔 회백토", "block.terrestria.indian_paintbrush": "인도 페인트브러시", "block.terrestria.monsteras": "몬스테라", "block.terrestria.potted_indian_paintbrush": "화분에 심은 인도 페인트브러시", @@ -273,237 +273,5 @@ "item.terrestria.willow_boat": "버드나무 보트", "item.terrestria.willow_chest_boat": "상자가 실린 버드나무 보트", "item.terrestria.yucca_palm_boat": "조슈아나무 보트", - "item.terrestria.yucca_palm_chest_boat": "상자가 실린 조슈아나무 보트", - - "item.terrestria.redwood_log": "미국삼나무 원목", - "item.terrestria.redwood_wood": "미국삼나무", - "item.terrestria.redwood_quarter_log": "미국삼나무 쿼터 원목", - "item.terrestria.redwood_sapling": "미국삼나무 묘목", - "item.terrestria.redwood_leaves": "미국삼나무 잎", - "item.terrestria.redwood_planks": "미국삼나무 판자", - "item.terrestria.redwood_slab": "미국삼나무 반 블록", - "item.terrestria.redwood_stairs": "미국삼나무 계단", - "item.terrestria.redwood_fence": "미국삼나무 울타리", - "item.terrestria.redwood_fence_gate": "미국삼나무 울타리 문", - "item.terrestria.redwood_door": "미국삼나무 문", - "item.terrestria.redwood_pressure_plate": "미국삼나무 압력판", - "item.terrestria.redwood_button": "미국삼나무 버튼", - "item.terrestria.redwood_sign": "미국삼나무 표지판", - "item.terrestria.redwood_hanging_sign": "미국삼나무 매다는 표지판", - "item.terrestria.redwood_trapdoor": "미국삼나무 다락문", - "item.terrestria.stripped_redwood_wood": "껍질 벗긴 미국삼나무", - "item.terrestria.stripped_redwood_log": "껍질 벗긴 미국삼나무 원목", - "item.terrestria.stripped_redwood_quarter_log": "껍질 벗긴 미국삼나무 쿼터 원목", - "item.terrestria.hemlock_log": "솔송나무 원목", - "item.terrestria.hemlock_wood": "솔송나무", - "item.terrestria.hemlock_quarter_log": "솔송나무 쿼터 원목", - "item.terrestria.hemlock_sapling": "솔송나무 묘목", - "item.terrestria.hemlock_leaves": "솔송나무 잎", - "item.terrestria.hemlock_planks": "솔송나무 판자", - "item.terrestria.hemlock_slab": "솔송나무 반 블록", - "item.terrestria.hemlock_stairs": "솔송나무 계단", - "item.terrestria.hemlock_fence": "솔송나무 울타리", - "item.terrestria.hemlock_fence_gate": "솔송나무 울타리 문", - "item.terrestria.hemlock_door": "솔송나무 문", - "item.terrestria.hemlock_pressure_plate": "솔송나무 압력판", - "item.terrestria.hemlock_button": "솔송나무 버튼", - "item.terrestria.hemlock_sign": "솔송나무 표지판", - "item.terrestria.hemlock_hanging_sign": "솔송나무 매다는 표지판", - "item.terrestria.hemlock_trapdoor": "솔송나무 다락문", - "item.terrestria.stripped_hemlock_wood": "껍질 벗긴 솔송나무", - "item.terrestria.stripped_hemlock_log": "껍질 벗긴 솔송나무 원목", - "item.terrestria.stripped_hemlock_quarter_log": "껍질 벗긴 솔송나무 쿼터 원목", - "item.terrestria.jungle_palm_sapling": "정글 야자 묘목", - "item.terrestria.jungle_palm_leaves": "정글 야자 잎", - "item.terrestria.rubber_log": "고무나무 원목", - "item.terrestria.rubber_wood": "고무나무", - "item.terrestria.rubber_sapling": "고무나무 묘목", - "item.terrestria.rubber_leaves": "고무나무 잎", - "item.terrestria.rubber_planks": "고무나무 판자", - "item.terrestria.rubber_slab": "고무나무 반 블록", - "item.terrestria.rubber_stairs": "고무나무 계단", - "item.terrestria.rubber_fence": "고무나무 울타리", - "item.terrestria.rubber_fence_gate": "고무나무 울타리 문", - "item.terrestria.rubber_door": "고무나무 문", - "item.terrestria.rubber_pressure_plate": "고무나무 압력판", - "item.terrestria.rubber_button": "고무나무 버튼", - "item.terrestria.rubber_sign": "고무나무 표지판", - "item.terrestria.rubber_hanging_sign": "고무나무 매다는 표지판", - "item.terrestria.rubber_trapdoor": "고무나무 다락문", - "item.terrestria.stripped_rubber_wood": "껍질 벗긴 고무나무", - "item.terrestria.stripped_rubber_log": "껍질 벗긴 고무나무 원목", - "item.terrestria.cypress_log": "측백나무 원목", - "item.terrestria.cypress_wood": "측백나무", - "item.terrestria.cypress_quarter_log": "측백나무 쿼터 원목", - "item.terrestria.cypress_sapling": "측백나무 묘목", - "item.terrestria.cypress_leaves": "측백나무 잎", - "item.terrestria.cypress_planks": "측백나무 판자", - "item.terrestria.cypress_slab": "측백나무 반 블록", - "item.terrestria.cypress_stairs": "측백나무 계단", - "item.terrestria.cypress_fence": "측백나무 울타리", - "item.terrestria.cypress_fence_gate": "측백나무 울타리 문", - "item.terrestria.cypress_door": "측백나무 문", - "item.terrestria.cypress_pressure_plate": "측백나무 압력판", - "item.terrestria.cypress_button": "측백나무 버튼", - "item.terrestria.cypress_sign": "측백나무 표지판", - "item.terrestria.cypress_hanging_sign": "측백나무 매다는 표지판", - "item.terrestria.cypress_trapdoor": "측백나무 다락문", - "item.terrestria.stripped_cypress_wood": "껍질 벗긴 측백나무", - "item.terrestria.stripped_cypress_log": "껍질 벗긴 측백나무 원목", - "item.terrestria.stripped_cypress_quarter_log": "껍질 벗긴 측백나무 쿼터 원목", - "item.terrestria.willow_log": "버드나무 원목", - "item.terrestria.willow_wood": "버드나무", - "item.terrestria.willow_sapling": "버드나무 묘목", - "item.terrestria.willow_leaves": "버드나무 잎", - "item.terrestria.willow_planks": "버드나무 판자", - "item.terrestria.willow_slab": "버드나무 반 블록", - "item.terrestria.willow_stairs": "버드나무 계단", - "item.terrestria.willow_fence": "버드나무 울타리", - "item.terrestria.willow_fence_gate": "버드나무 울타리 문", - "item.terrestria.willow_door": "버드나무 문", - "item.terrestria.willow_pressure_plate": "버드나무 압력판", - "item.terrestria.willow_button": "버드나무 버튼", - "item.terrestria.willow_sign": "버드나무 표지판", - "item.terrestria.willow_hanging_sign": "버드나무 매다는 표지판", - "item.terrestria.willow_trapdoor": "버드나무 다락문", - "item.terrestria.stripped_willow_wood": "껍질 벗긴 버드나무", - "item.terrestria.stripped_willow_log": "껍질 벗긴 버드나무 원목", - "item.terrestria.japanese_maple_log": "일본 단풍나무 원목", - "item.terrestria.japanese_maple_wood": "일본 단풍나무", - "item.terrestria.japanese_maple_sapling": "일본 단풍나무 묘목", - "item.terrestria.japanese_maple_leaves": "일본 단풍나무 잎", - "item.terrestria.japanese_maple_planks": "일본 단풍나무 판자", - "item.terrestria.japanese_maple_slab": "일본 단풍나무 반 블록", - "item.terrestria.japanese_maple_stairs": "일본 단풍나무 계단", - "item.terrestria.japanese_maple_fence": "일본 단풍나무 울타리", - "item.terrestria.japanese_maple_fence_gate": "일본 단풍나무 울타리 문", - "item.terrestria.japanese_maple_door": "일본 단풍나무 문", - "item.terrestria.japanese_maple_pressure_plate": "일본 단풍나무 압력판", - "item.terrestria.japanese_maple_button": "일본 단풍나무 버튼", - "item.terrestria.japanese_maple_sign": "일본 단풍나무 표지판", - "item.terrestria.japanese_maple_hanging_sign": "일본 단풍나무 매다는 표지판", - "item.terrestria.japanese_maple_trapdoor": "일본 단풍나무 다락문", - "item.terrestria.stripped_japanese_maple_wood": "껍질 벗긴 일본 단풍나무", - "item.terrestria.stripped_japanese_maple_log": "껍질 벗긴 일본 단풍나무 원목", - "item.terrestria.dark_japanese_maple_leaves": "짙은 일본 단풍나무 잎", - "item.terrestria.dark_japanese_maple_sapling": "짙은 일본 단풍나무 묘목", - "item.terrestria.rainbow_eucalyptus_log": "무지개 유칼립투스나무 원목", - "item.terrestria.rainbow_eucalyptus_wood": "무지개 유칼립투스나무", - "item.terrestria.rainbow_eucalyptus_quarter_log": "무지개 유칼립투스나무 쿼터 원목", - "item.terrestria.rainbow_eucalyptus_sapling": "무지개 유칼립투스나무 묘목", - "item.terrestria.rainbow_eucalyptus_leaves": "무지개 유칼립투스나무 잎", - "item.terrestria.rainbow_eucalyptus_planks": "무지개 유칼립투스나무 판자", - "item.terrestria.rainbow_eucalyptus_slab": "무지개 유칼립투스나무 반 블록", - "item.terrestria.rainbow_eucalyptus_stairs": "무지개 유칼립투스나무 계단", - "item.terrestria.rainbow_eucalyptus_fence": "무지개 유칼립투스나무 울타리", - "item.terrestria.rainbow_eucalyptus_fence_gate": "무지개 유칼립투스나무 울타리 문", - "item.terrestria.rainbow_eucalyptus_door": "무지개 유칼립투스나무 문", - "item.terrestria.rainbow_eucalyptus_pressure_plate": "무지개 유칼립투스나무 압력판", - "item.terrestria.rainbow_eucalyptus_button": "무지개 유칼립투스나무 버튼", - "item.terrestria.rainbow_eucalyptus_sign": "무지개 유칼립투스나무 표지판", - "item.terrestria.rainbow_eucalyptus_hanging_sign": "무지개 유칼립투스나무 매다는 표지판", - "item.terrestria.rainbow_eucalyptus_trapdoor": "무지개 유칼립투스나무 다락문", - "item.terrestria.stripped_rainbow_eucalyptus_wood": "껍질 벗긴 무지개 유칼립투스나무", - "item.terrestria.stripped_rainbow_eucalyptus_log": "껍질 벗긴 무지개 유칼립투스나무 원목", - "item.terrestria.stripped_rainbow_eucalyptus_quarter_log": "껍질 벗긴 무지개 유칼립투스나무 쿼터 원목", - "item.terrestria.sakura_log": "벚나무 원목", - "item.terrestria.sakura_sapling": "벚나무 묘목", - "item.terrestria.sakura_leaves": "벚나무 잎", - "item.terrestria.sakura_leaf_pile": "벚나무 잎 더미", - "item.terrestria.sakura_planks": "벚나무 판자", - "item.terrestria.sakura_slab": "벚나무 반 블록", - "item.terrestria.sakura_stairs": "벚나무 계단", - "item.terrestria.sakura_fence": "벚나무 울타리", - "item.terrestria.sakura_fence_gate": "벚나무 울타리 문", - "item.terrestria.sakura_door": "벚나무 문", - "item.terrestria.sakura_pressure_plate": "벚나무 압력판", - "item.terrestria.sakura_button": "벚나무 버튼", - "item.terrestria.sakura_sign": "벚나무 표지판", - "item.terrestria.sakura_hanging_sign": "벚나무 매다는 표지판", - "item.terrestria.sakura_trapdoor": "벚나무 다락문", - "item.terrestria.stripped_sakura_wood": "껍질 벗긴 벚나무", - "item.terrestria.stripped_sakura_log": "껍질 벗긴 벚나무 원목", - "item.terrestria.cattail": "부들", - "item.terrestria.tall_cattail": "키 큰 부들", - "item.terrestria.basalt": "화산암", - "item.terrestria.basalt_slab": "화산암 반 블록", - "item.terrestria.basalt_stairs": "화산암 계단", - "item.terrestria.basalt_wall": "화산암 담장", - "item.terrestria.smooth_basalt": "매끄러운 화산암", - "item.terrestria.smooth_basalt_slab": "매끄러운 화산암 반 블록", - "item.terrestria.smooth_basalt_stairs": "매끄러운 화산암 계단", - "item.terrestria.smooth_basalt_wall": "매끄러운 화산암 담장", - "item.terrestria.basalt_cobblestone": "화산암 조약돌", - "item.terrestria.basalt_cobblestone_slab": "화산암 조약돌 반 블록", - "item.terrestria.basalt_cobblestone_stairs": "화산암 조약돌 계단", - "item.terrestria.basalt_cobblestone_wall": "화산암 조약돌 담장", - "item.terrestria.mossy_basalt_cobblestone": "이끼 낀 화산암 조약돌", - "item.terrestria.mossy_basalt_cobblestone_slab": "이끼 낀 화산암 조약돌 반 블록", - "item.terrestria.mossy_basalt_cobblestone_stairs": "이끼 낀 화산암 조약돌 계단", - "item.terrestria.mossy_basalt_cobblestone_wall": "이끼 낀 화산암 조약돌 담장", - "item.terrestria.basalt_bricks": "화산암 벽돌", - "item.terrestria.basalt_brick_slab": "화산암 벽돌 반 블록", - "item.terrestria.basalt_brick_stairs": "화산암 벽돌 계단", - "item.terrestria.basalt_brick_wall": "화산암 벽돌 담장", - "item.terrestria.mossy_basalt_bricks": "이끼 낀 화산암 벽돌", - "item.terrestria.mossy_basalt_brick_slab": "이끼 낀 화산암 벽돌 반 블록", - "item.terrestria.mossy_basalt_brick_stairs": "이끼 낀 화산암 벽돌 계단", - "item.terrestria.mossy_basalt_brick_wall": "이끼 낀 화산암 벽돌 담장", - "item.terrestria.basalt_button": "화산암 버튼", - "item.terrestria.basalt_pressure_plate": "화산암 압력판", - "item.terrestria.chiseled_basalt_bricks": "조각된 화산암 벽돌", - "item.terrestria.cracked_basalt_bricks": "금 간 화산암 벽돌", - "item.terrestria.basalt_grass_block": "안디솔 잔디 블록", - "item.terrestria.basalt_grass_path": "안디솔 흙 길", - "item.terrestria.basalt_sand": "검은 모래", - "item.terrestria.basalt_dirt": "안디솔", - "item.terrestria.basalt_podzol": "안디솔 회백토", - "item.terrestria.andisol_farmland": "안디솔 경작지", - "item.terrestria.indian_paintbrush": "인도 페인트브러시", - "item.terrestria.monsteras": "몬스테라", - "item.terrestria.potted_indian_paintbrush": "화분에 심은 인도 페인트브러시", - "item.terrestria.potted_monsteras": "화분에 심은 몬스테라", - "item.terrestria.potted_bryce_sapling": "화분에 심은 브라이스나무 묘목", - "item.terrestria.japanese_maple_shrub_sapling": "일본 단풍나무 관목 묘목", - "item.terrestria.japanese_maple_shrub_leaves": "일본 단풍나무 관목 잎", - "item.terrestria.potted_redwood_sapling": "화분에 심은 미국삼나무 묘목", - "item.terrestria.potted_hemlock_sapling": "화분에 심은 솔송나무 묘목", - "item.terrestria.potted_rubber_sapling": "화분에 심은 고무나무 묘목", - "item.terrestria.potted_cypress_sapling": "화분에 심은 측백나무 묘목", - "item.terrestria.potted_willow_sapling": "화분에 심은 버드나무 묘목", - "item.terrestria.potted_japanese_maple_sapling": "화분에 심은 일본 단풍나무 묘목", - "item.terrestria.potted_dark_japanese_maple_sapling": "화분에 심은 짙은 일본 단풍나무 묘목", - "item.terrestria.potted_rainbow_eucalyptus_sapling": "화분에 심은 무지개 유칼립투스나무 묘목", - "item.terrestria.potted_sakura_sapling": "화분에 심은 벚나무 묘목", - "item.terrestria.potted_jungle_palm_sapling": "화분에 심은 정글 야자 묘목", - "item.terrestria.potted_japanese_maple_shrub_sapling": "화분에 심은 일본 단풍나무 관목 묘목", - "item.terrestria.potted_saguaro_cactus_sapling": "화분에 심은 변경주선인장 묘목", - "item.terrestria.potted_yucca_palm_sapling": "화분에 심은 조슈아나무 묘목", - "item.terrestria.agave": "용설란", - "item.terrestria.tiny_cactus": "작은 선인장", - "item.terrestria.aloe_vera": "알로에 베라", - "item.terrestria.dead_grass": "죽은 잔디 블록", - "item.terrestria.potted_agave": "화분에 심은 용설란", - "item.terrestria.potted_tiny_cactus": "화분에 심은 작은 선인장", - "item.terrestria.potted_aloe_vera": "화분에 심은 알로에 베라", - "item.terrestria.yucca_palm_log": "조슈아나무 원목", - "item.terrestria.yucca_palm_leaves": "조슈아나무 잎", - "item.terrestria.yucca_palm_planks": "조슈아나무 판자", - "item.terrestria.yucca_palm_slab": "조슈아나무 반 블록", - "item.terrestria.yucca_palm_stairs": "조슈아나무 계단", - "item.terrestria.yucca_palm_fence": "조슈아나무 울타리", - "item.terrestria.yucca_palm_fence_gate": "조슈아나무 울타리 문", - "item.terrestria.yucca_palm_door": "조슈아나무 문", - "item.terrestria.yucca_palm_button": "조슈아나무 버튼", - "item.terrestria.yucca_palm_pressure_plate": "조슈아나무 압력판", - "item.terrestria.yucca_palm_trapdoor": "조슈아나무 다락문", - "item.terrestria.yucca_palm_sign": "조슈아나무 표지판", - "item.terrestria.yucca_palm_hanging_sign": "조슈아나무 매다는 표지판", - "item.terrestria.stripped_yucca_palm_log": "껍질 벗긴 조슈아나무 원목", - "item.terrestria.small_oak_log": "작은 참나무 원목", - "item.terrestria.stripped_small_oak_log": "껍질 벗긴 작은 참나무 원목", - "item.terrestria.saguaro_cactus": "변경주선인장", - "item.terrestria.bryce_sapling": "브라이스나무 묘목", - "item.terrestria.saguaro_cactus_sapling": "변경주선인장 묘목", - "item.terrestria.yucca_palm_sapling": "조슈아나무 묘목" + "item.terrestria.yucca_palm_chest_boat": "상자가 실린 조슈아나무 보트" } diff --git a/client/src/main/resources/assets/terrestria/lang/pl_pl.json b/client/src/main/resources/assets/terrestria/lang/pl_pl.json index 99998328..e127f469 100644 --- a/client/src/main/resources/assets/terrestria/lang/pl_pl.json +++ b/client/src/main/resources/assets/terrestria/lang/pl_pl.json @@ -158,40 +158,40 @@ "block.terrestria.stripped_sakura_log": "Okorowany sakurowy pień", "block.terrestria.cattail": "Pałka wodna", "block.terrestria.tall_cattail": "Wysoka pałka wodna", - "block.terrestria.basalt": "Skała wulkaniczna", - "block.terrestria.basalt_slab": "Skalna wulkaniczna płyta", - "block.terrestria.basalt_stairs": "Skalne wulkaniczne schody", - "block.terrestria.basalt_wall": "Skalny wulkaniczny murek", - "block.terrestria.smooth_basalt": "Gładka skała wulkaniczna", - "block.terrestria.smooth_basalt_slab": "Gładka skalna wulkaniczna płyta", - "block.terrestria.smooth_basalt_stairs": "Gładkie skalne wulkaniczne schody", - "block.terrestria.smooth_basalt_wall": "Gładki skalny wulkaniczny murek", - "block.terrestria.basalt_cobblestone": "Bruk wulkaniczny", - "block.terrestria.basalt_cobblestone_slab": "Brukowa wulkaniczna płyta", - "block.terrestria.basalt_cobblestone_stairs": "Brukowe wulkaniczne schody", - "block.terrestria.basalt_cobblestone_wall": "Brukowy wulkaniczny murek", - "block.terrestria.mossy_basalt_cobblestone": "Zamszony bruk wulkaniczny", - "block.terrestria.mossy_basalt_cobblestone_slab": "Zamszona brukowa wulkaniczna płyta", - "block.terrestria.mossy_basalt_cobblestone_stairs": "Zamszone brukowe wulkaniczne schody", - "block.terrestria.mossy_basalt_cobblestone_wall": "Zamszony brukowy wulkaniczny murek", - "block.terrestria.basalt_bricks": "Skalne wulkaniczne cegły", - "block.terrestria.basalt_brick_slab": "Skalna wulkaniczna ceglana płyta", - "block.terrestria.basalt_brick_stairs": "Skalne wulkaniczne ceglane schody", - "block.terrestria.basalt_brick_wall": "Skalny wulkaniczny ceglany murek", - "block.terrestria.mossy_basalt_bricks": "Zamszone skalne wulkaniczne cegły", - "block.terrestria.mossy_basalt_brick_slab": "Zamszona skalna wulkaniczna ceglana płyta", - "block.terrestria.mossy_basalt_brick_stairs": "Zamszone skalne wulkaniczne ceglane schody", - "block.terrestria.mossy_basalt_brick_wall": "Zamszony skalny wulkaniczny ceglany murek", - "block.terrestria.basalt_button": "Skalny wulkaniczny przycisk", - "block.terrestria.basalt_pressure_plate": "Skalna wulkaniczna płyta naciskowa", - "block.terrestria.chiseled_basalt_bricks": "Rzeźbione skalne wulkaniczne cegły", - "block.terrestria.cracked_basalt_bricks": "Popękane skalne wulkaniczne cegły", - "block.terrestria.basalt_grass_block": "Blok andyzolowej trawy", - "block.terrestria.basalt_grass_path": "Andyzolowa ścieżka", - "block.terrestria.basalt_sand": "Czarny piasek", - "block.terrestria.basalt_dirt": "Andyzol", - "block.terrestria.basalt_podzol": "Andyzolowa bielica", + "block.terrestria.volcanic_rock": "Skała wulkaniczna", + "block.terrestria.volcanic_rock_slab": "Skalna wulkaniczna płyta", + "block.terrestria.volcanic_rock_stairs": "Skalne wulkaniczne schody", + "block.terrestria.volcanic_rock_wall": "Skalny wulkaniczny murek", + "block.terrestria.smooth_volcanic_rock": "Gładka skała wulkaniczna", + "block.terrestria.smooth_volcanic_rock_slab": "Gładka skalna wulkaniczna płyta", + "block.terrestria.smooth_volcanic_rock_stairs": "Gładkie skalne wulkaniczne schody", + "block.terrestria.smooth_volcanic_rock_wall": "Gładki skalny wulkaniczny murek", + "block.terrestria.volcanic_rock_cobblestone": "Bruk wulkaniczny", + "block.terrestria.volcanic_rock_cobblestone_slab": "Brukowa wulkaniczna płyta", + "block.terrestria.volcanic_rock_cobblestone_stairs": "Brukowe wulkaniczne schody", + "block.terrestria.volcanic_rock_cobblestone_wall": "Brukowy wulkaniczny murek", + "block.terrestria.mossy_volcanic_rock_cobblestone": "Zamszony bruk wulkaniczny", + "block.terrestria.mossy_volcanic_rock_cobblestone_slab": "Zamszona brukowa wulkaniczna płyta", + "block.terrestria.mossy_volcanic_rock_cobblestone_stairs": "Zamszone brukowe wulkaniczne schody", + "block.terrestria.mossy_volcanic_rock_cobblestone_wall": "Zamszony brukowy wulkaniczny murek", + "block.terrestria.volcanic_rock_bricks": "Skalne wulkaniczne cegły", + "block.terrestria.volcanic_rock_brick_slab": "Skalna wulkaniczna ceglana płyta", + "block.terrestria.volcanic_rock_brick_stairs": "Skalne wulkaniczne ceglane schody", + "block.terrestria.volcanic_rock_brick_wall": "Skalny wulkaniczny ceglany murek", + "block.terrestria.mossy_volcanic_rock_bricks": "Zamszone skalne wulkaniczne cegły", + "block.terrestria.mossy_volcanic_rock_brick_slab": "Zamszona skalna wulkaniczna ceglana płyta", + "block.terrestria.mossy_volcanic_rock_brick_stairs": "Zamszone skalne wulkaniczne ceglane schody", + "block.terrestria.mossy_volcanic_rock_brick_wall": "Zamszony skalny wulkaniczny ceglany murek", + "block.terrestria.volcanic_rock_button": "Skalny wulkaniczny przycisk", + "block.terrestria.volcanic_rock_pressure_plate": "Skalna wulkaniczna płyta naciskowa", + "block.terrestria.chiseled_volcanic_rock_bricks": "Rzeźbione skalne wulkaniczne cegły", + "block.terrestria.cracked_volcanic_rock_bricks": "Popękane skalne wulkaniczne cegły", + "block.terrestria.volcanic_sand": "Czarny piasek", + "block.terrestria.andisol": "Andyzol", + "block.terrestria.andisol_dirt_path": "Andyzolowa ścieżka", "block.terrestria.andisol_farmland": "Andyzolowe pole uprawne", + "block.terrestria.andisol_grass_block": "Blok andyzolowej trawy", + "block.terrestria.andisol_podzol": "Andyzolowa bielica", "block.terrestria.indian_paintbrush": "Pędzel indyjski", "block.terrestria.monsteras": "Monsteras", "block.terrestria.potted_indian_paintbrush": "Posadzony pędzel indyjski", @@ -249,226 +249,5 @@ "item.terrestria.rubber_boat": "Gumowa drewniana łódka", "item.terrestria.sakura_boat": "Sakurowa łódka", "item.terrestria.willow_boat": "Wierzbowa łódka", - "item.terrestria.yucca_palm_boat": "Palmowa jukkowa łódka", - - "item.terrestria.redwood_log": "Sekwojowy pień", - "item.terrestria.redwood_wood": "Sekwojowe drewno", - "item.terrestria.redwood_quarter_log": "Sekwojowy pień", - "item.terrestria.redwood_sapling": "Sadzonka sekwoji", - "item.terrestria.redwood_leaves": "Sekwojowe liście", - "item.terrestria.redwood_planks": "Sekwojowe deski", - "item.terrestria.redwood_slab": "Sekwojowa płyta", - "item.terrestria.redwood_stairs": "Sekwojowe schody", - "item.terrestria.redwood_fence": "Sekwojowy płot", - "item.terrestria.redwood_fence_gate": "Sekwojowa furtka", - "item.terrestria.redwood_door": "Sekwojowe drzwi", - "item.terrestria.redwood_pressure_plate": "Sekwojowa płyta naciskowa", - "item.terrestria.redwood_button": "Sekwojowy przycisk", - "item.terrestria.redwood_sign": "Sekwojowy znak", - "item.terrestria.redwood_trapdoor": "Sekwojowa klapa", - "item.terrestria.stripped_redwood_wood": "Okorowane sekwojowe drewno", - "item.terrestria.stripped_redwood_log": "Okorowany sekwojowy pień", - "item.terrestria.stripped_redwood_quarter_log": "Okorowany sekwojowy pień", - "item.terrestria.hemlock_log": "Choinowy pień", - "item.terrestria.hemlock_wood": "Choinowe drewno", - "item.terrestria.hemlock_quarter_log": "Choinowy pień", - "item.terrestria.hemlock_sapling": "Sadzonka choiny", - "item.terrestria.hemlock_leaves": "Choinowe liście", - "item.terrestria.hemlock_planks": "Choinowe deski", - "item.terrestria.hemlock_slab": "Choinowa płyta", - "item.terrestria.hemlock_stairs": "Choinowe schody", - "item.terrestria.hemlock_fence": "Choinowe płot", - "item.terrestria.hemlock_fence_gate": "Choinowa furtka", - "item.terrestria.hemlock_door": "Choinowe drzwi", - "item.terrestria.hemlock_pressure_plate": "Choinowa płyta naciskowa", - "item.terrestria.hemlock_button": "Choinowy przycisk", - "item.terrestria.hemlock_sign": "Choinowy znak", - "item.terrestria.hemlock_trapdoor": "Choinowa klapa", - "item.terrestria.stripped_hemlock_wood": "Okorowane choinowe drewno", - "item.terrestria.stripped_hemlock_log": "Okorowany choinowy pień", - "item.terrestria.stripped_hemlock_quarter_log": "Okorowany choinowy pień", - "item.terrestria.jungle_palm_sapling": "Sadzonka dżunglowej palmy", - "item.terrestria.jungle_palm_leaves": "Dżunglowe palmowe liście", - "item.terrestria.rubber_log": "Gumowy pień", - "item.terrestria.rubber_wood": "Gumowe drewno", - "item.terrestria.rubber_sapling": "Sadzonka gumowego drzewa", - "item.terrestria.rubber_leaves": "Gumowe liście", - "item.terrestria.rubber_planks": "Gumowe deski", - "item.terrestria.rubber_slab": "Gumowa płyta", - "item.terrestria.rubber_stairs": "Gumowe schody", - "item.terrestria.rubber_fence": "Gumowy płot", - "item.terrestria.rubber_fence_gate": "Gumowa furtka", - "item.terrestria.rubber_door": "Gumowe drzwi", - "item.terrestria.rubber_pressure_plate": "Gumowa płyta naciskowa", - "item.terrestria.rubber_button": "Gumowy przycisk", - "item.terrestria.rubber_sign": "Gumowy znak", - "item.terrestria.rubber_trapdoor": "Gumowa klapa", - "item.terrestria.stripped_rubber_wood": "Okorowane gumowe drewno", - "item.terrestria.stripped_rubber_log": "Okorowany gumowy pień", - "item.terrestria.cypress_log": "Cyprusowy pień", - "item.terrestria.cypress_wood": "Cyprusowe drewno", - "item.terrestria.cypress_quarter_log": "Cyprusowy pień", - "item.terrestria.cypress_sapling": "Sadzonka cyprusu", - "item.terrestria.cypress_leaves": "Cyprusowe liście", - "item.terrestria.cypress_planks": "Cyprusowe deski", - "item.terrestria.cypress_slab": "Cyprusowa płyta", - "item.terrestria.cypress_stairs": "Cyprusowe schody", - "item.terrestria.cypress_fence": "Cyprusowy płot", - "item.terrestria.cypress_fence_gate": "Cyprusowa furtka", - "item.terrestria.cypress_door": "Cyprusowe drzwi", - "item.terrestria.cypress_pressure_plate": "Cyprusowa płyta naciskowa", - "item.terrestria.cypress_button": "Cyprusowy przycisk", - "item.terrestria.cypress_sign": "Cyprusowy znak", - "item.terrestria.cypress_trapdoor": "Cyprusowa klapa", - "item.terrestria.stripped_cypress_wood": "Okorowane cyprusowe drewno", - "item.terrestria.stripped_cypress_log": "Okorowany cyprusowy pień", - "item.terrestria.stripped_cypress_quarter_log": "Okorowany cyprusowy pień", - "item.terrestria.willow_log": "Wierzbowy pień", - "item.terrestria.willow_wood": "Wierzbowe drewno", - "item.terrestria.willow_sapling": "Sadzonka wierzby", - "item.terrestria.willow_leaves": "Wierzbowe liście", - "item.terrestria.willow_planks": "Wierzbowe deski", - "item.terrestria.willow_slab": "Wierzbowa płyta", - "item.terrestria.willow_stairs": "Wierzbowe schody", - "item.terrestria.willow_fence": "Wierzbowy płot", - "item.terrestria.willow_fence_gate": "Wierzbowa furtka", - "item.terrestria.willow_door": "Wierzbowe drzwi", - "item.terrestria.willow_pressure_plate": "Wierzbowa płyta naciskowa", - "item.terrestria.willow_button": "Wierzbowy przycisk", - "item.terrestria.willow_sign": "Wierzbowy znak", - "item.terrestria.willow_trapdoor": "Wierzbowa klapa", - "item.terrestria.stripped_willow_wood": "Okorowane wierzbowe drewno", - "item.terrestria.stripped_willow_log": "Okorowany wierzbowy pień", - "item.terrestria.japanese_maple_log": "Japoński klonowy pień", - "item.terrestria.japanese_maple_wood": "Japońskie klonowe drewno", - "item.terrestria.japanese_maple_sapling": "Sadzonka japońskiego klonu", - "item.terrestria.japanese_maple_leaves": "Japońskie klonowe liście", - "item.terrestria.japanese_maple_planks": "Japońskie klonowe liście", - "item.terrestria.japanese_maple_slab": "Japońska klonowa płyta", - "item.terrestria.japanese_maple_stairs": "Japońskie klonowe schody", - "item.terrestria.japanese_maple_fence": "Japoński klonowy płot", - "item.terrestria.japanese_maple_fence_gate": "Japońska klonowa furtka", - "item.terrestria.japanese_maple_door": "Japońskie klonowe drzwi", - "item.terrestria.japanese_maple_pressure_plate": "Japońska klonowa płyta naciskowa", - "item.terrestria.japanese_maple_button": "Japoński klonowy przycisk", - "item.terrestria.japanese_maple_sign": "Japoński klonowy znak", - "item.terrestria.japanese_maple_trapdoor": "Japońska klonowa klapa", - "item.terrestria.stripped_japanese_maple_wood": "Okorowane japońskie klonowe drewno", - "item.terrestria.stripped_japanese_maple_log": "Okorowany japoński klonowy pień", - "item.terrestria.dark_japanese_maple_leaves": "Ciemne japońskie klonowe liście", - "item.terrestria.dark_japanese_maple_sapling": "Sadzonka ciemnego japońskiego klonu", - "item.terrestria.rainbow_eucalyptus_log": "Tęczowy eukaliptusowy pień", - "item.terrestria.rainbow_eucalyptus_wood": "Tęczowe eukaliptusowe drewno", - "item.terrestria.rainbow_eucalyptus_quarter_log": "Tęczowy eukaliptusowy pień", - "item.terrestria.rainbow_eucalyptus_sapling": "Sadzonka tęczowego eukaliptusa", - "item.terrestria.rainbow_eucalyptus_leaves": "Tęczowe eukaliptusowe liście", - "item.terrestria.rainbow_eucalyptus_planks": "Tęczowe eukaliptusowe deski", - "item.terrestria.rainbow_eucalyptus_slab": "Tęczowa eukaliptusowa płyta", - "item.terrestria.rainbow_eucalyptus_stairs": "Tęczowe eukaliptusowe schody", - "item.terrestria.rainbow_eucalyptus_fence": "Tęczowy eukaliptusowy płot", - "item.terrestria.rainbow_eucalyptus_fence_gate": "Tęczowa eukaliptusowa furtka", - "item.terrestria.rainbow_eucalyptus_door": "Tęczowe eukaliptusowe drzwi", - "item.terrestria.rainbow_eucalyptus_pressure_plate": "Tęczowa eukaliptusowa płyta naciskowa", - "item.terrestria.rainbow_eucalyptus_button": "Tęczowy eukaliptusowy przycisk", - "item.terrestria.rainbow_eucalyptus_sign": "Tęczowy eukaliptusowy znak", - "item.terrestria.rainbow_eucalyptus_trapdoor": "Tęczowa eukaliptusowa klapa", - "item.terrestria.stripped_rainbow_eucalyptus_wood": "Okorowane tęczowe eukaliptusowe drewno", - "item.terrestria.stripped_rainbow_eucalyptus_log": "Okorowany tęczowy eukaliptusowy pień", - "item.terrestria.stripped_rainbow_eucalyptus_quarter_log": "Okorowany tęczowy eukaliptusowy pień", - "item.terrestria.sakura_log": "Sakurowy pień", - "item.terrestria.sakura_sapling": "Sadzonka sakury", - "item.terrestria.sakura_leaves": "Sakurowe liście", - "item.terrestria.sakura_leaf_pile": "Sakurowa sterta liści", - "item.terrestria.sakura_planks": "Sakurowe deski", - "item.terrestria.sakura_slab": "Sakurowa płyta", - "item.terrestria.sakura_stairs": "Sakurowe schody", - "item.terrestria.sakura_fence": "Sakurowy płot", - "item.terrestria.sakura_fence_gate": "Sakurowa furtka", - "item.terrestria.sakura_door": "Sakurowe drzwi", - "item.terrestria.sakura_pressure_plate": "Sakurowa płyta naciskowa", - "item.terrestria.sakura_button": "Sakurowy przycisk", - "item.terrestria.sakura_sign": "Sakurowy znak", - "item.terrestria.sakura_trapdoor": "Sakurowa klapa", - "item.terrestria.stripped_sakura_wood": "Okorowane sakurowe drewno", - "item.terrestria.stripped_sakura_log": "Okorowany sakurowy pień", - "item.terrestria.cattail": "Pałka wodna", - "item.terrestria.tall_cattail": "Wysoka pałka wodna", - "item.terrestria.basalt": "Skała wulkaniczna", - "item.terrestria.basalt_slab": "Skalna wulkaniczna płyta", - "item.terrestria.basalt_stairs": "Skalne wulkaniczne schody", - "item.terrestria.basalt_wall": "Skalny wulkaniczny murek", - "item.terrestria.smooth_basalt": "Gładka skała wulkaniczna", - "item.terrestria.smooth_basalt_slab": "Gładka skalna wulkaniczna płyta", - "item.terrestria.smooth_basalt_stairs": "Gładkie skalne wulkaniczne schody", - "item.terrestria.smooth_basalt_wall": "Gładki skalny wulkaniczny murek", - "item.terrestria.basalt_cobblestone": "Bruk wulkaniczny", - "item.terrestria.basalt_cobblestone_slab": "Brukowa wulkaniczna płyta", - "item.terrestria.basalt_cobblestone_stairs": "Brukowe wulkaniczne schody", - "item.terrestria.basalt_cobblestone_wall": "Brukowy wulkaniczny murek", - "item.terrestria.mossy_basalt_cobblestone": "Zamszony bruk wulkaniczny", - "item.terrestria.mossy_basalt_cobblestone_slab": "Zamszona brukowa wulkaniczna płyta", - "item.terrestria.mossy_basalt_cobblestone_stairs": "Zamszone brukowe wulkaniczne schody", - "item.terrestria.mossy_basalt_cobblestone_wall": "Zamszony brukowy wulkaniczny murek", - "item.terrestria.basalt_bricks": "Skalne wulkaniczne cegły", - "item.terrestria.basalt_brick_slab": "Skalna wulkaniczna ceglana płyta", - "item.terrestria.basalt_brick_stairs": "Skalne wulkaniczne ceglane schody", - "item.terrestria.basalt_brick_wall": "Skalny wulkaniczny ceglany murek", - "item.terrestria.mossy_basalt_bricks": "Zamszone skalne wulkaniczne cegły", - "item.terrestria.mossy_basalt_brick_slab": "Zamszona skalna wulkaniczna ceglana płyta", - "item.terrestria.mossy_basalt_brick_stairs": "Zamszone skalne wulkaniczne ceglane schody", - "item.terrestria.mossy_basalt_brick_wall": "Zamszony skalny wulkaniczny ceglany murek", - "item.terrestria.basalt_button": "Skalny wulkaniczny przycisk", - "item.terrestria.basalt_pressure_plate": "Skalna wulkaniczna płyta naciskowa", - "item.terrestria.chiseled_basalt_bricks": "Rzeźbione skalne wulkaniczne cegły", - "item.terrestria.cracked_basalt_bricks": "Popękane skalne wulkaniczne cegły", - "item.terrestria.basalt_grass_block": "Blok andyzolowej trawy", - "item.terrestria.basalt_grass_path": "Andyzolowa ścieżka", - "item.terrestria.basalt_sand": "Czarny piasek", - "item.terrestria.basalt_dirt": "Andyzol", - "item.terrestria.basalt_podzol": "Andyzolowa bielica", - "item.terrestria.andisol_farmland": "Andyzolowe pole uprawne", - "item.terrestria.indian_paintbrush": "Pędzel indyjski", - "item.terrestria.monsteras": "Monsteras", - "item.terrestria.potted_indian_paintbrush": "Posadzony pędzel indyjski", - "item.terrestria.potted_monsteras": "Posadzony monsteras", - "item.terrestria.japanese_maple_shrub_sapling": "Sadzonka japońskiego klonowego krzaka", - "item.terrestria.japanese_maple_shrub_leaves": "Japońskie klonowe liście krzaka", - "item.terrestria.potted_redwood_sapling": "Posadzona sadzonka sekwoji", - "item.terrestria.potted_hemlock_sapling": "Posadzona sadzonka choiny", - "item.terrestria.potted_rubber_sapling": "Posadzona sadzonka gumowego drzewa", - "item.terrestria.potted_cypress_sapling": "Posadzona sadzonka cyprusu", - "item.terrestria.potted_willow_sapling": "Posadzona sadzonka wierzby", - "item.terrestria.potted_japanese_maple_sapling": "Posadzona sadzonka japońskiego klonu", - "item.terrestria.potted_dark_japanese_maple_sapling": "Posadzona sadzonka ciemnego japońskiego klonu", - "item.terrestria.potted_rainbow_eucalyptus_sapling": "Posadzona sadzonka tęczowego eukaliptusu", - "item.terrestria.potted_sakura_sapling": "Posadzona sadzonka sakury", - "item.terrestria.potted_jungle_palm_sapling": "Posadzona sadzonka dżunglowej palmy", - "item.terrestria.potted_japanese_maple_shrub_sapling": "Posadzona sadzonka japońskiego klonowego krzaka", - "item.terrestria.potted_saguaro_cactus_sapling": "Posadzona sadzonka kaktusa saguaro", - "item.terrestria.agave": "Agawa", - "item.terrestria.tiny_cactus": "Mały kaktus", - "item.terrestria.aloe_vera": "Aloes", - "item.terrestria.dead_grass": "Martwa trawa", - "item.terrestria.potted_agave": "Posadzona agawa", - "item.terrestria.potted_tiny_cactus": "Posadzony mały kaktus", - "item.terrestria.potted_aloe_vera": "Posadzony aloes", - "item.terrestria.yucca_palm_log": "Palmowy jukkowy pień", - "item.terrestria.yucca_palm_leaves": "Palmowe jukkowe liście", - "item.terrestria.yucca_palm_planks": "Palmowe jukkowe deski", - "item.terrestria.yucca_palm_slab": "Palmowa jukkowa płyta", - "item.terrestria.yucca_palm_stairs": "Palmowe jukkowe schody", - "item.terrestria.yucca_palm_fence": "Palmowy jukkowy płot", - "item.terrestria.yucca_palm_fence_gate": "Palmowa jukkowa furtka", - "item.terrestria.yucca_palm_door": "Palmowe jukkowe drzwi", - "item.terrestria.yucca_palm_button": "Palmowy jukkowy przycisk", - "item.terrestria.yucca_palm_pressure_plate": "Palmowa jukkowa płyta naciskowa", - "item.terrestria.yucca_palm_trapdoor": "Palmowa jukkowa klapa", - "item.terrestria.yucca_palm_sign": "Palmowy jukkowy znak", - "item.terrestria.stripped_yucca_palm_log": "Okorowany palmowy jukkowy pień", - "item.terrestria.small_oak_log": "Mały dębowy pień", - "item.terrestria.stripped_small_oak_log": "Okorowany mały dębowy pień", - "item.terrestria.saguaro_cactus": "Kaktus saguaro", - "item.terrestria.bryce_sapling": "Sadzonka drzewa bryce", - "item.terrestria.saguaro_cactus_sapling": "Sadzonka kaktusa saguaro", - "item.terrestria.yucca_palm_sapling": "Sadzonka palmy jukka" + "item.terrestria.yucca_palm_boat": "Palmowa jukkowa łódka" } diff --git a/client/src/main/resources/assets/terrestria/lang/pt_br.json b/client/src/main/resources/assets/terrestria/lang/pt_br.json index ff08b4a8..bb3f148d 100644 --- a/client/src/main/resources/assets/terrestria/lang/pt_br.json +++ b/client/src/main/resources/assets/terrestria/lang/pt_br.json @@ -157,40 +157,40 @@ "block.terrestria.stripped_sakura_log": "Tronco de sakura descascado", "block.terrestria.cattail": "Taboa", "block.terrestria.tall_cattail": "Taboa alta", - "block.terrestria.basalt": "Rocha vulcânica", - "block.terrestria.basalt_slab": "Laje de rocha vulcânica", - "block.terrestria.basalt_stairs": "Escadas de rocha vulcânica", - "block.terrestria.basalt_wall": "Muro de rocha vulcânica", - "block.terrestria.smooth_basalt": "Rocha vulcânica lisa", - "block.terrestria.smooth_basalt_slab": "Laje de rocha vulcânica lisa", - "block.terrestria.smooth_basalt_stairs": "Escadas de rocha vulcânica lisa", - "block.terrestria.smooth_basalt_wall": "Muro de rocha vulcânica lisa", - "block.terrestria.basalt_cobblestone": "Pedregulho vulcânico", - "block.terrestria.basalt_cobblestone_slab": "Laje de pedregulho vulcânico", - "block.terrestria.basalt_cobblestone_stairs": "Escadas de pedregulho vulcânico", - "block.terrestria.basalt_cobblestone_wall": "Muro de pedregulho vulcânico", - "block.terrestria.mossy_basalt_cobblestone": "Pedregulho vulcânico musgoso", - "block.terrestria.mossy_basalt_cobblestone_slab": "Laje de pedregulho vulcânico musgoso", - "block.terrestria.mossy_basalt_cobblestone_stairs": "Escadas de pedregulho vulcânico musgoso", - "block.terrestria.mossy_basalt_cobblestone_wall": "Muro de pedregulho vulcânico musgoso", - "block.terrestria.basalt_bricks": "Tijolos de rocha vulcânica", - "block.terrestria.basalt_brick_slab": "Laje de tijolos de rocha vulcânica", - "block.terrestria.basalt_brick_stairs": "Escadas de tijolos de rocha vulcânica", - "block.terrestria.basalt_brick_wall": "Muro de tijolos de rocha vulcânica", - "block.terrestria.mossy_basalt_bricks": "Tijolos de rocha vulcânica musgosos", - "block.terrestria.mossy_basalt_brick_slab": "Laje de tijolos de rocha vulcânica musgosos", - "block.terrestria.mossy_basalt_brick_stairs": "Escadas de tijolos de rocha vulcânica musgosos", - "block.terrestria.mossy_basalt_brick_wall": "Muro de tijolos de rocha vulcânica musgosos", - "block.terrestria.basalt_button": "Botão de rocha vulcânica", - "block.terrestria.basalt_pressure_plate": "Placa de pressão de rocha vulcânica", - "block.terrestria.chiseled_basalt_bricks": "Tijolos de rocha vulcânica talhados", - "block.terrestria.cracked_basalt_bricks": "Tijolos de rocha vulcânica rachados", - "block.terrestria.basalt_grass_block": "Grama de andossolo", - "block.terrestria.basalt_grass_path": "Caminho de grama de andossolo", - "block.terrestria.basalt_sand": "Areia preta", - "block.terrestria.basalt_dirt": "Andossolo", - "block.terrestria.basalt_podzol": "Podzol de andossolo", + "block.terrestria.volcanic_rock": "Rocha vulcânica", + "block.terrestria.volcanic_rock_slab": "Laje de rocha vulcânica", + "block.terrestria.volcanic_rock_stairs": "Escadas de rocha vulcânica", + "block.terrestria.volcanic_rock_wall": "Muro de rocha vulcânica", + "block.terrestria.smooth_volcanic_rock": "Rocha vulcânica lisa", + "block.terrestria.smooth_volcanic_rock_slab": "Laje de rocha vulcânica lisa", + "block.terrestria.smooth_volcanic_rock_stairs": "Escadas de rocha vulcânica lisa", + "block.terrestria.smooth_volcanic_rock_wall": "Muro de rocha vulcânica lisa", + "block.terrestria.volcanic_rock_cobblestone": "Pedregulho vulcânico", + "block.terrestria.volcanic_rock_cobblestone_slab": "Laje de pedregulho vulcânico", + "block.terrestria.volcanic_rock_cobblestone_stairs": "Escadas de pedregulho vulcânico", + "block.terrestria.volcanic_rock_cobblestone_wall": "Muro de pedregulho vulcânico", + "block.terrestria.mossy_volcanic_rock_cobblestone": "Pedregulho vulcânico musgoso", + "block.terrestria.mossy_volcanic_rock_cobblestone_slab": "Laje de pedregulho vulcânico musgoso", + "block.terrestria.mossy_volcanic_rock_cobblestone_stairs": "Escadas de pedregulho vulcânico musgoso", + "block.terrestria.mossy_volcanic_rock_cobblestone_wall": "Muro de pedregulho vulcânico musgoso", + "block.terrestria.volcanic_rock_bricks": "Tijolos de rocha vulcânica", + "block.terrestria.volcanic_rock_brick_slab": "Laje de tijolos de rocha vulcânica", + "block.terrestria.volcanic_rock_brick_stairs": "Escadas de tijolos de rocha vulcânica", + "block.terrestria.volcanic_rock_brick_wall": "Muro de tijolos de rocha vulcânica", + "block.terrestria.mossy_volcanic_rock_bricks": "Tijolos de rocha vulcânica musgosos", + "block.terrestria.mossy_volcanic_rock_brick_slab": "Laje de tijolos de rocha vulcânica musgosos", + "block.terrestria.mossy_volcanic_rock_brick_stairs": "Escadas de tijolos de rocha vulcânica musgosos", + "block.terrestria.mossy_volcanic_rock_brick_wall": "Muro de tijolos de rocha vulcânica musgosos", + "block.terrestria.volcanic_rock_button": "Botão de rocha vulcânica", + "block.terrestria.volcanic_rock_pressure_plate": "Placa de pressão de rocha vulcânica", + "block.terrestria.chiseled_volcanic_rock_bricks": "Tijolos de rocha vulcânica talhados", + "block.terrestria.cracked_volcanic_rock_bricks": "Tijolos de rocha vulcânica rachados", + "block.terrestria.volcanic_sand": "Areia preta", + "block.terrestria.andisol": "Andossolo", + "block.terrestria.andisol_dirt_path": "Caminho de grama de andossolo", "block.terrestria.andisol_farmland": "Andossolo arado", + "block.terrestria.andisol_grass_block": "Grama de andossolo", + "block.terrestria.andisol_podzol": "Podzol de andossolo", "block.terrestria.indian_paintbrush": "Castilleja", "block.terrestria.monsteras": "Monstera", "block.terrestria.potted_indian_paintbrush": "Castilleja envasada", @@ -250,227 +250,5 @@ "item.terrestria.rubber_boat": "Bote de seringueira", "item.terrestria.sakura_boat": "Bote de sakura", "item.terrestria.willow_boat": "Bote de salgueiro", - "item.terrestria.yucca_palm_boat": "Bote de yucca", - - "item.terrestria.redwood_log": "Tronco de sequóia", - "item.terrestria.redwood_wood": "Madeira de sequóia", - "item.terrestria.redwood_quarter_log": "Lenho de sequóia", - "item.terrestria.redwood_sapling": "Muda de sequóia", - "item.terrestria.redwood_leaves": "Folhas de sequóia", - "item.terrestria.redwood_planks": "Tábuas de sequóia", - "item.terrestria.redwood_slab": "Laje de sequóia", - "item.terrestria.redwood_stairs": "Escadas de sequóia", - "item.terrestria.redwood_fence": "Cerca de sequóia", - "item.terrestria.redwood_fence_gate": "Portão de sequóia", - "item.terrestria.redwood_door": "Porta de sequóia", - "item.terrestria.redwood_pressure_plate": "Placa de pressão de sequóia", - "item.terrestria.redwood_button": "Botão de sequóia", - "item.terrestria.redwood_sign": "Placa de sequóia", - "item.terrestria.redwood_trapdoor": "Alçapão de sequóia", - "item.terrestria.stripped_redwood_wood": "Madeira de sequóia descascada", - "item.terrestria.stripped_redwood_log": "Tronco de sequóia descascado", - "item.terrestria.stripped_redwood_quarter_log": "Lenho de sequóia descascado", - "item.terrestria.hemlock_log": "Tronco de tsuga", - "item.terrestria.hemlock_wood": "Madeira de tsuga", - "item.terrestria.hemlock_quarter_log": "Lenho de tsuga", - "item.terrestria.hemlock_sapling": "Muda de tsuga", - "item.terrestria.hemlock_leaves": "Folhas de tsuga", - "item.terrestria.hemlock_planks": "Tábuas de tsuga", - "item.terrestria.hemlock_slab": "Laje de tsuga", - "item.terrestria.hemlock_stairs": "Escadas de tsuga", - "item.terrestria.hemlock_fence": "Cerca de tsuga", - "item.terrestria.hemlock_fence_gate": "Portão de tsuga", - "item.terrestria.hemlock_door": "Porta de tsuga", - "item.terrestria.hemlock_pressure_plate": "Placa de pressão de tsuga", - "item.terrestria.hemlock_button": "Botão de tsuga", - "item.terrestria.hemlock_sign": "Placa de tsuga", - "item.terrestria.hemlock_trapdoor": "Alçapão de tsuga", - "item.terrestria.stripped_hemlock_wood": "Madeira de tsuga descascada", - "item.terrestria.stripped_hemlock_log": "Tronco de tsuga descascado", - "item.terrestria.stripped_hemlock_quarter_log": "Lenho de tsuga descascado", - "item.terrestria.jungle_palm_sapling": "Muda de palmeira-selvagem", - "item.terrestria.jungle_palm_leaves": "Folhas de palmeira-selvagem", - "item.terrestria.rubber_log": "Tronco de seringueira", - "item.terrestria.rubber_wood": "Madeira de seringueira", - "item.terrestria.rubber_sapling": "Muda de seringueira", - "item.terrestria.rubber_leaves": "Folhas de serigueira", - "item.terrestria.rubber_planks": "Tábuas de seringueira", - "item.terrestria.rubber_slab": "Laje de seringueira", - "item.terrestria.rubber_stairs": "Escadas de seringueira", - "item.terrestria.rubber_fence": "Cerca de seringueira", - "item.terrestria.rubber_fence_gate": "Portão de seringueira", - "item.terrestria.rubber_door": "Porta de seringueira", - "item.terrestria.rubber_pressure_plate": "Placa de pressão de seringueira", - "item.terrestria.rubber_button": "Botão de seringueira", - "item.terrestria.rubber_sign": "Placa de seringueira", - "item.terrestria.rubber_trapdoor": "Alçapão de seringueira", - "item.terrestria.stripped_rubber_wood": "Madeira de seringueira descascada", - "item.terrestria.stripped_rubber_log": "Tronco de seringueira descascado", - "item.terrestria.cypress_log": "Tronco de cipreste", - "item.terrestria.cypress_wood": "Madeira de cipreste", - "item.terrestria.cypress_quarter_log": "Lenho de cipreste", - "item.terrestria.cypress_sapling": "Muda de cipreste", - "item.terrestria.cypress_leaves": "Folhas de cipreste", - "item.terrestria.cypress_planks": "Tábuas de cipreste", - "item.terrestria.cypress_slab": "Laje de cipreste", - "item.terrestria.cypress_stairs": "Escadas de cipreste", - "item.terrestria.cypress_fence": "Cerca de cipreste", - "item.terrestria.cypress_fence_gate": "Portão de cipreste", - "item.terrestria.cypress_door": "Porta de cipreste", - "item.terrestria.cypress_pressure_plate": "Placa de pressão de cipreste", - "item.terrestria.cypress_button": "Botão de cipreste", - "item.terrestria.cypress_sign": "Placa de cipreste", - "item.terrestria.cypress_trapdoor": "Alçapão de cipreste", - "item.terrestria.stripped_cypress_wood": "Madeira de cipreste descascada", - "item.terrestria.stripped_cypress_log": "Tronco de cipreste descascado", - "item.terrestria.stripped_cypress_quarter_log": "Lenho de cipreste descascado", - "item.terrestria.willow_log": "Tronco de salgueiro", - "item.terrestria.willow_wood": "Madeira de salgueiro", - "item.terrestria.willow_sapling": "Muda de salgueiro", - "item.terrestria.willow_leaves": "Folhas de salgueiro", - "item.terrestria.willow_planks": "Tábuas de salgueiro", - "item.terrestria.willow_slab": "Laje de salgueiro", - "item.terrestria.willow_stairs": "Escadas de salgueiro", - "item.terrestria.willow_fence": "Cerca de salgueiro", - "item.terrestria.willow_fence_gate": "Portão de salgueiro", - "item.terrestria.willow_door": "Porta de salgueiro", - "item.terrestria.willow_pressure_plate": "Placa de pressão de salgueiro", - "item.terrestria.willow_button": "Botão de salgueiro", - "item.terrestria.willow_sign": "Placa de salgueiro", - "item.terrestria.willow_trapdoor": "Alçapão de salgueiro", - "item.terrestria.stripped_willow_wood": "Madeira de salgueiro descascada", - "item.terrestria.stripped_willow_log": "Tronco de salgueiro descascado", - "item.terrestria.japanese_maple_log": "Tronco de bordo-japonês", - "item.terrestria.japanese_maple_wood": "Madeira de bordo-japonês", - "item.terrestria.japanese_maple_sapling": "Muda de bordo-japonês", - "item.terrestria.japanese_maple_leaves": "Folhas de bordo-japonês", - "item.terrestria.japanese_maple_planks": "Tábuas de bordo-japonês", - "item.terrestria.japanese_maple_slab": "Laje de bordo-japonês", - "item.terrestria.japanese_maple_stairs": "Escadas de bordo-japonês", - "item.terrestria.japanese_maple_fence": "Cerca de bordo-japonês", - "item.terrestria.japanese_maple_fence_gate": "Portão de bordo-japonês", - "item.terrestria.japanese_maple_door": "Porta de bordo-japonês", - "item.terrestria.japanese_maple_pressure_plate": "Placa de pressão de bordo-japonês", - "item.terrestria.japanese_maple_button": "Botão de bordo-japonês", - "item.terrestria.japanese_maple_sign": "Placa de bordo-japonês", - "item.terrestria.japanese_maple_trapdoor": "Porta de bordo-japonês", - "item.terrestria.stripped_japanese_maple_wood": "Madeira de bordo-japonês descacada", - "item.terrestria.stripped_japanese_maple_log": "Tronco de bordo-japonês descascado", - "item.terrestria.dark_japanese_maple_leaves": "Folhas de bordo-japonês escuro", - "item.terrestria.dark_japanese_maple_sapling": "Muda de bordo-japonês escuro", - "item.terrestria.rainbow_eucalyptus_log": "Tronco de eucalipto arco-íris", - "item.terrestria.rainbow_eucalyptus_wood": "Madeira de eucalipto arco-íris", - "item.terrestria.rainbow_eucalyptus_quarter_log": "Lenho de eucalipto arco-íris", - "item.terrestria.rainbow_eucalyptus_sapling": "Muda de eucalipto arco-íris", - "item.terrestria.rainbow_eucalyptus_leaves": "Folhas de eucalipto arco-íris", - "item.terrestria.rainbow_eucalyptus_planks": "Tábuas de eucalipto arco-íris", - "item.terrestria.rainbow_eucalyptus_slab": "Laje de eucalipto arco-íris", - "item.terrestria.rainbow_eucalyptus_stairs": "Escadas de eucalipto arco-íris", - "item.terrestria.rainbow_eucalyptus_fence": "Cerca de eucalipto arco-íris", - "item.terrestria.rainbow_eucalyptus_fence_gate": "Portão de eucalipto arco-íris", - "item.terrestria.rainbow_eucalyptus_door": "Portão de eucalipto arco-íris", - "item.terrestria.rainbow_eucalyptus_pressure_plate": "Placa de pressão de eucalipto arco-íris", - "item.terrestria.rainbow_eucalyptus_button": "Botão de eucalipto arco-íris", - "item.terrestria.rainbow_eucalyptus_sign": "Placa de eucalipto arco-íris", - "item.terrestria.rainbow_eucalyptus_trapdoor": "Alçapão de eucalipto arco-íris", - "item.terrestria.stripped_rainbow_eucalyptus_wood": "Madeira de eucalipto arco-íris descascada", - "item.terrestria.stripped_rainbow_eucalyptus_log": "Tronco de eucalipto arco-íris descascado", - "item.terrestria.stripped_rainbow_eucalyptus_quarter_log": "Lenho de eucalipto arco-íris descascado", - "item.terrestria.sakura_log": "Tronco de sakura", - "item.terrestria.sakura_sapling": "Muda de sakura", - "item.terrestria.sakura_leaves": "Folhas de sakura", - "item.terrestria.sakura_leaf_pile": "Pilha de folhas de sakura", - "item.terrestria.sakura_planks": "Tábuas de sakura", - "item.terrestria.sakura_slab": "Laje de sakura", - "item.terrestria.sakura_stairs": "Escadas de sakura", - "item.terrestria.sakura_fence": "Cerca de sakura", - "item.terrestria.sakura_fence_gate": "Portão de sakura", - "item.terrestria.sakura_door": "Porta de sakura", - "item.terrestria.sakura_pressure_plate": "Placa de pressão de sakura", - "item.terrestria.sakura_button": "Botão de sakura", - "item.terrestria.sakura_sign": "Placa de sakura", - "item.terrestria.sakura_trapdoor": "Alçapão de sakura", - "item.terrestria.stripped_sakura_log": "Tronco de sakura descascado", - "item.terrestria.cattail": "Taboa", - "item.terrestria.tall_cattail": "Taboa alta", - "item.terrestria.basalt": "Rocha vulcânica", - "item.terrestria.basalt_slab": "Laje de rocha vulcânica", - "item.terrestria.basalt_stairs": "Escadas de rocha vulcânica", - "item.terrestria.basalt_wall": "Muro de rocha vulcânica", - "item.terrestria.smooth_basalt": "Rocha vulcânica lisa", - "item.terrestria.smooth_basalt_slab": "Laje de rocha vulcânica lisa", - "item.terrestria.smooth_basalt_stairs": "Escadas de rocha vulcânica lisa", - "item.terrestria.smooth_basalt_wall": "Muro de rocha vulcânica lisa", - "item.terrestria.basalt_cobblestone": "Pedregulho vulcânico", - "item.terrestria.basalt_cobblestone_slab": "Laje de pedregulho vulcânico", - "item.terrestria.basalt_cobblestone_stairs": "Escadas de pedregulho vulcânico", - "item.terrestria.basalt_cobblestone_wall": "Muro de pedregulho vulcânico", - "item.terrestria.mossy_basalt_cobblestone": "Pedregulho vulcânico musgoso", - "item.terrestria.mossy_basalt_cobblestone_slab": "Laje de pedregulho vulcânico musgoso", - "item.terrestria.mossy_basalt_cobblestone_stairs": "Escadas de pedregulho vulcânico musgoso", - "item.terrestria.mossy_basalt_cobblestone_wall": "Muro de pedregulho vulcânico musgoso", - "item.terrestria.basalt_bricks": "Tijolos de rocha vulcânica", - "item.terrestria.basalt_brick_slab": "Laje de tijolos de rocha vulcânica", - "item.terrestria.basalt_brick_stairs": "Escadas de tijolos de rocha vulcânica", - "item.terrestria.basalt_brick_wall": "Muro de tijolos de rocha vulcânica", - "item.terrestria.mossy_basalt_bricks": "Tijolos de rocha vulcânica musgosos", - "item.terrestria.mossy_basalt_brick_slab": "Laje de tijolos de rocha vulcânica musgosos", - "item.terrestria.mossy_basalt_brick_stairs": "Escadas de tijolos de rocha vulcânica musgosos", - "item.terrestria.mossy_basalt_brick_wall": "Muro de tijolos de rocha vulcânica musgosos", - "item.terrestria.basalt_button": "Botão de rocha vulcânica", - "item.terrestria.basalt_pressure_plate": "Placa de pressão de rocha vulcânica", - "item.terrestria.chiseled_basalt_bricks": "Tijolos de rocha vulcânica talhados", - "item.terrestria.cracked_basalt_bricks": "Tijolos de rocha vulcânica rachados", - "item.terrestria.basalt_grass_block": "Grama de andossolo", - "item.terrestria.basalt_grass_path": "Caminho de grama de andossolo", - "item.terrestria.basalt_sand": "Areia preta", - "item.terrestria.basalt_dirt": "Andossolo", - "item.terrestria.basalt_podzol": "Podzol de andossolo", - "item.terrestria.andisol_farmland": "Andossolo arado", - "item.terrestria.indian_paintbrush": "Castilleja", - "item.terrestria.monsteras": "Monstera", - "item.terrestria.potted_indian_paintbrush": "Castilleja envasada", - "item.terrestria.potted_monsteras": "Monstera envasada", - "item.terrestria.japanese_maple_shrub_sapling": "Muda de arbusto de bordo-japonês", - "item.terrestria.japanese_maple_shrub_leaves": "Folhas de arbusto de bordo-japonês", - "item.terrestria.potted_redwood_sapling": "Muda de sequóia envasada", - "item.terrestria.potted_hemlock_sapling": "Muda de tsuga envasada", - "item.terrestria.potted_rubber_sapling": "Muda de seringueira envasada", - "item.terrestria.potted_cypress_sapling": "Muda de cipreste envasada", - "item.terrestria.potted_willow_sapling": "Muda de salgueiro envasada", - "item.terrestria.potted_japanese_maple_sapling": "Muda de bordo-japonês envasada", - "item.terrestria.potted_dark_japanese_maple_sapling": "Muda de bordo-japonês escuro envasada", - "item.terrestria.potted_rainbow_eucalyptus_sapling": "Muda de eucalipto arco-íris envasada", - "item.terrestria.potted_sakura_sapling": "Muda de sakura envasada", - "item.terrestria.potted_jungle_palm_sapling": "Muda de palmeira-da-selva envasada", - "item.terrestria.potted_japanese_maple_shrub_sapling": "Muda de arbusto de bordo-japonês envasada", - "item.terrestria.potted_bryce_sapling": "Muda de carvalho xerófilo envasada", - "item.terrestria.potted_saguaro_cactus_sapling": "Muda de cacto saguaro envasada", - "item.terrestria.potted_yucca_palm_sapling": "Muda de yucca envasada", - "item.terrestria.agave": "Agave", - "item.terrestria.tiny_cactus": "Cacto pequeno", - "item.terrestria.aloe_vera": "Babosa", - "item.terrestria.dead_grass": "Grama morta", - "item.terrestria.potted_agave": "Agave envasada", - "item.terrestria.potted_tiny_cactus": "Cacto pequeno envasado", - "item.terrestria.potted_aloe_vera": "Babosa envasada", - "item.terrestria.yucca_palm_log": "Tronco de yucca", - "item.terrestria.yucca_palm_leaves": "Folhas de yucca", - "item.terrestria.yucca_palm_planks": "Tábuas de yucca", - "item.terrestria.yucca_palm_slab": "Laje de yucca", - "item.terrestria.yucca_palm_stairs": "Escadas de yucca", - "item.terrestria.yucca_palm_fence": "Cerca de yucca", - "item.terrestria.yucca_palm_fence_gate": "Portão de yucca", - "item.terrestria.yucca_palm_door": "Porta de yucca", - "item.terrestria.yucca_palm_button": "Botão de yucca", - "item.terrestria.yucca_palm_pressure_plate": "Placa de pressão de yucca", - "item.terrestria.yucca_palm_trapdoor": "Alçapão de yucca", - "item.terrestria.yucca_palm_sign": "Placa de yucca", - "item.terrestria.stripped_yucca_palm_log": "Tronco de yucca descascado", - "item.terrestria.small_oak_log": "Tronco pequeno de carvalho", - "item.terrestria.stripped_small_oak_log": "Tronco pequeno de carvalho descascado", - "item.terrestria.saguaro_cactus": "Cacto saguaro", - "item.terrestria.bryce_sapling": "Muda de carvalho xerófilo", - "item.terrestria.saguaro_cactus_sapling": "Muda de cacto saguaro", - "item.terrestria.yucca_palm_sapling": "Muda de yucca" + "item.terrestria.yucca_palm_boat": "Bote de yucca" } diff --git a/client/src/main/resources/assets/terrestria/lang/ru_ru.json b/client/src/main/resources/assets/terrestria/lang/ru_ru.json index d05c139c..61154e1b 100644 --- a/client/src/main/resources/assets/terrestria/lang/ru_ru.json +++ b/client/src/main/resources/assets/terrestria/lang/ru_ru.json @@ -173,40 +173,40 @@ "block.terrestria.stripped_sakura_log": "Обтёсанное бревно сакуры", "block.terrestria.cattail": "Рогоз", "block.terrestria.tall_cattail": "Высокий рогоз", - "block.terrestria.basalt": "Базальт", - "block.terrestria.basalt_slab": "Базальтовая плита", - "block.terrestria.basalt_stairs": "Базальтовые ступеньки", - "block.terrestria.basalt_wall": "Базальтовая ограда", - "block.terrestria.smooth_basalt": "Гладкий базальт", - "block.terrestria.smooth_basalt_slab": "Плита из гладкого базальта", - "block.terrestria.smooth_basalt_stairs": "Ступеньки из гладкого базальта", - "block.terrestria.smooth_basalt_wall": "Ограда из гладкого базальта", - "block.terrestria.basalt_cobblestone": "Базальтовый булыжник", - "block.terrestria.basalt_cobblestone_slab": "Плита из базальтового булыжника", - "block.terrestria.basalt_cobblestone_stairs": "Ступеньки из базальтового булыжника", - "block.terrestria.basalt_cobblestone_wall": "Ограда из базальтового булыжника", - "block.terrestria.mossy_basalt_cobblestone": "Замшелый базальтовый булыжник", - "block.terrestria.mossy_basalt_cobblestone_slab": "Плита из замшелого базальтового булыжника", - "block.terrestria.mossy_basalt_cobblestone_stairs": "Ступеньки из замшелого базальтового булыжника", - "block.terrestria.mossy_basalt_cobblestone_wall": "Ограда из замшелого базальтового булыжника", - "block.terrestria.basalt_bricks": "Базальтовые кирпичи", - "block.terrestria.basalt_brick_slab": "Плита из базальтового кирпича", - "block.terrestria.basalt_brick_stairs": "Ступеньки из базальтового кирпича", - "block.terrestria.basalt_brick_wall": "Ограда из базальтового кирпича", - "block.terrestria.mossy_basalt_bricks": "Замшелые базальтовые кирпичи", - "block.terrestria.mossy_basalt_brick_slab": "Плита из замшелого базальтового кирпича", - "block.terrestria.mossy_basalt_brick_stairs": "Ступеньки из замшелого базальтового кирпича", - "block.terrestria.mossy_basalt_brick_wall": "Ограда из замшелого базальтового кирпича", - "block.terrestria.basalt_button": "Базальтовая кнопка", - "block.terrestria.basalt_pressure_plate": "Базальтовая нажимная плита", - "block.terrestria.chiseled_basalt_bricks": "Резные базальтовые кирпичи", - "block.terrestria.cracked_basalt_bricks": "Потрескавшиеся базальтовые кирпичи", - "block.terrestria.basalt_grass_block": "Базальтовый дёрн", - "block.terrestria.basalt_grass_path": "Базальтовая тропа", - "block.terrestria.basalt_sand": "Чёрный песок", - "block.terrestria.basalt_dirt": "Базальтовая земля", - "block.terrestria.basalt_podzol": "Базальтовый подзол", + "block.terrestria.volcanic_rock": "Базальт", + "block.terrestria.volcanic_rock_slab": "Базальтовая плита", + "block.terrestria.volcanic_rock_stairs": "Базальтовые ступеньки", + "block.terrestria.volcanic_rock_wall": "Базальтовая ограда", + "block.terrestria.smooth_volcanic_rock": "Гладкий базальт", + "block.terrestria.smooth_volcanic_rock_slab": "Плита из гладкого базальта", + "block.terrestria.smooth_volcanic_rock_stairs": "Ступеньки из гладкого базальта", + "block.terrestria.smooth_volcanic_rock_wall": "Ограда из гладкого базальта", + "block.terrestria.volcanic_rock_cobblestone": "Базальтовый булыжник", + "block.terrestria.volcanic_rock_cobblestone_slab": "Плита из базальтового булыжника", + "block.terrestria.volcanic_rock_cobblestone_stairs": "Ступеньки из базальтового булыжника", + "block.terrestria.volcanic_rock_cobblestone_wall": "Ограда из базальтового булыжника", + "block.terrestria.mossy_volcanic_rock_cobblestone": "Замшелый базальтовый булыжник", + "block.terrestria.mossy_volcanic_rock_cobblestone_slab": "Плита из замшелого базальтового булыжника", + "block.terrestria.mossy_volcanic_rock_cobblestone_stairs": "Ступеньки из замшелого базальтового булыжника", + "block.terrestria.mossy_volcanic_rock_cobblestone_wall": "Ограда из замшелого базальтового булыжника", + "block.terrestria.volcanic_rock_bricks": "Базальтовые кирпичи", + "block.terrestria.volcanic_rock_brick_slab": "Плита из базальтового кирпича", + "block.terrestria.volcanic_rock_brick_stairs": "Ступеньки из базальтового кирпича", + "block.terrestria.volcanic_rock_brick_wall": "Ограда из базальтового кирпича", + "block.terrestria.mossy_volcanic_rock_bricks": "Замшелые базальтовые кирпичи", + "block.terrestria.mossy_volcanic_rock_brick_slab": "Плита из замшелого базальтового кирпича", + "block.terrestria.mossy_volcanic_rock_brick_stairs": "Ступеньки из замшелого базальтового кирпича", + "block.terrestria.mossy_volcanic_rock_brick_wall": "Ограда из замшелого базальтового кирпича", + "block.terrestria.volcanic_rock_button": "Базальтовая кнопка", + "block.terrestria.volcanic_rock_pressure_plate": "Базальтовая нажимная плита", + "block.terrestria.chiseled_volcanic_rock_bricks": "Резные базальтовые кирпичи", + "block.terrestria.cracked_volcanic_rock_bricks": "Потрескавшиеся базальтовые кирпичи", + "block.terrestria.volcanic_sand": "Чёрный песок", + "block.terrestria.andisol": "Базальтовая земля", + "block.terrestria.andisol_dirt_path": "Базальтовая тропа", "block.terrestria.andisol_farmland": "Андизоловая пашня", + "block.terrestria.andisol_grass_block": "Базальтовый дёрн", + "block.terrestria.andisol_podzol": "Базальтовый подзол", "block.terrestria.indian_paintbrush": "Индийская кисть", "block.terrestria.monsteras": "Монстерос", "block.terrestria.potted_indian_paintbrush": "Индийская кисть в горшке", @@ -275,227 +275,6 @@ "item.terrestria.yucca_palm_boat": "Лодка из юкки пальмовой", "item.terrestria.yucca_palm_chest_boat": "Грузовая лодка из юкки пальмовой", - "item.terrestria.redwood_log": "Бревно секвойи", - "item.terrestria.redwood_wood": "Секвойя", - "item.terrestria.redwood_quarter_log": "Бревно секвойи", - "item.terrestria.redwood_sapling": "Саженец секвойи", - "item.terrestria.redwood_leaves": "Хвоя секвойи", - "item.terrestria.redwood_planks": "Доски из секвойи", - "item.terrestria.redwood_slab": "Плита из секвойи", - "item.terrestria.redwood_stairs": "Ступеньки из секвойи", - "item.terrestria.redwood_fence": "Забор из секвойи", - "item.terrestria.redwood_fence_gate": "Калитка из секвойи", - "item.terrestria.redwood_door": "Дверь из секвойи", - "item.terrestria.redwood_pressure_plate": "Нажимная плита из секвойи", - "item.terrestria.redwood_button": "Кнопка из секвойи", - "item.terrestria.redwood_sign": "Табличка из секвойи", - "item.terrestria.redwood_trapdoor": "Люк из секвойи", - "item.terrestria.stripped_redwood_wood": "Обтёсанная древесина секвойи", - "item.terrestria.stripped_redwood_log": "Обтёсанное бревно секвойи", - "item.terrestria.stripped_redwood_quarter_log": "Обтёсанное бревно секвойи", - "item.terrestria.hemlock_log": "Бревно тсуги", - "item.terrestria.hemlock_wood": "Тсуга", - "item.terrestria.hemlock_quarter_log": "Бревно тсуги", - "item.terrestria.hemlock_sapling": "Саженец тсуги", - "item.terrestria.hemlock_leaves": "Хвоя тсуги", - "item.terrestria.hemlock_planks": "Доски из тсуги", - "item.terrestria.hemlock_slab": "Плита из тсуги", - "item.terrestria.hemlock_stairs": "Ступеньки из тсуги", - "item.terrestria.hemlock_fence": "Забор из тсуги", - "item.terrestria.hemlock_fence_gate": "Калитка из тсуги", - "item.terrestria.hemlock_door": "Дверь из тсуги", - "item.terrestria.hemlock_pressure_plate": "Нажимная плита из тсуги", - "item.terrestria.hemlock_button": "Кнопка из тсуги", - "item.terrestria.hemlock_sign": "Табличка из тсуги", - "item.terrestria.hemlock_trapdoor": "Люк из тсуги", - "item.terrestria.stripped_hemlock_wood": "Обтёсанная древесина тсуги", - "item.terrestria.stripped_hemlock_log": "Обтёсанное бревно тсуги", - "item.terrestria.stripped_hemlock_quarter_log": "Обтёсанное бревно тсуги", - "item.terrestria.jungle_palm_sapling": "Саженец пальмы", - "item.terrestria.jungle_palm_leaves": "Листья пальмы", - "item.terrestria.rubber_log": "Бревно гевеи", - "item.terrestria.rubber_wood": "Гевея", - "item.terrestria.rubber_sapling": "Саженец гевеи", - "item.terrestria.rubber_leaves": "Листья гевеи", - "item.terrestria.rubber_planks": "Доски из гевеи", - "item.terrestria.rubber_slab": "Плита из гевеи", - "item.terrestria.rubber_stairs": "Ступеньки из гевеи", - "item.terrestria.rubber_fence": "Забор из гевеи", - "item.terrestria.rubber_fence_gate": "Калитка из гевеи", - "item.terrestria.rubber_door": "Дверь из гевеи", - "item.terrestria.rubber_pressure_plate": "Нажимная плита из гевеи", - "item.terrestria.rubber_button": "Кнопка из гевеи", - "item.terrestria.rubber_sign": "Табличка из гевеи", - "item.terrestria.rubber_trapdoor": "Люк из гевеи", - "item.terrestria.stripped_rubber_wood": "Обтёсанная древесина гевеи", - "item.terrestria.stripped_rubber_log": "Обтёсанное бревно гевеи", - "item.terrestria.cypress_log": "Бревно кипариса", - "item.terrestria.cypress_wood": "Кипарис", - "item.terrestria.cypress_quarter_log": "Бревно кипариса", - "item.terrestria.cypress_sapling": "Саженец кипариса", - "item.terrestria.cypress_leaves": "Листья кипариса", - "item.terrestria.cypress_planks": "Доски из кипариса", - "item.terrestria.cypress_slab": "Плита из кипариса", - "item.terrestria.cypress_stairs": "Ступеньки из кипариса", - "item.terrestria.cypress_fence": "Забор из кипариса", - "item.terrestria.cypress_fence_gate": "Калитка из кипариса", - "item.terrestria.cypress_door": "Дверь из кипариса", - "item.terrestria.cypress_pressure_plate": "Нажимная плита из кипариса", - "item.terrestria.cypress_button": "Кнопка из кипариса", - "item.terrestria.cypress_sign": "Табличка из кипариса", - "item.terrestria.cypress_trapdoor": "Люк из кипариса", - "item.terrestria.stripped_cypress_wood": "Обтёсанное древесина кипариса", - "item.terrestria.stripped_cypress_log": "Обтёсанное бревно кипариса", - "item.terrestria.stripped_cypress_quarter_log": "Обтёсанное бревно кипариса", - "item.terrestria.willow_log": "Бревно ивы", - "item.terrestria.willow_wood": "Ива", - "item.terrestria.willow_sapling": "Саженец ивы", - "item.terrestria.willow_leaves": "Листья ивы", - "item.terrestria.willow_planks": "Доски из ивы", - "item.terrestria.willow_slab": "Плита из ивы", - "item.terrestria.willow_stairs": "Ступеньки из ивы", - "item.terrestria.willow_fence": "Забор из ивы", - "item.terrestria.willow_fence_gate": "Калитка из ивы", - "item.terrestria.willow_door": "Дверь из ивы", - "item.terrestria.willow_pressure_plate": "Нажимная плита из ивы", - "item.terrestria.willow_button": "Кнопка из ивы", - "item.terrestria.willow_sign": "Табличка из ивы", - "item.terrestria.willow_trapdoor": "Люк из ивы", - "item.terrestria.stripped_willow_wood": "Обтёсанное бревно ивы", - "item.terrestria.stripped_willow_log": "Обтёсанная древесина ивы", - "item.terrestria.japanese_maple_log": "Бревно японского клёна", - "item.terrestria.japanese_maple_wood": "Японский клён", - "item.terrestria.japanese_maple_sapling": "Саженец японского клёна", - "item.terrestria.japanese_maple_leaves": "Листья японского клёна", - "item.terrestria.japanese_maple_planks": "Доски из японского клёна", - "item.terrestria.japanese_maple_slab": "Плита из японского клёна", - "item.terrestria.japanese_maple_stairs": "Ступеньки из японского клёна", - "item.terrestria.japanese_maple_fence": "Забор из японского клёна", - "item.terrestria.japanese_maple_fence_gate": "Калитка из японского клёна", - "item.terrestria.japanese_maple_door": "Дверь из японского клёна", - "item.terrestria.japanese_maple_pressure_plate": "Нажимная плита из японского клёна", - "item.terrestria.japanese_maple_button": "Кнопка из японского клёна", - "item.terrestria.japanese_maple_sign": "Табличка из японского клёна", - "item.terrestria.japanese_maple_trapdoor": "Люк из японского клёна", - "item.terrestria.stripped_japanese_maple_wood": "Обтёсанная древесина японского клёна", - "item.terrestria.stripped_japanese_maple_log": "Обтёсанное бревно японского клёна", - "item.terrestria.dark_japanese_maple_leaves": "Листья тёмного японского клёна", - "item.terrestria.dark_japanese_maple_sapling": "Саженец тёмного японского клёна", - "item.terrestria.rainbow_eucalyptus_log": "Бревно радужного эвкалипта", - "item.terrestria.rainbow_eucalyptus_wood": "Радужный эвкалипт", - "item.terrestria.rainbow_eucalyptus_quarter_log": "Бревно радужного эвкалипта", - "item.terrestria.rainbow_eucalyptus_sapling": "Саженец радужного эвкалипта", - "item.terrestria.rainbow_eucalyptus_leaves": "Листья радужного эвкалипта", - "item.terrestria.rainbow_eucalyptus_planks": "Доски из радужного эвкалипта", - "item.terrestria.rainbow_eucalyptus_slab": "Плита из радужного эвкалипта", - "item.terrestria.rainbow_eucalyptus_stairs": "Ступеньки из радужного эвкалипта", - "item.terrestria.rainbow_eucalyptus_fence": "Забор из радужного эвкалипта", - "item.terrestria.rainbow_eucalyptus_fence_gate": "Калитка из радужного эвкалипта", - "item.terrestria.rainbow_eucalyptus_door": "Дверь из радужного эвкалипта", - "item.terrestria.rainbow_eucalyptus_pressure_plate": "Нажимная плита из радужного эвкалипта", - "item.terrestria.rainbow_eucalyptus_button": "Кнопка из радужного эвкалипта", - "item.terrestria.rainbow_eucalyptus_sign": "Табличка из радужного эвкалипта", - "item.terrestria.rainbow_eucalyptus_trapdoor": "Люк из радужного эвкалипта", - "item.terrestria.stripped_rainbow_eucalyptus_wood": "Обтёсанная древесина радужного эвкалипта", - "item.terrestria.stripped_rainbow_eucalyptus_log": "Обтёсанное бревно радужного эвкалипта", - "item.terrestria.stripped_rainbow_eucalyptus_quarter_log": "Обтёсанное бревно радужного эвкалипта", - "item.terrestria.sakura_log": "Бревно сакуры", - "item.terrestria.sakura_sapling": "Саженец сакуры", - "item.terrestria.sakura_leaves": "Листья сакуры", - "item.terrestria.sakura_leaf_pile": "Охапка листьев сакуры", - "item.terrestria.sakura_planks": "Доски из сакуры", - "item.terrestria.sakura_slab": "Плита из сакуры", - "item.terrestria.sakura_stairs": "Ступеньки из сакуры", - "item.terrestria.sakura_fence": "Забор из сакуры", - "item.terrestria.sakura_fence_gate": "Калитка из сакуры", - "item.terrestria.sakura_door": "Дверь из сакуры", - "item.terrestria.sakura_pressure_plate": "Нажимная плита из сакуры", - "item.terrestria.sakura_button": "Кнопка из сакуры", - "item.terrestria.sakura_sign": "Табличка из сакуры", - "item.terrestria.sakura_trapdoor": "Люк из сакуры", - "item.terrestria.stripped_sakura_wood": "Обтёсанная древесина сакуры", - "item.terrestria.stripped_sakura_log": "Обтёсанное бревно сакуры", - "item.terrestria.cattail": "Рогоз", - "item.terrestria.tall_cattail": "Высокий рогоз", - "item.terrestria.basalt": "Базальт", - "item.terrestria.basalt_slab": "Базальтовая плита", - "item.terrestria.basalt_stairs": "Базальтовые ступеньки", - "item.terrestria.basalt_wall": "Базальтовая ограда", - "item.terrestria.smooth_basalt": "Гладкий базальт", - "item.terrestria.smooth_basalt_slab": "Плита из гладкого базальта", - "item.terrestria.smooth_basalt_stairs": "Ступеньки из гладкого базальта", - "item.terrestria.smooth_basalt_wall": "Ограда из гладкого базальта", - "item.terrestria.basalt_cobblestone": "Базальтовый булыжник", - "item.terrestria.basalt_cobblestone_slab": "Плита из базальтового булыжника", - "item.terrestria.basalt_cobblestone_stairs": "Ступеньки из базальтового булыжника", - "item.terrestria.basalt_cobblestone_wall": "Ограда из базальтового булыжника", - "item.terrestria.mossy_basalt_cobblestone": "Замшелый базальтовый булыжник", - "item.terrestria.mossy_basalt_cobblestone_slab": "Плита из замшелого базальтового булыжника", - "item.terrestria.mossy_basalt_cobblestone_stairs": "Ступеньки из замшелого базальтового булыжника", - "item.terrestria.mossy_basalt_cobblestone_wall": "Ограда из замшелого базальтового булыжника", - "item.terrestria.basalt_bricks": "Базальтовые кирпичи", - "item.terrestria.basalt_brick_slab": "Плита из базальтового кирпича", - "item.terrestria.basalt_brick_stairs": "Ступеньки из базальтового кирпича", - "item.terrestria.basalt_brick_wall": "Ограда из базальтового кирпича", - "item.terrestria.mossy_basalt_bricks": "Замшелые базальтовые кирпичи", - "item.terrestria.mossy_basalt_brick_slab": "Плита из замшелого базальтового кирпича", - "item.terrestria.mossy_basalt_brick_stairs": "Ступеньки из замшелого базальтового кирпича", - "item.terrestria.mossy_basalt_brick_wall": "Ограда из замшелого базальтового кирпича", - "item.terrestria.basalt_button": "Базальтовая кнопка", - "item.terrestria.basalt_pressure_plate": "Базальтовая нажимная плита", - "item.terrestria.chiseled_basalt_bricks": "Резные базальтовые кирпичи", - "item.terrestria.cracked_basalt_bricks": "Потрескавшиеся базальтовые кирпичи", - "item.terrestria.basalt_grass_block": "Базальтовый дёрн", - "item.terrestria.basalt_grass_path": "Базальтовая тропа", - "item.terrestria.basalt_sand": "Чёрный песок", - "item.terrestria.basalt_dirt": "Базальтовая земля", - "item.terrestria.basalt_podzol": "Базальтовый подзол", - "item.terrestria.andisol_farmland": "Андизоловая пашня", - "item.terrestria.indian_paintbrush": "Индийская кисть", - "item.terrestria.monsteras": "Монстерос", - "item.terrestria.potted_indian_paintbrush": "Индийская кисть в горшке", - "item.terrestria.potted_monsteras": "Монстерос в горшке", - "item.terrestria.japanese_maple_shrub_sapling": "Саженец куста японского клёна", - "item.terrestria.japanese_maple_shrub_leaves": "Листья куста японского клёна", - "item.terrestria.potted_redwood_sapling": "Саженец секвойи в горшке", - "item.terrestria.potted_hemlock_sapling": "Саженец тсуги в горшке", - "item.terrestria.potted_rubber_sapling": "Саженец гевеи в горшке", - "item.terrestria.potted_cypress_sapling": "Саженец кипариса в горшке", - "item.terrestria.potted_willow_sapling": "Саженец ивы в горшке", - "item.terrestria.potted_japanese_maple_sapling": "Саженец японского клёна в горшке", - "item.terrestria.potted_dark_japanese_maple_sapling": "Саженец тёмного японского клёна в горшке", - "item.terrestria.potted_rainbow_eucalyptus_sapling": "Саженец радужного эвкалипта в горшке", - "item.terrestria.potted_sakura_sapling": "Саженец сакуры в горшке", - "item.terrestria.potted_jungle_palm_sapling": "Саженец пальмы в горшке", - "item.terrestria.potted_japanese_maple_shrub_sapling": "Саженец куста японского клёна в горшке", - "item.terrestria.potted_saguaro_cactus_sapling": "Саженец кактуса сагуаро в горшке", - "item.terrestria.agave": "Агава", - "item.terrestria.tiny_cactus": "Крошечный кактус", - "item.terrestria.aloe_vera": "Алоэ вера", - "item.terrestria.dead_grass": "Мертвая трава", - "item.terrestria.potted_agave": "Агава в горшке", - "item.terrestria.potted_tiny_cactus": "Крошечный кактус в горшке", - "item.terrestria.potted_aloe_vera": "Алоэ вера в горшке", - "item.terrestria.yucca_palm_log": "Бревно юкки пальмовой", - "item.terrestria.yucca_palm_leaves": "Листья юкки пальмовой", - "item.terrestria.yucca_palm_planks": "Доски из юкки пальмовой", - "item.terrestria.yucca_palm_slab": "Плита из юкки пальмовой", - "item.terrestria.yucca_palm_stairs": "Ступеньки из юкки пальмовой", - "item.terrestria.yucca_palm_fence": "Забор из юкки пальмовой", - "item.terrestria.yucca_palm_fence_gate": "Калитка из юкки пальмовой", - "item.terrestria.yucca_palm_door": "Дверь из юкки пальмовой", - "item.terrestria.yucca_palm_button": "Кнопка из юкки пальмовой", - "item.terrestria.yucca_palm_pressure_plate": "Нажимная плита из юкки пальмовой", - "item.terrestria.yucca_palm_trapdoor": "Люк из юкки пальмовой", - "item.terrestria.yucca_palm_sign": "Табличка из юкки пальмовой", - "item.terrestria.stripped_yucca_palm_log": "Обтёсанное бревно юкки пальмовой", - "item.terrestria.small_oak_log": "Тонкое дубовое бревно", - "item.terrestria.stripped_small_oak_log": "Обтёсанное тонкое дубовое бревно", - "item.terrestria.saguaro_cactus": "Кактус сагуаро", - "item.terrestria.bryce_sapling": "Саженец дерева брайс", - "item.terrestria.saguaro_cactus_sapling": "Саженец кактуса сагуаро", - "item.terrestria.yucca_palm_sapling": "Саженец юкки пальмовой", - "tag.item.terrestria.cypress_logs": "Брёвна кипариса", "tag.item.terrestria.hemlock_logs": "Брёвна тсуги", "tag.item.terrestria.japanese_maple_logs": "Брёвна японского клёна", diff --git a/client/src/main/resources/assets/terrestria/lang/uk_ua.json b/client/src/main/resources/assets/terrestria/lang/uk_ua.json index a213bebc..978c9346 100644 --- a/client/src/main/resources/assets/terrestria/lang/uk_ua.json +++ b/client/src/main/resources/assets/terrestria/lang/uk_ua.json @@ -170,40 +170,40 @@ "block.terrestria.stripped_sakura_log": "Обтесана сакурова колода", "block.terrestria.cattail": "Рогіз", "block.terrestria.tall_cattail": "Високий рогіз", - "block.terrestria.basalt": "Вулканічний камінь", - "block.terrestria.basalt_slab": "Плита з вулканічного каменю", - "block.terrestria.basalt_stairs": "Сходи з вулканічного каменю", - "block.terrestria.basalt_wall": "Стіна з вулканічного каменю", - "block.terrestria.smooth_basalt": "Гладкий вулканічний камінь", - "block.terrestria.smooth_basalt_slab": "Плита з гладкого вулканічного каменю", - "block.terrestria.smooth_basalt_stairs": "Сходи з гладкого вулканічного каменю", - "block.terrestria.smooth_basalt_wall": "Стіна з гладкого вулканічного каменю", - "block.terrestria.basalt_cobblestone": "Вулканічний кругляк", - "block.terrestria.basalt_cobblestone_slab": "Плита з вулканічного кругляку", - "block.terrestria.basalt_cobblestone_stairs": "Сходи з вулканічного кругляку", - "block.terrestria.basalt_cobblestone_wall": "Стіна з вулканічного кругляку", - "block.terrestria.mossy_basalt_cobblestone": "Моховитий вулканічний кругляк", - "block.terrestria.mossy_basalt_cobblestone_slab": "Плита з моховитого вулканічного кругляку", - "block.terrestria.mossy_basalt_cobblestone_stairs": "Сходи з моховитого вулканічного кругляку", - "block.terrestria.mossy_basalt_cobblestone_wall": "Стіна з моховитого вулканічного кругляку", - "block.terrestria.basalt_bricks": "Вулканічна кам'яна цегла", - "block.terrestria.basalt_brick_slab": "Плита з вулканічної кам'яної цегли", - "block.terrestria.basalt_brick_stairs": "Сходи з вулканічної кам'яної цегли", - "block.terrestria.basalt_brick_wall": "Стіна з вулканічної кам'яної цегли", - "block.terrestria.mossy_basalt_bricks": "Моховита вулканічна кам'яна цегла", - "block.terrestria.mossy_basalt_brick_slab": "Плита з моховитої вулканічної кам'яної цегли", - "block.terrestria.mossy_basalt_brick_stairs": "Сходи з моховитої вулканічної кам'яної цегли", - "block.terrestria.mossy_basalt_brick_wall": "Стіна з моховитої вулканічної кам'яної цегли", - "block.terrestria.basalt_button": "Кнопка з вулканічної цегли", - "block.terrestria.basalt_pressure_plate": "Натискна плита з вулканічної цегли", - "block.terrestria.chiseled_basalt_bricks": "Різьблена вулканічна кам'яна цегла", - "block.terrestria.cracked_basalt_bricks": "Тріснута вулканічна кам'яна цегла", - "block.terrestria.basalt_grass_block": "Трав'янистий андизол", - "block.terrestria.basalt_grass_path": "Андизолова стежка", - "block.terrestria.basalt_sand": "Чорний пісок", - "block.terrestria.basalt_dirt": "Андизол", - "block.terrestria.basalt_podzol": "Андизоловий підзол", + "block.terrestria.volcanic_rock": "Вулканічний камінь", + "block.terrestria.volcanic_rock_slab": "Плита з вулканічного каменю", + "block.terrestria.volcanic_rock_stairs": "Сходи з вулканічного каменю", + "block.terrestria.volcanic_rock_wall": "Стіна з вулканічного каменю", + "block.terrestria.smooth_volcanic_rock": "Гладкий вулканічний камінь", + "block.terrestria.smooth_volcanic_rock_slab": "Плита з гладкого вулканічного каменю", + "block.terrestria.smooth_volcanic_rock_stairs": "Сходи з гладкого вулканічного каменю", + "block.terrestria.smooth_volcanic_rock_wall": "Стіна з гладкого вулканічного каменю", + "block.terrestria.volcanic_rock_cobblestone": "Вулканічний кругляк", + "block.terrestria.volcanic_rock_cobblestone_slab": "Плита з вулканічного кругляку", + "block.terrestria.volcanic_rock_cobblestone_stairs": "Сходи з вулканічного кругляку", + "block.terrestria.volcanic_rock_cobblestone_wall": "Стіна з вулканічного кругляку", + "block.terrestria.mossy_volcanic_rock_cobblestone": "Моховитий вулканічний кругляк", + "block.terrestria.mossy_volcanic_rock_cobblestone_slab": "Плита з моховитого вулканічного кругляку", + "block.terrestria.mossy_volcanic_rock_cobblestone_stairs": "Сходи з моховитого вулканічного кругляку", + "block.terrestria.mossy_volcanic_rock_cobblestone_wall": "Стіна з моховитого вулканічного кругляку", + "block.terrestria.volcanic_rock_bricks": "Вулканічна кам'яна цегла", + "block.terrestria.volcanic_rock_brick_slab": "Плита з вулканічної кам'яної цегли", + "block.terrestria.volcanic_rock_brick_stairs": "Сходи з вулканічної кам'яної цегли", + "block.terrestria.volcanic_rock_brick_wall": "Стіна з вулканічної кам'яної цегли", + "block.terrestria.mossy_volcanic_rock_bricks": "Моховита вулканічна кам'яна цегла", + "block.terrestria.mossy_volcanic_rock_brick_slab": "Плита з моховитої вулканічної кам'яної цегли", + "block.terrestria.mossy_volcanic_rock_brick_stairs": "Сходи з моховитої вулканічної кам'яної цегли", + "block.terrestria.mossy_volcanic_rock_brick_wall": "Стіна з моховитої вулканічної кам'яної цегли", + "block.terrestria.volcanic_rock_button": "Кнопка з вулканічної цегли", + "block.terrestria.volcanic_rock_pressure_plate": "Натискна плита з вулканічної цегли", + "block.terrestria.chiseled_volcanic_rock_bricks": "Різьблена вулканічна кам'яна цегла", + "block.terrestria.cracked_volcanic_rock_bricks": "Тріснута вулканічна кам'яна цегла", + "block.terrestria.volcanic_sand": "Чорний пісок", + "block.terrestria.andisol": "Андизол", + "block.terrestria.andisol_dirt_path": "Андизолова стежка", "block.terrestria.andisol_farmland": "Андизолова рілля", + "block.terrestria.andisol_grass_block": "Трав'янистий андизол", + "block.terrestria.andisol_podzol": "Андизоловий підзол", "block.terrestria.indian_paintbrush": "Кастилея", "block.terrestria.monsteras": "Монстери", "block.terrestria.potted_indian_paintbrush": "Кастилея в горщику", @@ -273,237 +273,5 @@ "item.terrestria.willow_boat": "Вербовий човен", "item.terrestria.willow_chest_boat": "Вербовий човен зі скринею", "item.terrestria.yucca_palm_boat": "Човен з пальми юки", - "item.terrestria.yucca_palm_chest_boat": "Човен з пальми юки зі скринею", - - "item.terrestria.redwood_log": "Колода секвої", - "item.terrestria.redwood_wood": "Деревина секвої", - "item.terrestria.redwood_quarter_log": "Четверть колоди секвої", - "item.terrestria.redwood_sapling": "Паросток секвої", - "item.terrestria.redwood_leaves": "Листя секвої", - "item.terrestria.redwood_planks": "Дошки із секвої", - "item.terrestria.redwood_slab": "Плита із секвої", - "item.terrestria.redwood_stairs": "Сходи із секвої", - "item.terrestria.redwood_fence": "Паркан із секвої", - "item.terrestria.redwood_fence_gate": "Хвіртка із секвої", - "item.terrestria.redwood_door": "Двері із секвої", - "item.terrestria.redwood_pressure_plate": "Натискна плита із секвої", - "item.terrestria.redwood_button": "Кнопка із секвої", - "item.terrestria.redwood_sign": "Табличка із секвої", - "item.terrestria.redwood_hanging_sign": "Вивіска із секвої", - "item.terrestria.redwood_trapdoor": "Люк із секвої", - "item.terrestria.stripped_redwood_wood": "Обтесана деревина секвої", - "item.terrestria.stripped_redwood_log": "Обтесана колода секвої", - "item.terrestria.stripped_redwood_quarter_log": "Чверть обтесаної колоди секвої", - "item.terrestria.hemlock_log": "Колода тсуґи", - "item.terrestria.hemlock_wood": "Деревина тсуґи", - "item.terrestria.hemlock_quarter_log": "Чверть колоди тсуґи", - "item.terrestria.hemlock_sapling": "Паросток тсуґи", - "item.terrestria.hemlock_leaves": "Листя тсуґи", - "item.terrestria.hemlock_planks": "Дошки із тсуґи", - "item.terrestria.hemlock_slab": "Плита із тсуґи", - "item.terrestria.hemlock_stairs": "Сходи із тсуґи", - "item.terrestria.hemlock_fence": "Паркан із тсуґи", - "item.terrestria.hemlock_fence_gate": "Хвіртка із тсуґи", - "item.terrestria.hemlock_door": "Двері із тсуґи", - "item.terrestria.hemlock_pressure_plate": "Натискна плита із тсуґи", - "item.terrestria.hemlock_button": "Кнопка із тсуґи", - "item.terrestria.hemlock_sign": "Табличка із тсуґи", - "item.terrestria.hemlock_hanging_sign": "Вивіска із тсуґи", - "item.terrestria.hemlock_trapdoor": "Люк із тсуґи", - "item.terrestria.stripped_hemlock_wood": "Обтесана деревина тсуґи", - "item.terrestria.stripped_hemlock_log": "Обтесана колода тсуґи", - "item.terrestria.stripped_hemlock_quarter_log": "Чверть обтесаної колоди тсуґи", - "item.terrestria.jungle_palm_sapling": "Паросток тропічної пальми", - "item.terrestria.jungle_palm_leaves": "Листя тропічної пальми", - "item.terrestria.rubber_log": "Колода гевеї", - "item.terrestria.rubber_wood": "Деревина гевеї", - "item.terrestria.rubber_sapling": "Паросток гевеї", - "item.terrestria.rubber_leaves": "Листя гевеї", - "item.terrestria.rubber_planks": "Дошки з гевеї", - "item.terrestria.rubber_slab": "Плита з гевеї", - "item.terrestria.rubber_stairs": "Сходи з гевеї", - "item.terrestria.rubber_fence": "Паркан з гевеї", - "item.terrestria.rubber_fence_gate": "Хвіртка з гевеї", - "item.terrestria.rubber_door": "Двері з гевеї", - "item.terrestria.rubber_pressure_plate": "Натискна плита з гевеї", - "item.terrestria.rubber_button": "Кнопка з гевеї", - "item.terrestria.rubber_sign": "Табличка з гевеї", - "item.terrestria.rubber_hanging_sign": "Вивіска з гевеї", - "item.terrestria.rubber_trapdoor": "Люк з гевеї", - "item.terrestria.stripped_rubber_wood": "Обтесана деревина гевеї", - "item.terrestria.stripped_rubber_log": "Обтесана колода гевеї", - "item.terrestria.cypress_log": "Кипарисова колода", - "item.terrestria.cypress_wood": "Кипарисова деревина", - "item.terrestria.cypress_quarter_log": "Чверть кипарисової колоди", - "item.terrestria.cypress_sapling": "Паросток кипарису", - "item.terrestria.cypress_leaves": "Кипарисове листя", - "item.terrestria.cypress_planks": "Кипарисові дошки", - "item.terrestria.cypress_slab": "Кипарисова плита", - "item.terrestria.cypress_stairs": "Кипарисові сходи", - "item.terrestria.cypress_fence": "Кипарисовий паркан", - "item.terrestria.cypress_fence_gate": "Кипарисова хвіртка", - "item.terrestria.cypress_door": "Кипарисові двері", - "item.terrestria.cypress_pressure_plate": "Кипарисова натискна плита", - "item.terrestria.cypress_button": "Кипарисова кнопка", - "item.terrestria.cypress_sign": "Кипарисова табличка", - "item.terrestria.cypress_hanging_sign": "Кипарисова вивіска", - "item.terrestria.cypress_trapdoor": "Кипарисовий люк", - "item.terrestria.stripped_cypress_wood": "Обтесана кипарисова деревина", - "item.terrestria.stripped_cypress_log": "Обтесана кипарисова колода", - "item.terrestria.stripped_cypress_quarter_log": "Чверть обтесаної кипарисової колоди", - "item.terrestria.willow_log": "Вербова колода", - "item.terrestria.willow_wood": "Вербова деревина", - "item.terrestria.willow_sapling": "Паросток верби", - "item.terrestria.willow_leaves": "Вербове листя", - "item.terrestria.willow_planks": "Вербові дошки", - "item.terrestria.willow_slab": "Вербова плита", - "item.terrestria.willow_stairs": "Вербові сходи", - "item.terrestria.willow_fence": "Вербовий паркан", - "item.terrestria.willow_fence_gate": "Вербова хвіртка", - "item.terrestria.willow_door": "Вербові двері", - "item.terrestria.willow_pressure_plate": "Вербова натискна плита", - "item.terrestria.willow_button": "Вербова кнопка", - "item.terrestria.willow_sign": "Вербова табличка", - "item.terrestria.willow_hanging_sign": "Вербова вивіска", - "item.terrestria.willow_trapdoor": "Вербовий люк", - "item.terrestria.stripped_willow_wood": "Обтесана вербова деревина", - "item.terrestria.stripped_willow_log": "Обтесана вербова колода", - "item.terrestria.japanese_maple_log": "Колода японського клена", - "item.terrestria.japanese_maple_wood": "Деревина японського клена", - "item.terrestria.japanese_maple_sapling": "Паросток японського клена", - "item.terrestria.japanese_maple_leaves": "Листя японського клена", - "item.terrestria.japanese_maple_planks": "Дошки з японського клена", - "item.terrestria.japanese_maple_slab": "Плита з японського клена", - "item.terrestria.japanese_maple_stairs": "Сходи з японського клена", - "item.terrestria.japanese_maple_fence": "Паркан з японського клена", - "item.terrestria.japanese_maple_fence_gate": "Хвіртка з японського клена", - "item.terrestria.japanese_maple_door": "Двері з японського клена", - "item.terrestria.japanese_maple_pressure_plate": "Натискна плита з японського клена", - "item.terrestria.japanese_maple_button": "Кнопка з японського клена", - "item.terrestria.japanese_maple_sign": "Табличка з японського клена", - "item.terrestria.japanese_maple_hanging_sign": "Вивіска з японського клена", - "item.terrestria.japanese_maple_trapdoor": "Люк з японського клена", - "item.terrestria.stripped_japanese_maple_wood": "Обтесана деревина японського клена", - "item.terrestria.stripped_japanese_maple_log": "Обтесана колода японського клена", - "item.terrestria.dark_japanese_maple_leaves": "Листя темного японського клена", - "item.terrestria.dark_japanese_maple_sapling": "Паросток темного японського клена", - "item.terrestria.rainbow_eucalyptus_log": "Веселково-евкаліптова колода", - "item.terrestria.rainbow_eucalyptus_wood": "Веселково-евкаліптова деревина", - "item.terrestria.rainbow_eucalyptus_quarter_log": "Чверть веселково-евкаліптової колоди", - "item.terrestria.rainbow_eucalyptus_sapling": "Паросток веселкового евкаліпта", - "item.terrestria.rainbow_eucalyptus_leaves": "Веселково-евкаліптове листя", - "item.terrestria.rainbow_eucalyptus_planks": "Веселково-евкаліптові дошки", - "item.terrestria.rainbow_eucalyptus_slab": "Веселково-евкаліптова плита", - "item.terrestria.rainbow_eucalyptus_stairs": "Веселково-евкаліптові сходи", - "item.terrestria.rainbow_eucalyptus_fence": "Веселково-евкаліптовий паркан", - "item.terrestria.rainbow_eucalyptus_fence_gate": "Веселково-евкаліптова хвіртка", - "item.terrestria.rainbow_eucalyptus_door": "Веселково-евкаліптові двері", - "item.terrestria.rainbow_eucalyptus_pressure_plate": "Веселково-евкаліптова натискна плита", - "item.terrestria.rainbow_eucalyptus_button": "Веселково-евкаліптова кнопка", - "item.terrestria.rainbow_eucalyptus_sign": "Веселково-евкаліптова табличка", - "item.terrestria.rainbow_eucalyptus_hanging_sign": "Веселково-евкаліптова вивіска", - "item.terrestria.rainbow_eucalyptus_trapdoor": "Веселково-евкаліптовий люк", - "item.terrestria.stripped_rainbow_eucalyptus_wood": "Обтесана веселково-евкаліптова деревина", - "item.terrestria.stripped_rainbow_eucalyptus_log": "Обтесана веселково-евкаліптова колода", - "item.terrestria.stripped_rainbow_eucalyptus_quarter_log": "Чверть обтесаної веселково-евкаліптової деревини", - "item.terrestria.sakura_log": "Сакурова колода", - "item.terrestria.sakura_sapling": "Паросток сакури", - "item.terrestria.sakura_leaves": "Сакурове листя", - "item.terrestria.sakura_leaf_pile": "Купа сакурового листя", - "item.terrestria.sakura_planks": "Сакурові дошки", - "item.terrestria.sakura_slab": "Сакурова плита", - "item.terrestria.sakura_stairs": "Сакурові сходи", - "item.terrestria.sakura_fence": "Сакуровий паркан", - "item.terrestria.sakura_fence_gate": "Сакурова хвіртка", - "item.terrestria.sakura_door": "Сакурові двері", - "item.terrestria.sakura_pressure_plate": "Сакурова натискна плита", - "item.terrestria.sakura_button": "Сакурова кнопка", - "item.terrestria.sakura_sign": "Сакурова табличка", - "item.terrestria.sakura_hanging_sign": "Сакурова вивіска", - "item.terrestria.sakura_trapdoor": "Сакуровий люк", - "item.terrestria.stripped_sakura_wood": "Обтесана сакурова деревина", - "item.terrestria.stripped_sakura_log": "Обтесана сакурова колода", - "item.terrestria.cattail": "Рогіз", - "item.terrestria.tall_cattail": "Високий рогіз", - "item.terrestria.basalt": "Вулканічний камінь", - "item.terrestria.basalt_slab": "Плита з вулканічного каменю", - "item.terrestria.basalt_stairs": "Сходи з вулканічного каменю", - "item.terrestria.basalt_wall": "Стіна з вулканічного каменю", - "item.terrestria.smooth_basalt": "Гладкий вулканічний камінь", - "item.terrestria.smooth_basalt_slab": "Плита з гладкого вулканічного каменю", - "item.terrestria.smooth_basalt_stairs": "Сходи з гладкого вулканічного каменю", - "item.terrestria.smooth_basalt_wall": "Стіна з гладкого вулканічного каменю", - "item.terrestria.basalt_cobblestone": "Вулканічний кругляк", - "item.terrestria.basalt_cobblestone_slab": "Плита з вулканічного кругляку", - "item.terrestria.basalt_cobblestone_stairs": "Сходи з вулканічного кругляку", - "item.terrestria.basalt_cobblestone_wall": "Стіна з вулканічного кругляку", - "item.terrestria.mossy_basalt_cobblestone": "Моховитий вулканічний кругляк", - "item.terrestria.mossy_basalt_cobblestone_slab": "Плита з моховитого вулканічного кругляку", - "item.terrestria.mossy_basalt_cobblestone_stairs": "Сходи з моховитого вулканічного кругляку", - "item.terrestria.mossy_basalt_cobblestone_wall": "Стіна з моховитого вулканічного кругляку", - "item.terrestria.basalt_bricks": "Вулканічна кам'яна цегла", - "item.terrestria.basalt_brick_slab": "Плита з вулканічної кам'яної цегли", - "item.terrestria.basalt_brick_stairs": "Сходи з вулканічної кам'яної цегли", - "item.terrestria.basalt_brick_wall": "Стіна з вулканічної кам'яної цегли", - "item.terrestria.mossy_basalt_bricks": "Моховита вулканічна кам'яна цегла", - "item.terrestria.mossy_basalt_brick_slab": "Плита з моховитої вулканічної кам'яної цегли", - "item.terrestria.mossy_basalt_brick_stairs": "Сходи з моховитої вулканічної кам'яної цегли", - "item.terrestria.mossy_basalt_brick_wall": "Стіна з моховитої вулканічної кам'яної цегли", - "item.terrestria.basalt_button": "Кнопка з вулканічної цегли", - "item.terrestria.basalt_pressure_plate": "Натискна плита з вулканічної цегли", - "item.terrestria.chiseled_basalt_bricks": "Різьблена вулканічна кам'яна цегла", - "item.terrestria.cracked_basalt_bricks": "Тріснута вулканічна кам'яна цегла", - "item.terrestria.basalt_grass_block": "Трав'янистий андизол", - "item.terrestria.basalt_grass_path": "Андизолова стежка", - "item.terrestria.basalt_sand": "Чорний пісок", - "item.terrestria.basalt_dirt": "Андизол", - "item.terrestria.basalt_podzol": "Андизоловий підзол", - "item.terrestria.andisol_farmland": "Андизолова рілля", - "item.terrestria.indian_paintbrush": "Кастилея", - "item.terrestria.monsteras": "Монстери", - "item.terrestria.potted_indian_paintbrush": "Кастилея в горщику", - "item.terrestria.potted_monsteras": "Монстери у горщику", - "item.terrestria.potted_bryce_sapling": "Паросток каньйонного дерева в горщику", - "item.terrestria.japanese_maple_shrub_sapling": "Паросток куща японського клена", - "item.terrestria.japanese_maple_shrub_leaves": "Листя куща японського клена", - "item.terrestria.potted_redwood_sapling": "Паросток секвої в горщику", - "item.terrestria.potted_hemlock_sapling": "Паросток тсуґи в горщику", - "item.terrestria.potted_rubber_sapling": "Паросток гевеї в горщику", - "item.terrestria.potted_cypress_sapling": "Паросток кипарису в горщику", - "item.terrestria.potted_willow_sapling": "Паросток верби в горщику", - "item.terrestria.potted_japanese_maple_sapling": "Паросток японського клена в горщику", - "item.terrestria.potted_dark_japanese_maple_sapling": "Паросток темного японського клена в горщику", - "item.terrestria.potted_rainbow_eucalyptus_sapling": "Паросток веселкового евкаліпта в горщику", - "item.terrestria.potted_sakura_sapling": "Паросток сакури в горщику", - "item.terrestria.potted_jungle_palm_sapling": "Паросток тропічної пальми в горщику", - "item.terrestria.potted_japanese_maple_shrub_sapling": "Паросток куща японського клена в горщику", - "item.terrestria.potted_saguaro_cactus_sapling": "Паросток кактуса сагуаро в горщику", - "item.terrestria.potted_yucca_palm_sapling": "Паросток пальми юки в горщику", - "item.terrestria.agave": "Агава", - "item.terrestria.tiny_cactus": "Крихітний кактус", - "item.terrestria.aloe_vera": "Алое", - "item.terrestria.dead_grass": "Мертва трава", - "item.terrestria.potted_agave": "Агава в горщику", - "item.terrestria.potted_tiny_cactus": "Крихітний кактус у горщику", - "item.terrestria.potted_aloe_vera": "Алое в горщику", - "item.terrestria.yucca_palm_log": "Колода пальми юки", - "item.terrestria.yucca_palm_leaves": "Листя пальми юки", - "item.terrestria.yucca_palm_planks": "Дошки з пальми юки", - "item.terrestria.yucca_palm_slab": "Плита з пальми юки", - "item.terrestria.yucca_palm_stairs": "Сходи з пальми юки", - "item.terrestria.yucca_palm_fence": "Паркан з пальми юки", - "item.terrestria.yucca_palm_fence_gate": "Хвіртка з пальми юки", - "item.terrestria.yucca_palm_door": "Двері з пальми юки", - "item.terrestria.yucca_palm_button": "Кнопка з пальми юки", - "item.terrestria.yucca_palm_pressure_plate": "Натискна плита з пальми юки", - "item.terrestria.yucca_palm_trapdoor": "Люк з пальми юки", - "item.terrestria.yucca_palm_sign": "Табличка з пальми юки", - "item.terrestria.yucca_palm_hanging_sign": "Вивіска з пальми юки", - "item.terrestria.stripped_yucca_palm_log": "Обтесана колода пальми юки", - "item.terrestria.small_oak_log": "Мала дубова колода", - "item.terrestria.stripped_small_oak_log": "Обтесана мала дубова колода", - "item.terrestria.saguaro_cactus": "Кактус сагуаро", - "item.terrestria.bryce_sapling": "Паросток каньйонного дерева", - "item.terrestria.saguaro_cactus_sapling": "Паросток кактуса сагуаро", - "item.terrestria.yucca_palm_sapling": "Паросток пальми юка" + "item.terrestria.yucca_palm_chest_boat": "Човен з пальми юки зі скринею" } diff --git a/client/src/main/resources/assets/terrestria/lang/zh_cn.json b/client/src/main/resources/assets/terrestria/lang/zh_cn.json index 081f366f..cc6ac05d 100644 --- a/client/src/main/resources/assets/terrestria/lang/zh_cn.json +++ b/client/src/main/resources/assets/terrestria/lang/zh_cn.json @@ -170,40 +170,40 @@ "block.terrestria.stripped_sakura_log": "去皮樱花原木", "block.terrestria.cattail": "猫尾香蒲", "block.terrestria.tall_cattail": "高猫尾香蒲", - "block.terrestria.basalt": "火山岩", - "block.terrestria.basalt_slab": "火山岩台阶", - "block.terrestria.basalt_stairs": "火山岩楼梯", - "block.terrestria.basalt_wall": "火山岩墙", - "block.terrestria.smooth_basalt": "平滑火山岩", - "block.terrestria.smooth_basalt_slab": "平滑火山岩台阶", - "block.terrestria.smooth_basalt_stairs": "平滑火山岩楼梯", - "block.terrestria.smooth_basalt_wall": "平滑火山岩墙", - "block.terrestria.basalt_cobblestone": "火山岩圆石", - "block.terrestria.basalt_cobblestone_slab": "火山岩圆石台阶", - "block.terrestria.basalt_cobblestone_stairs": "火山岩圆石楼梯", - "block.terrestria.basalt_cobblestone_wall": "火山岩圆石墙", - "block.terrestria.mossy_basalt_cobblestone": "覆苔火山岩圆石", - "block.terrestria.mossy_basalt_cobblestone_slab": "覆苔火山岩圆石台阶", - "block.terrestria.mossy_basalt_cobblestone_stairs": "覆苔火山岩圆石楼梯", - "block.terrestria.mossy_basalt_cobblestone_wall": "覆苔火山岩圆石墙", - "block.terrestria.basalt_bricks": "火山岩石砖", - "block.terrestria.basalt_brick_slab": "火山岩石砖台阶", - "block.terrestria.basalt_brick_stairs": "火山岩石砖楼梯", - "block.terrestria.basalt_brick_wall": "火山岩石砖墙", - "block.terrestria.mossy_basalt_bricks": "覆苔火山岩石砖", - "block.terrestria.mossy_basalt_brick_slab": "覆苔火山岩石砖台阶", - "block.terrestria.mossy_basalt_brick_stairs": "覆苔火山岩石砖楼梯", - "block.terrestria.mossy_basalt_brick_wall": "覆苔火山岩石砖墙", - "block.terrestria.basalt_button": "火山岩按钮", - "block.terrestria.basalt_pressure_plate": "火山岩压力板", - "block.terrestria.chiseled_basalt_bricks": "錾制火山岩石砖", - "block.terrestria.cracked_basalt_bricks": "裂纹火山岩石砖", - "block.terrestria.basalt_grass_block": "火山灰土草方块", - "block.terrestria.basalt_grass_path": "火山灰土草径", - "block.terrestria.basalt_sand": "火山砂", - "block.terrestria.basalt_dirt": "火山灰土", - "block.terrestria.basalt_podzol": "灰化火山灰土", + "block.terrestria.volcanic_rock": "火山岩", + "block.terrestria.volcanic_rock_slab": "火山岩台阶", + "block.terrestria.volcanic_rock_stairs": "火山岩楼梯", + "block.terrestria.volcanic_rock_wall": "火山岩墙", + "block.terrestria.smooth_volcanic_rock": "平滑火山岩", + "block.terrestria.smooth_volcanic_rock_slab": "平滑火山岩台阶", + "block.terrestria.smooth_volcanic_rock_stairs": "平滑火山岩楼梯", + "block.terrestria.smooth_volcanic_rock_wall": "平滑火山岩墙", + "block.terrestria.volcanic_rock_cobblestone": "火山岩圆石", + "block.terrestria.volcanic_rock_cobblestone_slab": "火山岩圆石台阶", + "block.terrestria.volcanic_rock_cobblestone_stairs": "火山岩圆石楼梯", + "block.terrestria.volcanic_rock_cobblestone_wall": "火山岩圆石墙", + "block.terrestria.mossy_volcanic_rock_cobblestone": "覆苔火山岩圆石", + "block.terrestria.mossy_volcanic_rock_cobblestone_slab": "覆苔火山岩圆石台阶", + "block.terrestria.mossy_volcanic_rock_cobblestone_stairs": "覆苔火山岩圆石楼梯", + "block.terrestria.mossy_volcanic_rock_cobblestone_wall": "覆苔火山岩圆石墙", + "block.terrestria.volcanic_rock_bricks": "火山岩石砖", + "block.terrestria.volcanic_rock_brick_slab": "火山岩石砖台阶", + "block.terrestria.volcanic_rock_brick_stairs": "火山岩石砖楼梯", + "block.terrestria.volcanic_rock_brick_wall": "火山岩石砖墙", + "block.terrestria.mossy_volcanic_rock_bricks": "覆苔火山岩石砖", + "block.terrestria.mossy_volcanic_rock_brick_slab": "覆苔火山岩石砖台阶", + "block.terrestria.mossy_volcanic_rock_brick_stairs": "覆苔火山岩石砖楼梯", + "block.terrestria.mossy_volcanic_rock_brick_wall": "覆苔火山岩石砖墙", + "block.terrestria.volcanic_rock_button": "火山岩按钮", + "block.terrestria.volcanic_rock_pressure_plate": "火山岩压力板", + "block.terrestria.chiseled_volcanic_rock_bricks": "錾制火山岩石砖", + "block.terrestria.cracked_volcanic_rock_bricks": "裂纹火山岩石砖", + "block.terrestria.volcanic_sand": "火山砂", + "block.terrestria.andisol": "火山灰土", + "block.terrestria.andisol_dirt_path": "火山灰土草径", "block.terrestria.andisol_farmland": "火山灰土耕地", + "block.terrestria.andisol_grass_block": "火山灰土草方块", + "block.terrestria.andisol_podzol": "灰化火山灰土", "block.terrestria.indian_paintbrush": "火焰草", "block.terrestria.monsteras": "龟背竹", "block.terrestria.potted_indian_paintbrush": "火焰草盆栽", @@ -273,237 +273,5 @@ "item.terrestria.willow_boat": "柳木船", "item.terrestria.willow_chest_boat": "柳木运输船", "item.terrestria.yucca_palm_boat": "丝兰棕榈木船", - "item.terrestria.yucca_palm_chest_boat": "丝兰棕榈木运输船", - - "item.terrestria.redwood_log": "红杉原木", - "item.terrestria.redwood_wood": "红杉木", - "item.terrestria.redwood_quarter_log": "1/4红杉原木", - "item.terrestria.redwood_sapling": "红杉树苗", - "item.terrestria.redwood_leaves": "红杉树叶", - "item.terrestria.redwood_planks": "红杉木板", - "item.terrestria.redwood_slab": "红杉木台阶", - "item.terrestria.redwood_stairs": "红杉木楼梯", - "item.terrestria.redwood_fence": "红杉木栅栏", - "item.terrestria.redwood_fence_gate": "红杉木栅栏门", - "item.terrestria.redwood_door": "红杉木门", - "item.terrestria.redwood_pressure_plate": "红杉木压力板", - "item.terrestria.redwood_button": "红杉木按钮", - "item.terrestria.redwood_sign": "红杉木告示牌", - "item.terrestria.redwood_hanging_sign": "悬挂式红衫木告示牌", - "item.terrestria.redwood_trapdoor": "红杉木活板门", - "item.terrestria.stripped_redwood_wood": "去皮红杉木", - "item.terrestria.stripped_redwood_log": "去皮红杉原木", - "item.terrestria.stripped_redwood_quarter_log": "去皮1/4红杉原木", - "item.terrestria.hemlock_log": "铁杉原木", - "item.terrestria.hemlock_wood": "铁杉木", - "item.terrestria.hemlock_quarter_log": "1/4铁杉原木", - "item.terrestria.hemlock_sapling": "铁杉树苗", - "item.terrestria.hemlock_leaves": "铁杉树叶", - "item.terrestria.hemlock_planks": "铁杉木板", - "item.terrestria.hemlock_slab": "铁杉木台阶", - "item.terrestria.hemlock_stairs": "铁杉木楼梯", - "item.terrestria.hemlock_fence": "铁杉木栅栏", - "item.terrestria.hemlock_fence_gate": "铁杉木栅栏门", - "item.terrestria.hemlock_door": "铁杉木门", - "item.terrestria.hemlock_pressure_plate": "铁杉木压力板", - "item.terrestria.hemlock_button": "铁杉木按钮", - "item.terrestria.hemlock_sign": "铁杉木告示牌", - "item.terrestria.hemlock_hanging_sign": "悬挂式铁杉木告示牌", - "item.terrestria.hemlock_trapdoor": "铁杉木活板门", - "item.terrestria.stripped_hemlock_wood": "去皮铁杉木", - "item.terrestria.stripped_hemlock_log": "去皮铁杉原木", - "item.terrestria.stripped_hemlock_quarter_log": "去皮1/4铁杉原木", - "item.terrestria.jungle_palm_sapling": "丛林棕榈树苗", - "item.terrestria.jungle_palm_leaves": "丛林棕榈树叶", - "item.terrestria.rubber_log": "橡胶原木", - "item.terrestria.rubber_wood": "橡胶木", - "item.terrestria.rubber_sapling": "橡胶树苗", - "item.terrestria.rubber_leaves": "橡胶树叶", - "item.terrestria.rubber_planks": "橡胶木板", - "item.terrestria.rubber_slab": "橡胶木台阶", - "item.terrestria.rubber_stairs": "橡胶木楼梯", - "item.terrestria.rubber_fence": "橡胶木栅栏", - "item.terrestria.rubber_fence_gate": "橡胶木栅栏门", - "item.terrestria.rubber_door": "橡胶木门", - "item.terrestria.rubber_pressure_plate": "橡胶木压力板", - "item.terrestria.rubber_button": "橡胶木按钮", - "item.terrestria.rubber_sign": "橡胶木告示牌", - "item.terrestria.rubber_hanging_sign": "悬挂式橡胶木告示牌", - "item.terrestria.rubber_trapdoor": "橡胶木活板门", - "item.terrestria.stripped_rubber_wood": "去皮橡胶木", - "item.terrestria.stripped_rubber_log": "去皮橡胶原木", - "item.terrestria.cypress_log": "柏木原木", - "item.terrestria.cypress_wood": "柏木", - "item.terrestria.cypress_quarter_log": "1/4柏木原木", - "item.terrestria.cypress_sapling": "柏树树苗", - "item.terrestria.cypress_leaves": "柏树树叶", - "item.terrestria.cypress_planks": "柏木木板", - "item.terrestria.cypress_slab": "柏木台阶", - "item.terrestria.cypress_stairs": "柏木楼梯", - "item.terrestria.cypress_fence": "柏木栅栏", - "item.terrestria.cypress_fence_gate": "柏木栅栏门", - "item.terrestria.cypress_door": "柏木门", - "item.terrestria.cypress_pressure_plate": "柏木压力板", - "item.terrestria.cypress_button": "柏木按钮", - "item.terrestria.cypress_sign": "柏木告示牌", - "item.terrestria.cypress_hanging_sign": "悬挂式柏木告示牌", - "item.terrestria.cypress_trapdoor": "柏木活板门", - "item.terrestria.stripped_cypress_wood": "去皮柏木", - "item.terrestria.stripped_cypress_log": "去皮柏木原木", - "item.terrestria.stripped_cypress_quarter_log": "去皮1/4柏木原木", - "item.terrestria.willow_log": "柳木原木", - "item.terrestria.willow_wood": "柳木", - "item.terrestria.willow_sapling": "柳树树苗", - "item.terrestria.willow_leaves": "柳树树叶", - "item.terrestria.willow_planks": "柳木木板", - "item.terrestria.willow_slab": "柳木台阶", - "item.terrestria.willow_stairs": "柳木楼梯", - "item.terrestria.willow_fence": "柳木栅栏", - "item.terrestria.willow_fence_gate": "柳木栅栏门", - "item.terrestria.willow_door": "柳木门", - "item.terrestria.willow_pressure_plate": "柳木压力板", - "item.terrestria.willow_button": "柳木按钮", - "item.terrestria.willow_sign": "柳木告示牌", - "item.terrestria.willow_hanging_sign": "悬挂式柳木告示牌", - "item.terrestria.willow_trapdoor": "柳木活板门", - "item.terrestria.stripped_willow_wood": "去皮柳木", - "item.terrestria.stripped_willow_log": "去皮柳木原木", - "item.terrestria.japanese_maple_log": "日本红枫原木", - "item.terrestria.japanese_maple_wood": "日本红枫木", - "item.terrestria.japanese_maple_sapling": "日本红枫树苗", - "item.terrestria.japanese_maple_leaves": "日本红枫树叶", - "item.terrestria.japanese_maple_planks": "日本红枫木板", - "item.terrestria.japanese_maple_slab": "日本红枫木台阶", - "item.terrestria.japanese_maple_stairs": "日本红枫木楼梯", - "item.terrestria.japanese_maple_fence": "日本红枫木栅栏", - "item.terrestria.japanese_maple_fence_gate": "日本红枫木栅栏门", - "item.terrestria.japanese_maple_door": "日本红枫木门", - "item.terrestria.japanese_maple_pressure_plate": "日本红枫木压力板", - "item.terrestria.japanese_maple_button": "日本红枫木按钮", - "item.terrestria.japanese_maple_sign": "日本红枫木告示牌", - "item.terrestria.japanese_maple_hanging_sign": "悬挂式日本枫木告示牌", - "item.terrestria.japanese_maple_trapdoor": "日本红枫木活板门", - "item.terrestria.stripped_japanese_maple_wood": "去皮日本红枫木", - "item.terrestria.stripped_japanese_maple_log": "去皮日本红枫原木", - "item.terrestria.dark_japanese_maple_leaves": "暗色日本红枫树叶", - "item.terrestria.dark_japanese_maple_sapling": "暗色日本红枫树苗", - "item.terrestria.rainbow_eucalyptus_log": "彩虹桉原木", - "item.terrestria.rainbow_eucalyptus_wood": "彩虹桉木", - "item.terrestria.rainbow_eucalyptus_quarter_log": "1/4彩虹桉原木", - "item.terrestria.rainbow_eucalyptus_sapling": "彩虹桉树苗", - "item.terrestria.rainbow_eucalyptus_leaves": "彩虹桉树叶", - "item.terrestria.rainbow_eucalyptus_planks": "彩虹桉木板", - "item.terrestria.rainbow_eucalyptus_slab": "彩虹桉木台阶", - "item.terrestria.rainbow_eucalyptus_stairs": "彩虹桉木楼梯", - "item.terrestria.rainbow_eucalyptus_fence": "彩虹桉木栅栏", - "item.terrestria.rainbow_eucalyptus_fence_gate": "彩虹桉木栅栏门", - "item.terrestria.rainbow_eucalyptus_door": "彩虹桉木门", - "item.terrestria.rainbow_eucalyptus_pressure_plate": "彩虹桉木压力板", - "item.terrestria.rainbow_eucalyptus_button": "彩虹桉木按钮", - "item.terrestria.rainbow_eucalyptus_sign": "彩虹桉木告示牌", - "item.terrestria.rainbow_eucalyptus_hanging_sign": "悬挂式彩虹桉木告示牌", - "item.terrestria.rainbow_eucalyptus_trapdoor": "彩虹桉木活板门", - "item.terrestria.stripped_rainbow_eucalyptus_wood": "去皮彩虹桉木", - "item.terrestria.stripped_rainbow_eucalyptus_log": "去皮彩虹桉原木", - "item.terrestria.stripped_rainbow_eucalyptus_quarter_log": "去皮1/4彩虹桉原木", - "item.terrestria.sakura_log": "樱花原木", - "item.terrestria.sakura_sapling": "樱花树苗", - "item.terrestria.sakura_leaves": "樱花树叶", - "item.terrestria.sakura_leaf_pile": "樱花落叶", - "item.terrestria.sakura_planks": "樱花木板", - "item.terrestria.sakura_slab": "樱花木台阶", - "item.terrestria.sakura_stairs": "樱花木楼梯", - "item.terrestria.sakura_fence": "樱花木栅栏", - "item.terrestria.sakura_fence_gate": "樱花木栅栏门", - "item.terrestria.sakura_door": "樱花木门", - "item.terrestria.sakura_pressure_plate": "樱花木压力板", - "item.terrestria.sakura_button": "樱花木按钮", - "item.terrestria.sakura_sign": "樱花木告示牌", - "item.terrestria.sakura_hanging_sign": "悬挂式樱花木告示牌", - "item.terrestria.sakura_trapdoor": "樱花木活板门", - "item.terrestria.stripped_sakura_wood": "去皮樱花木", - "item.terrestria.stripped_sakura_log": "去皮樱花原木", - "item.terrestria.cattail": "猫尾香蒲", - "item.terrestria.tall_cattail": "高猫尾香蒲", - "item.terrestria.basalt": "火山岩", - "item.terrestria.basalt_slab": "火山岩台阶", - "item.terrestria.basalt_stairs": "火山岩楼梯", - "item.terrestria.basalt_wall": "火山岩墙", - "item.terrestria.smooth_basalt": "平滑火山岩", - "item.terrestria.smooth_basalt_slab": "平滑火山岩台阶", - "item.terrestria.smooth_basalt_stairs": "平滑火山岩楼梯", - "item.terrestria.smooth_basalt_wall": "平滑火山岩墙", - "item.terrestria.basalt_cobblestone": "火山岩圆石", - "item.terrestria.basalt_cobblestone_slab": "火山岩圆石台阶", - "item.terrestria.basalt_cobblestone_stairs": "火山岩圆石楼梯", - "item.terrestria.basalt_cobblestone_wall": "火山岩圆石墙", - "item.terrestria.mossy_basalt_cobblestone": "覆苔火山岩圆石", - "item.terrestria.mossy_basalt_cobblestone_slab": "覆苔火山岩圆石台阶", - "item.terrestria.mossy_basalt_cobblestone_stairs": "覆苔火山岩圆石楼梯", - "item.terrestria.mossy_basalt_cobblestone_wall": "覆苔火山岩圆石墙", - "item.terrestria.basalt_bricks": "火山岩石砖", - "item.terrestria.basalt_brick_slab": "火山岩石砖台阶", - "item.terrestria.basalt_brick_stairs": "火山岩石砖楼梯", - "item.terrestria.basalt_brick_wall": "火山岩石砖墙", - "item.terrestria.mossy_basalt_bricks": "覆苔火山岩石砖", - "item.terrestria.mossy_basalt_brick_slab": "覆苔火山岩石砖台阶", - "item.terrestria.mossy_basalt_brick_stairs": "覆苔火山岩石砖楼梯", - "item.terrestria.mossy_basalt_brick_wall": "覆苔火山岩石砖墙", - "item.terrestria.basalt_button": "火山岩按钮", - "item.terrestria.basalt_pressure_plate": "火山岩压力板", - "item.terrestria.chiseled_basalt_bricks": "錾制火山岩石砖", - "item.terrestria.cracked_basalt_bricks": "裂纹火山岩石砖", - "item.terrestria.basalt_grass_block": "火山灰土草方块", - "item.terrestria.basalt_grass_path": "火山灰土草径", - "item.terrestria.basalt_sand": "火山砂", - "item.terrestria.basalt_dirt": "火山灰土", - "item.terrestria.basalt_podzol": "灰化火山灰土", - "item.terrestria.andisol_farmland": "火山灰土耕地", - "item.terrestria.indian_paintbrush": "火焰草", - "item.terrestria.monsteras": "龟背竹", - "item.terrestria.potted_indian_paintbrush": "火焰草盆栽", - "item.terrestria.potted_monsteras": "龟背竹盆栽", - "item.terrestria.potted_bryce_sapling": "布莱斯树苗盆栽", - "item.terrestria.japanese_maple_shrub_sapling": "日本红枫灌木树苗", - "item.terrestria.japanese_maple_shrub_leaves": "日本红枫灌木树叶", - "item.terrestria.potted_redwood_sapling": "红杉树苗盆栽", - "item.terrestria.potted_hemlock_sapling": "铁杉树苗盆栽", - "item.terrestria.potted_rubber_sapling": "橡胶树苗盆栽", - "item.terrestria.potted_cypress_sapling": "柏树树苗盆栽", - "item.terrestria.potted_willow_sapling": "柳树树苗盆栽", - "item.terrestria.potted_japanese_maple_sapling": "日本红枫树苗盆栽", - "item.terrestria.potted_dark_japanese_maple_sapling": "暗色日本红枫树苗盆栽", - "item.terrestria.potted_rainbow_eucalyptus_sapling": "彩虹桉树苗盆栽", - "item.terrestria.potted_sakura_sapling": "樱花树苗盆栽", - "item.terrestria.potted_jungle_palm_sapling": "丛林棕榈树苗盆栽", - "item.terrestria.potted_japanese_maple_shrub_sapling": "日本红枫灌木树苗盆栽", - "item.terrestria.potted_saguaro_cactus_sapling": "巨人柱盆栽", - "item.terrestria.potted_yucca_palm_sapling": "丝兰棕榈树苗盆栽", - "item.terrestria.agave": "龙舌兰", - "item.terrestria.tiny_cactus": "小型仙人掌", - "item.terrestria.aloe_vera": "芦荟", - "item.terrestria.dead_grass": "枯草", - "item.terrestria.potted_agave": "龙舌兰盆栽", - "item.terrestria.potted_tiny_cactus": "小型仙人掌盆栽", - "item.terrestria.potted_aloe_vera": "芦荟盆栽", - "item.terrestria.yucca_palm_log": "丝兰棕榈原木", - "item.terrestria.yucca_palm_leaves": "丝兰棕榈树叶", - "item.terrestria.yucca_palm_planks": "丝兰棕榈木板", - "item.terrestria.yucca_palm_slab": "丝兰棕榈木台阶", - "item.terrestria.yucca_palm_stairs": "丝兰棕榈木台阶", - "item.terrestria.yucca_palm_fence": "丝兰棕榈木栅栏", - "item.terrestria.yucca_palm_fence_gate": "丝兰棕榈木栅栏门", - "item.terrestria.yucca_palm_door": "丝兰棕榈木门", - "item.terrestria.yucca_palm_button": "丝兰棕榈木按钮", - "item.terrestria.yucca_palm_pressure_plate": "丝兰棕榈木压力板", - "item.terrestria.yucca_palm_trapdoor": "丝兰棕榈木活板门", - "item.terrestria.yucca_palm_sign": "丝兰棕榈木告示牌", - "item.terrestria.yucca_palm_hanging_sign": "悬挂式丝兰棕榈木告示牌", - "item.terrestria.stripped_yucca_palm_log": "去皮丝兰棕榈原木", - "item.terrestria.small_oak_log": "小型橡木原木", - "item.terrestria.stripped_small_oak_log": "去皮小型橡木原木", - "item.terrestria.saguaro_cactus": "巨人柱", - "item.terrestria.bryce_sapling": "布莱斯树苗", - "item.terrestria.saguaro_cactus_sapling": "巨人柱苗", - "item.terrestria.yucca_palm_sapling": "丝兰棕榈树苗" + "item.terrestria.yucca_palm_chest_boat": "丝兰棕榈木运输船" } diff --git a/client/src/main/resources/assets/terrestria/lang/zh_tw.json b/client/src/main/resources/assets/terrestria/lang/zh_tw.json index 4f0efaab..1b5e3797 100644 --- a/client/src/main/resources/assets/terrestria/lang/zh_tw.json +++ b/client/src/main/resources/assets/terrestria/lang/zh_tw.json @@ -158,40 +158,40 @@ "block.terrestria.stripped_sakura_log": "去皮櫻花樹原木", "block.terrestria.cattail": "貓尾香蒲", "block.terrestria.tall_cattail": "高貓尾香蒲", - "block.terrestria.basalt": "玄武巖", - "block.terrestria.basalt_slab": "玄武巖臺階", - "block.terrestria.basalt_stairs": "玄武巖樓梯", - "block.terrestria.basalt_wall": "玄武巖墻", - "block.terrestria.smooth_basalt": "平滑玄武巖", - "block.terrestria.smooth_basalt_slab": "平滑玄武巖臺階", - "block.terrestria.smooth_basalt_stairs": "平滑玄武巖樓梯", - "block.terrestria.smooth_basalt_wall": "平滑玄武巖墻", - "block.terrestria.basalt_cobblestone": "玄武巖圓石", - "block.terrestria.basalt_cobblestone_slab": "玄武巖圓石臺階", - "block.terrestria.basalt_cobblestone_stairs": "玄武巖圓石樓梯", - "block.terrestria.basalt_cobblestone_wall": "玄武巖圓石墻", - "block.terrestria.mossy_basalt_cobblestone": "生苔的玄武巖圓石", - "block.terrestria.mossy_basalt_cobblestone_slab": "生苔的玄武巖圓石臺階", - "block.terrestria.mossy_basalt_cobblestone_stairs": "生苔的玄武巖圓石樓梯", - "block.terrestria.mossy_basalt_cobblestone_wall": "生苔的玄武巖圓石墻", - "block.terrestria.basalt_bricks": "玄武巖石磚", - "block.terrestria.basalt_brick_slab": "玄武巖石磚臺階", - "block.terrestria.basalt_brick_stairs": "玄武巖石磚樓梯", - "block.terrestria.basalt_brick_wall": "玄武巖石磚墻", - "block.terrestria.mossy_basalt_bricks": "生苔的玄武巖石磚", - "block.terrestria.mossy_basalt_brick_slab": "生苔的玄武巖石磚臺階", - "block.terrestria.mossy_basalt_brick_stairs": "生苔的玄武巖石磚樓梯", - "block.terrestria.mossy_basalt_brick_wall": "生苔的玄武巖石磚墻", - "block.terrestria.basalt_button": "玄武巖按鈕", - "block.terrestria.basalt_pressure_plate": "玄武巖壓力板", - "block.terrestria.chiseled_basalt_bricks": "鏨制玄武巖石磚", - "block.terrestria.cracked_basalt_bricks": "裂玄武巖石磚", - "block.terrestria.basalt_grass_block": "火山灰土草方塊", - "block.terrestria.basalt_grass_path": "火山灰土草徑", - "block.terrestria.basalt_sand": "玄武巖砂", - "block.terrestria.basalt_dirt": "火山灰土", - "block.terrestria.basalt_podzol": "灰化火山灰土", + "block.terrestria.volcanic_rock": "玄武巖", + "block.terrestria.volcanic_rock_slab": "玄武巖臺階", + "block.terrestria.volcanic_rock_stairs": "玄武巖樓梯", + "block.terrestria.volcanic_rock_wall": "玄武巖墻", + "block.terrestria.smooth_volcanic_rock": "平滑玄武巖", + "block.terrestria.smooth_volcanic_rock_slab": "平滑玄武巖臺階", + "block.terrestria.smooth_volcanic_rock_stairs": "平滑玄武巖樓梯", + "block.terrestria.smooth_volcanic_rock_wall": "平滑玄武巖墻", + "block.terrestria.volcanic_rock_cobblestone": "玄武巖圓石", + "block.terrestria.volcanic_rock_cobblestone_slab": "玄武巖圓石臺階", + "block.terrestria.volcanic_rock_cobblestone_stairs": "玄武巖圓石樓梯", + "block.terrestria.volcanic_rock_cobblestone_wall": "玄武巖圓石墻", + "block.terrestria.mossy_volcanic_rock_cobblestone": "生苔的玄武巖圓石", + "block.terrestria.mossy_volcanic_rock_cobblestone_slab": "生苔的玄武巖圓石臺階", + "block.terrestria.mossy_volcanic_rock_cobblestone_stairs": "生苔的玄武巖圓石樓梯", + "block.terrestria.mossy_volcanic_rock_cobblestone_wall": "生苔的玄武巖圓石墻", + "block.terrestria.volcanic_rock_bricks": "玄武巖石磚", + "block.terrestria.volcanic_rock_brick_slab": "玄武巖石磚臺階", + "block.terrestria.volcanic_rock_brick_stairs": "玄武巖石磚樓梯", + "block.terrestria.volcanic_rock_brick_wall": "玄武巖石磚墻", + "block.terrestria.mossy_volcanic_rock_bricks": "生苔的玄武巖石磚", + "block.terrestria.mossy_volcanic_rock_brick_slab": "生苔的玄武巖石磚臺階", + "block.terrestria.mossy_volcanic_rock_brick_stairs": "生苔的玄武巖石磚樓梯", + "block.terrestria.mossy_volcanic_rock_brick_wall": "生苔的玄武巖石磚墻", + "block.terrestria.volcanic_rock_button": "玄武巖按鈕", + "block.terrestria.volcanic_rock_pressure_plate": "玄武巖壓力板", + "block.terrestria.chiseled_volcanic_rock_bricks": "鏨制玄武巖石磚", + "block.terrestria.cracked_volcanic_rock_bricks": "裂玄武巖石磚", + "block.terrestria.volcanic_sand": "玄武巖砂", + "block.terrestria.andisol": "火山灰土", + "block.terrestria.andisol_dirt_path": "火山灰土草徑", "block.terrestria.andisol_farmland": "火山灰耕地", + "block.terrestria.andisol_grass_block": "火山灰土草方塊", + "block.terrestria.andisol_podzol": "灰化火山灰土", "block.terrestria.indian_paintbrush": "印地安畫筆花", "block.terrestria.monsteras": "龜背竹", "block.terrestria.potted_indian_paintbrush": "印地安畫筆花盆栽", @@ -249,226 +249,5 @@ "item.terrestria.rubber_boat": "橡膠木船", "item.terrestria.sakura_boat": "櫻花木船", "item.terrestria.willow_boat": "柳木船", - "item.terrestria.yucca_palm_boat": "絲蘭棕櫚木船", - - "item.terrestria.redwood_log": "紅杉原木", - "item.terrestria.redwood_wood": "紅杉原木", - "item.terrestria.redwood_quarter_log": "紅杉原木", - "item.terrestria.redwood_sapling": "紅杉樹苗", - "item.terrestria.redwood_leaves": "紅杉樹葉", - "item.terrestria.redwood_planks": "紅杉木板", - "item.terrestria.redwood_slab": "紅杉木臺階", - "item.terrestria.redwood_stairs": "紅杉木樓梯", - "item.terrestria.redwood_fence": "紅杉木柵欄", - "item.terrestria.redwood_fence_gate": "紅杉木柵欄門", - "item.terrestria.redwood_door": "紅杉木門", - "item.terrestria.redwood_pressure_plate": "紅杉木壓力板", - "item.terrestria.redwood_button": "紅杉木按鈕", - "item.terrestria.redwood_sign": "紅杉木牌", - "item.terrestria.redwood_trapdoor": "紅杉木活板門", - "item.terrestria.stripped_redwood_wood": "去皮紅杉木原木", - "item.terrestria.stripped_redwood_log": "去皮紅杉木原木", - "item.terrestria.stripped_redwood_quarter_log": "去皮紅杉木原木", - "item.terrestria.hemlock_log": "鐵杉木", - "item.terrestria.hemlock_wood": "鐵杉木", - "item.terrestria.hemlock_quarter_log": "鐵杉木方塊", - "item.terrestria.hemlock_sapling": "鐵杉樹苗", - "item.terrestria.hemlock_leaves": "鐵杉樹葉", - "item.terrestria.hemlock_planks": "鐵杉木板", - "item.terrestria.hemlock_slab": "鐵杉木臺階", - "item.terrestria.hemlock_stairs": "鐵杉木樓梯", - "item.terrestria.hemlock_fence": "鐵杉木柵欄", - "item.terrestria.hemlock_fence_gate": "鐵杉木柵欄門", - "item.terrestria.hemlock_door": "鐵杉木門", - "item.terrestria.hemlock_pressure_plate": "鐵杉木壓力板", - "item.terrestria.hemlock_button": "鐵杉木按鈕", - "item.terrestria.hemlock_sign": "鐵杉木牌", - "item.terrestria.hemlock_trapdoor": "鐵杉木活板門", - "item.terrestria.stripped_hemlock_wood": "去皮鐵杉原木", - "item.terrestria.stripped_hemlock_log": "去皮鐵杉原木", - "item.terrestria.stripped_hemlock_quarter_log": "去皮鐵杉原木", - "item.terrestria.jungle_palm_sapling": "叢林棕櫚樹苗", - "item.terrestria.jungle_palm_leaves": "叢林棕櫚樹葉", - "item.terrestria.rubber_log": "橡膠原木", - "item.terrestria.rubber_wood": "橡膠原木", - "item.terrestria.rubber_sapling": "橡膠樹苗", - "item.terrestria.rubber_leaves": "橡膠樹葉", - "item.terrestria.rubber_planks": "橡膠木板", - "item.terrestria.rubber_slab": "橡膠木臺階", - "item.terrestria.rubber_stairs": "橡膠木樓梯", - "item.terrestria.rubber_fence": "橡膠木柵欄", - "item.terrestria.rubber_fence_gate": "橡膠木柵欄門", - "item.terrestria.rubber_door": "橡膠木門", - "item.terrestria.rubber_pressure_plate": "橡膠木壓力板", - "item.terrestria.rubber_button": "橡膠木按鈕", - "item.terrestria.rubber_sign": "橡膠木牌", - "item.terrestria.rubber_trapdoor": "橡膠木活板門", - "item.terrestria.stripped_rubber_wood": "去皮橡膠木", - "item.terrestria.stripped_rubber_log": "去皮橡膠木", - "item.terrestria.cypress_log": "柏木原木", - "item.terrestria.cypress_wood": "柏木原木", - "item.terrestria.cypress_quarter_log": "柏木原木", - "item.terrestria.cypress_sapling": "柏樹苗", - "item.terrestria.cypress_leaves": "柏樹葉", - "item.terrestria.cypress_planks": "柏木板", - "item.terrestria.cypress_slab": "柏木臺階", - "item.terrestria.cypress_stairs": "柏木樓梯", - "item.terrestria.cypress_fence": "柏木柵欄", - "item.terrestria.cypress_fence_gate": "柏木柵欄門", - "item.terrestria.cypress_door": "柏木門", - "item.terrestria.cypress_pressure_plate": "柏木壓力板", - "item.terrestria.cypress_button": "柏木按鈕", - "item.terrestria.cypress_sign": "柏木牌", - "item.terrestria.cypress_trapdoor": "柏木活板門", - "item.terrestria.stripped_cypress_wood": "去皮柏木原木", - "item.terrestria.stripped_cypress_log": "去皮柏木原木", - "item.terrestria.stripped_cypress_quarter_log": "去皮柏木原木", - "item.terrestria.willow_log": "柳木原木", - "item.terrestria.willow_wood": "柳木原木", - "item.terrestria.willow_sapling": "柳樹苗", - "item.terrestria.willow_leaves": "柳木樹葉", - "item.terrestria.willow_planks": "柳木板", - "item.terrestria.willow_slab": "柳木臺階", - "item.terrestria.willow_stairs": "柳木樓梯", - "item.terrestria.willow_fence": "柳木柵欄", - "item.terrestria.willow_fence_gate": "柳木柵欄門", - "item.terrestria.willow_door": "柳木門", - "item.terrestria.willow_pressure_plate": "柳木壓力板", - "item.terrestria.willow_button": "柳木按鈕", - "item.terrestria.willow_sign": "柳木牌", - "item.terrestria.willow_trapdoor": "柳木活板門", - "item.terrestria.stripped_willow_wood": "去皮柳木原木", - "item.terrestria.stripped_willow_log": "去皮柳木原木", - "item.terrestria.japanese_maple_log": "日本楓木原木", - "item.terrestria.japanese_maple_wood": "日本楓木原木", - "item.terrestria.japanese_maple_sapling": "日本楓樹苗", - "item.terrestria.japanese_maple_leaves": "日本楓樹葉", - "item.terrestria.japanese_maple_planks": "日本楓木板", - "item.terrestria.japanese_maple_slab": "日本楓木臺階", - "item.terrestria.japanese_maple_stairs": "日本楓木樓梯", - "item.terrestria.japanese_maple_fence": "日本楓木柵欄", - "item.terrestria.japanese_maple_fence_gate": "日本楓木柵欄門", - "item.terrestria.japanese_maple_door": "日本楓木門", - "item.terrestria.japanese_maple_pressure_plate": "日本楓木壓力板", - "item.terrestria.japanese_maple_button": "日本楓木按鈕", - "item.terrestria.japanese_maple_sign": "日本楓木牌", - "item.terrestria.japanese_maple_trapdoor": "日本楓木活板門", - "item.terrestria.stripped_japanese_maple_wood": "去皮日本楓樹原木", - "item.terrestria.stripped_japanese_maple_log": "去皮日本楓樹原木", - "item.terrestria.dark_japanese_maple_leaves": "日本紅楓樹葉", - "item.terrestria.dark_japanese_maple_sapling": "日本紅楓樹苗", - "item.terrestria.rainbow_eucalyptus_log": "彩虹案木原木", - "item.terrestria.rainbow_eucalyptus_wood": "彩虹案木原木", - "item.terrestria.rainbow_eucalyptus_quarter_log": "彩虹案木原木", - "item.terrestria.rainbow_eucalyptus_sapling": "彩虹案樹苗", - "item.terrestria.rainbow_eucalyptus_leaves": "彩虹案樹葉", - "item.terrestria.rainbow_eucalyptus_planks": "彩虹案木板", - "item.terrestria.rainbow_eucalyptus_slab": "彩虹案木臺階", - "item.terrestria.rainbow_eucalyptus_stairs": "彩虹案木樓梯", - "item.terrestria.rainbow_eucalyptus_fence": "彩虹案木柵欄", - "item.terrestria.rainbow_eucalyptus_fence_gate": "彩虹案木柵欄門", - "item.terrestria.rainbow_eucalyptus_door": "彩虹案木門", - "item.terrestria.rainbow_eucalyptus_pressure_plate": "彩虹案木壓力板", - "item.terrestria.rainbow_eucalyptus_button": "彩虹案木按鈕", - "item.terrestria.rainbow_eucalyptus_sign": "彩虹案木牌", - "item.terrestria.rainbow_eucalyptus_trapdoor": "彩虹案木活板門", - "item.terrestria.stripped_rainbow_eucalyptus_wood": "去皮彩虹案木原木", - "item.terrestria.stripped_rainbow_eucalyptus_log": "去皮彩虹案木原木", - "item.terrestria.stripped_rainbow_eucalyptus_quarter_log": "去皮彩虹案木原木", - "item.terrestria.sakura_log": "櫻花木原木", - "item.terrestria.sakura_sapling": "櫻花樹苗", - "item.terrestria.sakura_leaves": "櫻花樹葉", - "item.terrestria.sakura_leaf_pile": "櫻花落葉", - "item.terrestria.sakura_planks": "櫻花木板", - "item.terrestria.sakura_slab": "櫻花木臺階", - "item.terrestria.sakura_stairs": "櫻花木樓梯", - "item.terrestria.sakura_fence": "櫻花木柵欄", - "item.terrestria.sakura_fence_gate": "櫻花木柵欄門", - "item.terrestria.sakura_door": "櫻花木門", - "item.terrestria.sakura_pressure_plate": "櫻花木壓力板", - "item.terrestria.sakura_button": "櫻花木按鈕", - "item.terrestria.sakura_sign": "櫻花木牌", - "item.terrestria.sakura_trapdoor": "櫻花木活板門", - "item.terrestria.stripped_sakura_wood": "去皮櫻花樹原木", - "item.terrestria.stripped_sakura_log": "去皮櫻花樹原木", - "item.terrestria.cattail": "貓尾香蒲", - "item.terrestria.tall_cattail": "高貓尾香蒲", - "item.terrestria.basalt": "玄武巖", - "item.terrestria.basalt_slab": "玄武巖臺階", - "item.terrestria.basalt_stairs": "玄武巖樓梯", - "item.terrestria.basalt_wall": "玄武巖墻", - "item.terrestria.smooth_basalt": "平滑玄武巖", - "item.terrestria.smooth_basalt_slab": "平滑玄武巖臺階", - "item.terrestria.smooth_basalt_stairs": "平滑玄武巖樓梯", - "item.terrestria.smooth_basalt_wall": "平滑玄武巖墻", - "item.terrestria.basalt_cobblestone": "玄武巖圓石", - "item.terrestria.basalt_cobblestone_slab": "玄武巖圓石臺階", - "item.terrestria.basalt_cobblestone_stairs": "玄武巖圓石樓梯", - "item.terrestria.basalt_cobblestone_wall": "玄武巖圓石墻", - "item.terrestria.mossy_basalt_cobblestone": "生苔的玄武巖圓石", - "item.terrestria.mossy_basalt_cobblestone_slab": "生苔的玄武巖圓石臺階", - "item.terrestria.mossy_basalt_cobblestone_stairs": "生苔的玄武巖圓石樓梯", - "item.terrestria.mossy_basalt_cobblestone_wall": "生苔的玄武巖圓石墻", - "item.terrestria.basalt_bricks": "玄武巖石磚", - "item.terrestria.basalt_brick_slab": "玄武巖石磚臺階", - "item.terrestria.basalt_brick_stairs": "玄武巖石磚樓梯", - "item.terrestria.basalt_brick_wall": "玄武巖石磚墻", - "item.terrestria.mossy_basalt_bricks": "生苔的玄武巖石磚", - "item.terrestria.mossy_basalt_brick_slab": "生苔的玄武巖石磚臺階", - "item.terrestria.mossy_basalt_brick_stairs": "生苔的玄武巖石磚樓梯", - "item.terrestria.mossy_basalt_brick_wall": "生苔的玄武巖石磚墻", - "item.terrestria.basalt_button": "玄武巖按鈕", - "item.terrestria.basalt_pressure_plate": "玄武巖壓力板", - "item.terrestria.chiseled_basalt_bricks": "鏨制玄武巖石磚", - "item.terrestria.cracked_basalt_bricks": "裂玄武巖石磚", - "item.terrestria.basalt_grass_block": "火山灰土草方塊", - "item.terrestria.basalt_grass_path": "火山灰土草徑", - "item.terrestria.basalt_sand": "玄武巖砂", - "item.terrestria.basalt_dirt": "火山灰土", - "item.terrestria.basalt_podzol": "灰化火山灰土", - "item.terrestria.andisol_farmland": "火山灰耕地", - "item.terrestria.indian_paintbrush": "印地安畫筆花", - "item.terrestria.monsteras": "龜背竹", - "item.terrestria.potted_indian_paintbrush": "印地安畫筆花盆栽", - "item.terrestria.potted_monsteras": "龜背竹", - "item.terrestria.japanese_maple_shrub_sapling": "日本楓木灌木樹苗", - "item.terrestria.japanese_maple_shrub_leaves": "日本楓木灌木樹葉", - "item.terrestria.potted_redwood_sapling": "紅杉樹苗盆栽", - "item.terrestria.potted_hemlock_sapling": "鐵杉樹苗盆栽", - "item.terrestria.potted_rubber_sapling": "橡膠樹苗盆栽", - "item.terrestria.potted_cypress_sapling": "柏樹苗盆栽", - "item.terrestria.potted_willow_sapling": "柳樹苗盆栽", - "item.terrestria.potted_japanese_maple_sapling": "日本楓樹苗盆栽", - "item.terrestria.potted_dark_japanese_maple_sapling": "日本紅楓樹苗盆栽", - "item.terrestria.potted_rainbow_eucalyptus_sapling": "彩虹案樹苗盆栽", - "item.terrestria.potted_sakura_sapling": "櫻花樹苗盆栽", - "item.terrestria.potted_jungle_palm_sapling": "叢林棕櫚樹苗盆栽", - "item.terrestria.potted_japanese_maple_shrub_sapling": "日本楓木灌樹苗", - "item.terrestria.potted_saguaro_cactus_sapling": "柱狀仙人掌盆栽", - "item.terrestria.agave": "龍舌蘭", - "item.terrestria.tiny_cactus": "小型仙人掌", - "item.terrestria.aloe_vera": "蘆薈", - "item.terrestria.dead_grass": "枯草", - "item.terrestria.potted_agave": "龍舌蘭盆栽", - "item.terrestria.potted_tiny_cactus": "小型仙人掌盆栽", - "item.terrestria.potted_aloe_vera": "蘆薈盆栽", - "item.terrestria.yucca_palm_log": "絲蘭棕櫚原木", - "item.terrestria.yucca_palm_leaves": "絲蘭棕櫚樹葉", - "item.terrestria.yucca_palm_planks": "絲蘭棕櫚木板", - "item.terrestria.yucca_palm_slab": "絲蘭棕櫚木臺階", - "item.terrestria.yucca_palm_stairs": "絲蘭棕櫚木臺階", - "item.terrestria.yucca_palm_fence": "絲蘭棕櫚木柵欄", - "item.terrestria.yucca_palm_fence_gate": "絲蘭棕櫚木柵欄門", - "item.terrestria.yucca_palm_door": "絲蘭棕櫚木門", - "item.terrestria.yucca_palm_button": "絲蘭棕櫚木按鈕", - "item.terrestria.yucca_palm_pressure_plate": "絲蘭棕櫚木壓力板", - "item.terrestria.yucca_palm_trapdoor": "絲蘭棕櫚木活板門", - "item.terrestria.yucca_palm_sign": "絲蘭棕櫚木牌", - "item.terrestria.stripped_yucca_palm_log": "去皮絲蘭棕櫚原木", - "item.terrestria.small_oak_log": "小型橡木原木", - "item.terrestria.stripped_small_oak_log": "去皮小型橡木原木", - "item.terrestria.saguaro_cactus": "柱狀仙人掌", - "item.terrestria.bryce_sapling": "布萊斯樹苗", - "item.terrestria.saguaro_cactus_sapling": "柱狀仙人掌樹苗", - "item.terrestria.yucca_palm_sapling": "絲蘭棕櫚樹苗" + "item.terrestria.yucca_palm_boat": "絲蘭棕櫚木船" } diff --git a/client/src/main/resources/assets/terrestria/models/block/agave.json b/client/src/main/resources/assets/terrestria/models/block/agave.json deleted file mode 100644 index 837d49ea..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/agave.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cross", - "textures": { - "cross": "terrestria:block/agave" - } -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/block/aloe_vera.json b/client/src/main/resources/assets/terrestria/models/block/aloe_vera.json deleted file mode 100644 index 38554dcd..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/aloe_vera.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cross", - "textures": { - "cross": "terrestria:block/aloe_vera" - } -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/block/andisol_farmland.json b/client/src/main/resources/assets/terrestria/models/block/andisol_farmland.json deleted file mode 100644 index 95f90c79..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/andisol_farmland.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/template_farmland", - "textures": { - "particle": "terrestria:block/basalt_dirt", - "dirt": "terrestria:block/basalt_dirt", - "top": "terrestria:block/andisol_farmland" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/andisol_farmland_moist.json b/client/src/main/resources/assets/terrestria/models/block/andisol_farmland_moist.json deleted file mode 100644 index 801081e8..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/andisol_farmland_moist.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/template_farmland", - "textures": { - "particle": "terrestria:block/basalt_dirt", - "dirt": "terrestria:block/basalt_dirt", - "top": "terrestria:block/andisol_farmland_moist" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/basalt.json b/client/src/main/resources/assets/terrestria/models/block/basalt.json deleted file mode 100644 index 14bfb156..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/basalt.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "terrestria:block/basalt" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/basalt_brick_slab.json b/client/src/main/resources/assets/terrestria/models/block/basalt_brick_slab.json deleted file mode 100644 index 5d36b735..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/basalt_brick_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab", - "textures": { - "bottom": "terrestria:block/basalt_bricks", - "top": "terrestria:block/basalt_bricks", - "side": "terrestria:block/basalt_bricks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/basalt_brick_slab_top.json b/client/src/main/resources/assets/terrestria/models/block/basalt_brick_slab_top.json deleted file mode 100644 index 0373b8ec..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/basalt_brick_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab_top", - "textures": { - "bottom": "terrestria:block/basalt_bricks", - "top": "terrestria:block/basalt_bricks", - "side": "terrestria:block/basalt_bricks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/basalt_brick_stairs.json b/client/src/main/resources/assets/terrestria/models/block/basalt_brick_stairs.json deleted file mode 100644 index dfb9c856..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/basalt_brick_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "terrestria:block/basalt_bricks", - "top": "terrestria:block/basalt_bricks", - "side": "terrestria:block/basalt_bricks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/basalt_brick_stairs_inner.json b/client/src/main/resources/assets/terrestria/models/block/basalt_brick_stairs_inner.json deleted file mode 100644 index 3aa3657b..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/basalt_brick_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "terrestria:block/basalt_bricks", - "top": "terrestria:block/basalt_bricks", - "side": "terrestria:block/basalt_bricks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/basalt_brick_stairs_outer.json b/client/src/main/resources/assets/terrestria/models/block/basalt_brick_stairs_outer.json deleted file mode 100644 index c1b328c1..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/basalt_brick_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "terrestria:block/basalt_bricks", - "top": "terrestria:block/basalt_bricks", - "side": "terrestria:block/basalt_bricks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/basalt_brick_wall_post.json b/client/src/main/resources/assets/terrestria/models/block/basalt_brick_wall_post.json deleted file mode 100644 index d9635f6d..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/basalt_brick_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_post", - "textures": { - "wall": "terrestria:block/basalt_bricks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/basalt_brick_wall_side.json b/client/src/main/resources/assets/terrestria/models/block/basalt_brick_wall_side.json deleted file mode 100644 index b1dbaaf3..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/basalt_brick_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_side", - "textures": { - "wall": "terrestria:block/basalt_bricks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/basalt_brick_wall_side_tall.json b/client/src/main/resources/assets/terrestria/models/block/basalt_brick_wall_side_tall.json deleted file mode 100644 index 22190fe1..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/basalt_brick_wall_side_tall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_side_tall", - "textures": { - "wall": "terrestria:block/basalt_bricks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/basalt_bricks.json b/client/src/main/resources/assets/terrestria/models/block/basalt_bricks.json deleted file mode 100644 index 5ec0dcde..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/basalt_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "terrestria:block/basalt_bricks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/basalt_button.json b/client/src/main/resources/assets/terrestria/models/block/basalt_button.json deleted file mode 100644 index de2e57fe..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/basalt_button.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/button", - "textures": { - "texture": "terrestria:block/basalt" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/basalt_button_pressed.json b/client/src/main/resources/assets/terrestria/models/block/basalt_button_pressed.json deleted file mode 100644 index dafb4319..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/basalt_button_pressed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/button_pressed", - "textures": { - "texture": "terrestria:block/basalt" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/basalt_cobblestone.json b/client/src/main/resources/assets/terrestria/models/block/basalt_cobblestone.json deleted file mode 100644 index 0688351e..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/basalt_cobblestone.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "terrestria:block/basalt_cobblestone" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/basalt_cobblestone_slab.json b/client/src/main/resources/assets/terrestria/models/block/basalt_cobblestone_slab.json deleted file mode 100644 index f8c7c4c9..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/basalt_cobblestone_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab", - "textures": { - "bottom": "terrestria:block/basalt_cobblestone", - "top": "terrestria:block/basalt_cobblestone", - "side": "terrestria:block/basalt_cobblestone" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/basalt_cobblestone_slab_top.json b/client/src/main/resources/assets/terrestria/models/block/basalt_cobblestone_slab_top.json deleted file mode 100644 index e15e59f9..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/basalt_cobblestone_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab_top", - "textures": { - "bottom": "terrestria:block/basalt_cobblestone", - "top": "terrestria:block/basalt_cobblestone", - "side": "terrestria:block/basalt_cobblestone" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/basalt_cobblestone_stairs.json b/client/src/main/resources/assets/terrestria/models/block/basalt_cobblestone_stairs.json deleted file mode 100644 index c657cc7c..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/basalt_cobblestone_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "terrestria:block/basalt_cobblestone", - "top": "terrestria:block/basalt_cobblestone", - "side": "terrestria:block/basalt_cobblestone" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/basalt_cobblestone_stairs_inner.json b/client/src/main/resources/assets/terrestria/models/block/basalt_cobblestone_stairs_inner.json deleted file mode 100644 index a3c2b886..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/basalt_cobblestone_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "terrestria:block/basalt_cobblestone", - "top": "terrestria:block/basalt_cobblestone", - "side": "terrestria:block/basalt_cobblestone" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/basalt_cobblestone_stairs_outer.json b/client/src/main/resources/assets/terrestria/models/block/basalt_cobblestone_stairs_outer.json deleted file mode 100644 index 196c6aba..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/basalt_cobblestone_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "terrestria:block/basalt_cobblestone", - "top": "terrestria:block/basalt_cobblestone", - "side": "terrestria:block/basalt_cobblestone" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/basalt_cobblestone_wall_post.json b/client/src/main/resources/assets/terrestria/models/block/basalt_cobblestone_wall_post.json deleted file mode 100644 index dc86d9c8..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/basalt_cobblestone_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_post", - "textures": { - "wall": "terrestria:block/basalt_cobblestone" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/basalt_cobblestone_wall_side.json b/client/src/main/resources/assets/terrestria/models/block/basalt_cobblestone_wall_side.json deleted file mode 100644 index 9f676c30..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/basalt_cobblestone_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_side", - "textures": { - "wall": "terrestria:block/basalt_cobblestone" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/basalt_cobblestone_wall_side_tall.json b/client/src/main/resources/assets/terrestria/models/block/basalt_cobblestone_wall_side_tall.json deleted file mode 100644 index 276fd1f7..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/basalt_cobblestone_wall_side_tall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_side_tall", - "textures": { - "wall": "terrestria:block/basalt_cobblestone" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/basalt_dirt.json b/client/src/main/resources/assets/terrestria/models/block/basalt_dirt.json deleted file mode 100644 index fe5443e5..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/basalt_dirt.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "terrestria:block/basalt_dirt" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/basalt_grass_block.json b/client/src/main/resources/assets/terrestria/models/block/basalt_grass_block.json deleted file mode 100644 index d0da6687..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/basalt_grass_block.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "parent": "minecraft:block/grass_block", - "textures": { - "particle": "terrestria:block/basalt_dirt", - "bottom": "terrestria:block/basalt_dirt", - "top": "minecraft:block/grass_block_top", - "side": "terrestria:block/basalt_dirt", - "overlay": "minecraft:block/grass_block_side_overlay" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/basalt_grass_block_snow.json b/client/src/main/resources/assets/terrestria/models/block/basalt_grass_block_snow.json deleted file mode 100644 index 7152978e..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/basalt_grass_block_snow.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "minecraft:block/grass_block_snow", - "textures": { - "particle": "terrestria:block/basalt_dirt", - "bottom": "terrestria:block/basalt_dirt", - "top": "minecraft:block/grass_block_top", - "side": "terrestria:block/basalt_grass_side_snow" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/basalt_grass_path.json b/client/src/main/resources/assets/terrestria/models/block/basalt_grass_path.json deleted file mode 100644 index e15d249b..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/basalt_grass_path.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "minecraft:block/dirt_path", - "textures": { - "particle": "terrestria:block/basalt_dirt", - "top": "minecraft:block/dirt_path_top", - "side": "terrestria:block/basalt_grass_path_side", - "bottom": "terrestria:block/basalt_dirt" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/basalt_podzol.json b/client/src/main/resources/assets/terrestria/models/block/basalt_podzol.json deleted file mode 100644 index 60ff4613..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/basalt_podzol.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "parent": "minecraft:block/cube", - "textures": { - "particle": "terrestria:block/basalt_dirt", - "down": "terrestria:block/basalt_dirt", - "up": "minecraft:block/podzol_top", - "north": "terrestria:block/basalt_podzol", - "south": "terrestria:block/basalt_podzol", - "east": "terrestria:block/basalt_podzol", - "west": "terrestria:block/basalt_podzol" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/basalt_pressure_plate.json b/client/src/main/resources/assets/terrestria/models/block/basalt_pressure_plate.json deleted file mode 100644 index 37704188..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/basalt_pressure_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/pressure_plate_up", - "textures": { - "texture": "terrestria:block/basalt" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/basalt_pressure_plate_down.json b/client/src/main/resources/assets/terrestria/models/block/basalt_pressure_plate_down.json deleted file mode 100644 index e714d434..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/basalt_pressure_plate_down.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/pressure_plate_down", - "textures": { - "texture": "terrestria:block/basalt" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/basalt_sand.json b/client/src/main/resources/assets/terrestria/models/block/basalt_sand.json deleted file mode 100644 index cc45c575..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/basalt_sand.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "terrestria:block/basalt_sand" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/basalt_slab.json b/client/src/main/resources/assets/terrestria/models/block/basalt_slab.json deleted file mode 100644 index 524d0cd7..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/basalt_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab", - "textures": { - "bottom": "terrestria:block/basalt", - "top": "terrestria:block/basalt", - "side": "terrestria:block/basalt" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/basalt_slab_top.json b/client/src/main/resources/assets/terrestria/models/block/basalt_slab_top.json deleted file mode 100644 index 17965465..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/basalt_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab_top", - "textures": { - "bottom": "terrestria:block/basalt", - "top": "terrestria:block/basalt", - "side": "terrestria:block/basalt" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/basalt_stairs.json b/client/src/main/resources/assets/terrestria/models/block/basalt_stairs.json deleted file mode 100644 index d936df25..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/basalt_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "terrestria:block/basalt", - "top": "terrestria:block/basalt", - "side": "terrestria:block/basalt" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/basalt_stairs_inner.json b/client/src/main/resources/assets/terrestria/models/block/basalt_stairs_inner.json deleted file mode 100644 index 69b0e79e..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/basalt_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "terrestria:block/basalt", - "top": "terrestria:block/basalt", - "side": "terrestria:block/basalt" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/basalt_stairs_outer.json b/client/src/main/resources/assets/terrestria/models/block/basalt_stairs_outer.json deleted file mode 100644 index 050d0207..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/basalt_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "terrestria:block/basalt", - "top": "terrestria:block/basalt", - "side": "terrestria:block/basalt" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/basalt_wall_post.json b/client/src/main/resources/assets/terrestria/models/block/basalt_wall_post.json deleted file mode 100644 index 87a7b621..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/basalt_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_post", - "textures": { - "wall": "terrestria:block/basalt" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/basalt_wall_side.json b/client/src/main/resources/assets/terrestria/models/block/basalt_wall_side.json deleted file mode 100644 index a11d6d8a..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/basalt_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_side", - "textures": { - "wall": "terrestria:block/basalt" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/basalt_wall_side_tall.json b/client/src/main/resources/assets/terrestria/models/block/basalt_wall_side_tall.json deleted file mode 100644 index 43f9c116..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/basalt_wall_side_tall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_side_tall", - "textures": { - "wall": "terrestria:block/basalt" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/bryce_sapling.json b/client/src/main/resources/assets/terrestria/models/block/bryce_sapling.json deleted file mode 100644 index c2fae038..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/bryce_sapling.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cross", - "textures": { - "cross": "terrestria:block/bryce_sapling" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/cattail.json b/client/src/main/resources/assets/terrestria/models/block/cattail.json deleted file mode 100644 index 6a5019f1..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/cattail.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_seagrass", - "textures": { - "texture": "terrestria:block/cattail" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/chiseled_basalt_bricks.json b/client/src/main/resources/assets/terrestria/models/block/chiseled_basalt_bricks.json deleted file mode 100644 index 0e005535..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/chiseled_basalt_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "terrestria:block/chiseled_basalt_bricks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/cracked_basalt_bricks.json b/client/src/main/resources/assets/terrestria/models/block/cracked_basalt_bricks.json deleted file mode 100644 index f92979ea..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/cracked_basalt_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "terrestria:block/cracked_basalt_bricks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/cypress_button.json b/client/src/main/resources/assets/terrestria/models/block/cypress_button.json deleted file mode 100644 index 0e103dc9..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/cypress_button.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/button", - "textures": { - "texture": "terrestria:block/cypress_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/cypress_button_inventory.json b/client/src/main/resources/assets/terrestria/models/block/cypress_button_inventory.json deleted file mode 100644 index 3a206646..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/cypress_button_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/button_inventory", - "textures": { - "texture": "terrestria:block/cypress_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/cypress_button_pressed.json b/client/src/main/resources/assets/terrestria/models/block/cypress_button_pressed.json deleted file mode 100644 index 1401915e..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/cypress_button_pressed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/button_pressed", - "textures": { - "texture": "terrestria:block/cypress_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/cypress_door_bottom_left.json b/client/src/main/resources/assets/terrestria/models/block/cypress_door_bottom_left.json deleted file mode 100644 index ce02f083..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/cypress_door_bottom_left.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_bottom_left", - "textures": { - "bottom": "terrestria:block/cypress_door_bottom", - "top": "terrestria:block/cypress_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/cypress_door_bottom_left_open.json b/client/src/main/resources/assets/terrestria/models/block/cypress_door_bottom_left_open.json deleted file mode 100644 index 9cfbc526..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/cypress_door_bottom_left_open.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_bottom_left_open", - "textures": { - "bottom": "terrestria:block/cypress_door_bottom", - "top": "terrestria:block/cypress_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/cypress_door_bottom_right.json b/client/src/main/resources/assets/terrestria/models/block/cypress_door_bottom_right.json deleted file mode 100644 index 680f742d..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/cypress_door_bottom_right.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_bottom_right", - "textures": { - "bottom": "terrestria:block/cypress_door_bottom", - "top": "terrestria:block/cypress_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/cypress_door_bottom_right_open.json b/client/src/main/resources/assets/terrestria/models/block/cypress_door_bottom_right_open.json deleted file mode 100644 index 7b438ab7..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/cypress_door_bottom_right_open.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_bottom_right_open", - "textures": { - "bottom": "terrestria:block/cypress_door_bottom", - "top": "terrestria:block/cypress_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/cypress_door_top_left.json b/client/src/main/resources/assets/terrestria/models/block/cypress_door_top_left.json deleted file mode 100644 index e8ef4684..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/cypress_door_top_left.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_top_left", - "textures": { - "bottom": "terrestria:block/cypress_door_bottom", - "top": "terrestria:block/cypress_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/cypress_door_top_left_open.json b/client/src/main/resources/assets/terrestria/models/block/cypress_door_top_left_open.json deleted file mode 100644 index 8df93782..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/cypress_door_top_left_open.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_top_left_open", - "textures": { - "bottom": "terrestria:block/cypress_door_bottom", - "top": "terrestria:block/cypress_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/cypress_door_top_right.json b/client/src/main/resources/assets/terrestria/models/block/cypress_door_top_right.json deleted file mode 100644 index 5c7a7bb9..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/cypress_door_top_right.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_top_right", - "textures": { - "bottom": "terrestria:block/cypress_door_bottom", - "top": "terrestria:block/cypress_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/cypress_door_top_right_open.json b/client/src/main/resources/assets/terrestria/models/block/cypress_door_top_right_open.json deleted file mode 100644 index cf87b4a1..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/cypress_door_top_right_open.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_top_right_open", - "textures": { - "bottom": "terrestria:block/cypress_door_bottom", - "top": "terrestria:block/cypress_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/cypress_fence_gate.json b/client/src/main/resources/assets/terrestria/models/block/cypress_fence_gate.json deleted file mode 100644 index 549c687c..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/cypress_fence_gate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_fence_gate", - "textures": { - "texture": "terrestria:block/cypress_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/cypress_fence_gate_open.json b/client/src/main/resources/assets/terrestria/models/block/cypress_fence_gate_open.json deleted file mode 100644 index 5401b2a4..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/cypress_fence_gate_open.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_fence_gate_open", - "textures": { - "texture": "terrestria:block/cypress_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/cypress_fence_gate_wall.json b/client/src/main/resources/assets/terrestria/models/block/cypress_fence_gate_wall.json deleted file mode 100644 index d5032ba5..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/cypress_fence_gate_wall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_fence_gate_wall", - "textures": { - "texture": "terrestria:block/cypress_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/cypress_fence_gate_wall_open.json b/client/src/main/resources/assets/terrestria/models/block/cypress_fence_gate_wall_open.json deleted file mode 100644 index 0c1cbd3f..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/cypress_fence_gate_wall_open.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_fence_gate_wall_open", - "textures": { - "texture": "terrestria:block/cypress_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/cypress_fence_inventory.json b/client/src/main/resources/assets/terrestria/models/block/cypress_fence_inventory.json deleted file mode 100644 index a74703ff..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/cypress_fence_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/fence_inventory", - "textures": { - "texture": "terrestria:block/cypress_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/cypress_fence_post.json b/client/src/main/resources/assets/terrestria/models/block/cypress_fence_post.json deleted file mode 100644 index 412fa0a1..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/cypress_fence_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/fence_post", - "textures": { - "texture": "terrestria:block/cypress_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/cypress_fence_side.json b/client/src/main/resources/assets/terrestria/models/block/cypress_fence_side.json deleted file mode 100644 index 81385716..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/cypress_fence_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/fence_side", - "textures": { - "texture": "terrestria:block/cypress_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/cypress_hanging_sign.json b/client/src/main/resources/assets/terrestria/models/block/cypress_hanging_sign.json deleted file mode 100644 index 1aca8c86..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/cypress_hanging_sign.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "textures": { - "particle": "terrestria:block/cypress_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/cypress_leaves.json b/client/src/main/resources/assets/terrestria/models/block/cypress_leaves.json deleted file mode 100644 index 21adc3c7..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/cypress_leaves.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/leaves", - "textures": { - "all": "terrestria:block/cypress_leaves" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/cypress_log.json b/client/src/main/resources/assets/terrestria/models/block/cypress_log.json deleted file mode 100644 index ad04548d..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/cypress_log.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/cube_column", - "textures": { - "end": "terrestria:block/cypress_log_top", - "side": "terrestria:block/cypress_log" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/cypress_planks.json b/client/src/main/resources/assets/terrestria/models/block/cypress_planks.json deleted file mode 100644 index fad16f39..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/cypress_planks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "terrestria:block/cypress_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/cypress_pressure_plate.json b/client/src/main/resources/assets/terrestria/models/block/cypress_pressure_plate.json deleted file mode 100644 index 3ae04922..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/cypress_pressure_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/pressure_plate_up", - "textures": { - "texture": "terrestria:block/cypress_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/cypress_pressure_plate_down.json b/client/src/main/resources/assets/terrestria/models/block/cypress_pressure_plate_down.json deleted file mode 100644 index 5648a1c7..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/cypress_pressure_plate_down.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/pressure_plate_down", - "textures": { - "texture": "terrestria:block/cypress_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/cypress_quarter_log.json b/client/src/main/resources/assets/terrestria/models/block/cypress_quarter_log.json deleted file mode 100644 index f8088826..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/cypress_quarter_log.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "terrestria:block/quarter_log", - "textures": { - "particle": "terrestria:block/cypress_log", - "ends": "terrestria:block/cypress_quarter_log", - "sides": "terrestria:block/cypress_log", - "insides": "terrestria:block/cypress_log_bare" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/cypress_sapling.json b/client/src/main/resources/assets/terrestria/models/block/cypress_sapling.json deleted file mode 100644 index 59a87cfb..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/cypress_sapling.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cross", - "textures": { - "cross": "terrestria:block/cypress_sapling" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/cypress_sign.json b/client/src/main/resources/assets/terrestria/models/block/cypress_sign.json deleted file mode 100644 index 1aca8c86..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/cypress_sign.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "textures": { - "particle": "terrestria:block/cypress_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/cypress_slab.json b/client/src/main/resources/assets/terrestria/models/block/cypress_slab.json deleted file mode 100644 index ae2b3b32..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/cypress_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab", - "textures": { - "bottom": "terrestria:block/cypress_planks", - "top": "terrestria:block/cypress_planks", - "side": "terrestria:block/cypress_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/cypress_slab_top.json b/client/src/main/resources/assets/terrestria/models/block/cypress_slab_top.json deleted file mode 100644 index d4c4d715..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/cypress_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab_top", - "textures": { - "bottom": "terrestria:block/cypress_planks", - "top": "terrestria:block/cypress_planks", - "side": "terrestria:block/cypress_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/cypress_stairs.json b/client/src/main/resources/assets/terrestria/models/block/cypress_stairs.json deleted file mode 100644 index bd2e1655..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/cypress_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "terrestria:block/cypress_planks", - "top": "terrestria:block/cypress_planks", - "side": "terrestria:block/cypress_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/cypress_stairs_inner.json b/client/src/main/resources/assets/terrestria/models/block/cypress_stairs_inner.json deleted file mode 100644 index 6f8cfd2a..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/cypress_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "terrestria:block/cypress_planks", - "top": "terrestria:block/cypress_planks", - "side": "terrestria:block/cypress_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/cypress_stairs_outer.json b/client/src/main/resources/assets/terrestria/models/block/cypress_stairs_outer.json deleted file mode 100644 index 54bc53dc..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/cypress_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "terrestria:block/cypress_planks", - "top": "terrestria:block/cypress_planks", - "side": "terrestria:block/cypress_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/cypress_trapdoor_bottom.json b/client/src/main/resources/assets/terrestria/models/block/cypress_trapdoor_bottom.json deleted file mode 100644 index 83659704..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/cypress_trapdoor_bottom.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_orientable_trapdoor_bottom", - "textures": { - "texture": "terrestria:block/cypress_trapdoor" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/cypress_trapdoor_open.json b/client/src/main/resources/assets/terrestria/models/block/cypress_trapdoor_open.json deleted file mode 100644 index df907a84..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/cypress_trapdoor_open.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_orientable_trapdoor_open", - "textures": { - "texture": "terrestria:block/cypress_trapdoor" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/cypress_trapdoor_top.json b/client/src/main/resources/assets/terrestria/models/block/cypress_trapdoor_top.json deleted file mode 100644 index 80528824..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/cypress_trapdoor_top.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_orientable_trapdoor_top", - "textures": { - "texture": "terrestria:block/cypress_trapdoor" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/cypress_wood.json b/client/src/main/resources/assets/terrestria/models/block/cypress_wood.json deleted file mode 100644 index 4d3c8035..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/cypress_wood.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "terrestria:block/cypress_log" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/dark_japanese_maple_leaves.json b/client/src/main/resources/assets/terrestria/models/block/dark_japanese_maple_leaves.json deleted file mode 100644 index d8d0f82d..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/dark_japanese_maple_leaves.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/leaves", - "textures": { - "all": "terrestria:block/japanese_maple_leaves_dark" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/dark_japanese_maple_sapling.json b/client/src/main/resources/assets/terrestria/models/block/dark_japanese_maple_sapling.json deleted file mode 100644 index a996bba9..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/dark_japanese_maple_sapling.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cross", - "textures": { - "cross": "terrestria:block/japanese_maple_sapling_dark" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/dead_grass.json b/client/src/main/resources/assets/terrestria/models/block/dead_grass.json deleted file mode 100644 index 91aa79f2..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/dead_grass.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cross", - "textures": { - "cross": "terrestria:block/dead_grass" - } -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/block/hemlock_button.json b/client/src/main/resources/assets/terrestria/models/block/hemlock_button.json deleted file mode 100644 index 4f70f027..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/hemlock_button.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/button", - "textures": { - "texture": "terrestria:block/hemlock_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/hemlock_button_inventory.json b/client/src/main/resources/assets/terrestria/models/block/hemlock_button_inventory.json deleted file mode 100644 index 60b448dd..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/hemlock_button_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/button_inventory", - "textures": { - "texture": "terrestria:block/hemlock_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/hemlock_button_pressed.json b/client/src/main/resources/assets/terrestria/models/block/hemlock_button_pressed.json deleted file mode 100644 index 0df66d80..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/hemlock_button_pressed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/button_pressed", - "textures": { - "texture": "terrestria:block/hemlock_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/hemlock_door_bottom_left.json b/client/src/main/resources/assets/terrestria/models/block/hemlock_door_bottom_left.json deleted file mode 100644 index ef1e4de8..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/hemlock_door_bottom_left.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_bottom_left", - "textures": { - "bottom": "terrestria:block/hemlock_door_bottom", - "top": "terrestria:block/hemlock_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/hemlock_door_bottom_left_open.json b/client/src/main/resources/assets/terrestria/models/block/hemlock_door_bottom_left_open.json deleted file mode 100644 index ad960d87..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/hemlock_door_bottom_left_open.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_bottom_left_open", - "textures": { - "bottom": "terrestria:block/hemlock_door_bottom", - "top": "terrestria:block/hemlock_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/hemlock_door_bottom_right.json b/client/src/main/resources/assets/terrestria/models/block/hemlock_door_bottom_right.json deleted file mode 100644 index 8ac63d39..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/hemlock_door_bottom_right.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_bottom_right", - "textures": { - "bottom": "terrestria:block/hemlock_door_bottom", - "top": "terrestria:block/hemlock_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/hemlock_door_bottom_right_open.json b/client/src/main/resources/assets/terrestria/models/block/hemlock_door_bottom_right_open.json deleted file mode 100644 index 2267a14a..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/hemlock_door_bottom_right_open.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_bottom_right_open", - "textures": { - "bottom": "terrestria:block/hemlock_door_bottom", - "top": "terrestria:block/hemlock_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/hemlock_door_top_left.json b/client/src/main/resources/assets/terrestria/models/block/hemlock_door_top_left.json deleted file mode 100644 index 48ee38b6..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/hemlock_door_top_left.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_top_left", - "textures": { - "bottom": "terrestria:block/hemlock_door_bottom", - "top": "terrestria:block/hemlock_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/hemlock_door_top_left_open.json b/client/src/main/resources/assets/terrestria/models/block/hemlock_door_top_left_open.json deleted file mode 100644 index a0aec6cc..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/hemlock_door_top_left_open.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_top_left_open", - "textures": { - "bottom": "terrestria:block/hemlock_door_bottom", - "top": "terrestria:block/hemlock_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/hemlock_door_top_right.json b/client/src/main/resources/assets/terrestria/models/block/hemlock_door_top_right.json deleted file mode 100644 index aafe953b..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/hemlock_door_top_right.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_top_right", - "textures": { - "bottom": "terrestria:block/hemlock_door_bottom", - "top": "terrestria:block/hemlock_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/hemlock_door_top_right_open.json b/client/src/main/resources/assets/terrestria/models/block/hemlock_door_top_right_open.json deleted file mode 100644 index bf101a6d..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/hemlock_door_top_right_open.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_top_right_open", - "textures": { - "bottom": "terrestria:block/hemlock_door_bottom", - "top": "terrestria:block/hemlock_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/hemlock_fence_gate.json b/client/src/main/resources/assets/terrestria/models/block/hemlock_fence_gate.json deleted file mode 100644 index f85b8e98..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/hemlock_fence_gate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_fence_gate", - "textures": { - "texture": "terrestria:block/hemlock_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/hemlock_fence_gate_open.json b/client/src/main/resources/assets/terrestria/models/block/hemlock_fence_gate_open.json deleted file mode 100644 index cd6ebe6b..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/hemlock_fence_gate_open.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_fence_gate_open", - "textures": { - "texture": "terrestria:block/hemlock_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/hemlock_fence_gate_wall.json b/client/src/main/resources/assets/terrestria/models/block/hemlock_fence_gate_wall.json deleted file mode 100644 index 5c0bb9ae..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/hemlock_fence_gate_wall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_fence_gate_wall", - "textures": { - "texture": "terrestria:block/hemlock_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/hemlock_fence_gate_wall_open.json b/client/src/main/resources/assets/terrestria/models/block/hemlock_fence_gate_wall_open.json deleted file mode 100644 index 42e81436..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/hemlock_fence_gate_wall_open.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_fence_gate_wall_open", - "textures": { - "texture": "terrestria:block/hemlock_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/hemlock_fence_inventory.json b/client/src/main/resources/assets/terrestria/models/block/hemlock_fence_inventory.json deleted file mode 100644 index 991304b0..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/hemlock_fence_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/fence_inventory", - "textures": { - "texture": "terrestria:block/hemlock_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/hemlock_fence_post.json b/client/src/main/resources/assets/terrestria/models/block/hemlock_fence_post.json deleted file mode 100644 index 124caac1..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/hemlock_fence_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/fence_post", - "textures": { - "texture": "terrestria:block/hemlock_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/hemlock_fence_side.json b/client/src/main/resources/assets/terrestria/models/block/hemlock_fence_side.json deleted file mode 100644 index 1c373f11..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/hemlock_fence_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/fence_side", - "textures": { - "texture": "terrestria:block/hemlock_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/hemlock_hanging_sign.json b/client/src/main/resources/assets/terrestria/models/block/hemlock_hanging_sign.json deleted file mode 100644 index f51d7e8c..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/hemlock_hanging_sign.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "textures": { - "particle": "terrestria:block/hemlock_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/hemlock_leaves.json b/client/src/main/resources/assets/terrestria/models/block/hemlock_leaves.json deleted file mode 100644 index b888c6ea..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/hemlock_leaves.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/leaves", - "textures": { - "all": "terrestria:block/hemlock_leaves" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/hemlock_log.json b/client/src/main/resources/assets/terrestria/models/block/hemlock_log.json deleted file mode 100644 index 5f9c4152..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/hemlock_log.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/cube_column", - "textures": { - "end": "terrestria:block/hemlock_log_top", - "side": "terrestria:block/hemlock_log" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/hemlock_planks.json b/client/src/main/resources/assets/terrestria/models/block/hemlock_planks.json deleted file mode 100644 index 60753df2..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/hemlock_planks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "terrestria:block/hemlock_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/hemlock_pressure_plate.json b/client/src/main/resources/assets/terrestria/models/block/hemlock_pressure_plate.json deleted file mode 100644 index ab897d0a..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/hemlock_pressure_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/pressure_plate_up", - "textures": { - "texture": "terrestria:block/hemlock_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/hemlock_pressure_plate_down.json b/client/src/main/resources/assets/terrestria/models/block/hemlock_pressure_plate_down.json deleted file mode 100644 index 349cf040..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/hemlock_pressure_plate_down.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/pressure_plate_down", - "textures": { - "texture": "terrestria:block/hemlock_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/hemlock_quarter_log.json b/client/src/main/resources/assets/terrestria/models/block/hemlock_quarter_log.json deleted file mode 100644 index d24e404c..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/hemlock_quarter_log.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "terrestria:block/quarter_log", - "textures": { - "particle": "terrestria:block/hemlock_log", - "ends": "terrestria:block/hemlock_quarter_log", - "sides": "terrestria:block/hemlock_log", - "insides": "terrestria:block/hemlock_log_bare" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/hemlock_sapling.json b/client/src/main/resources/assets/terrestria/models/block/hemlock_sapling.json deleted file mode 100644 index 2feefe74..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/hemlock_sapling.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cross", - "textures": { - "cross": "terrestria:block/hemlock_sapling" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/hemlock_sign.json b/client/src/main/resources/assets/terrestria/models/block/hemlock_sign.json deleted file mode 100644 index f51d7e8c..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/hemlock_sign.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "textures": { - "particle": "terrestria:block/hemlock_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/hemlock_slab.json b/client/src/main/resources/assets/terrestria/models/block/hemlock_slab.json deleted file mode 100644 index 5dbe5683..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/hemlock_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab", - "textures": { - "bottom": "terrestria:block/hemlock_planks", - "top": "terrestria:block/hemlock_planks", - "side": "terrestria:block/hemlock_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/hemlock_slab_top.json b/client/src/main/resources/assets/terrestria/models/block/hemlock_slab_top.json deleted file mode 100644 index d267a9ce..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/hemlock_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab_top", - "textures": { - "bottom": "terrestria:block/hemlock_planks", - "top": "terrestria:block/hemlock_planks", - "side": "terrestria:block/hemlock_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/hemlock_stairs.json b/client/src/main/resources/assets/terrestria/models/block/hemlock_stairs.json deleted file mode 100644 index f104cd3a..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/hemlock_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "terrestria:block/hemlock_planks", - "top": "terrestria:block/hemlock_planks", - "side": "terrestria:block/hemlock_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/hemlock_stairs_inner.json b/client/src/main/resources/assets/terrestria/models/block/hemlock_stairs_inner.json deleted file mode 100644 index e7f80ca6..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/hemlock_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "terrestria:block/hemlock_planks", - "top": "terrestria:block/hemlock_planks", - "side": "terrestria:block/hemlock_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/hemlock_stairs_outer.json b/client/src/main/resources/assets/terrestria/models/block/hemlock_stairs_outer.json deleted file mode 100644 index 05f1514b..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/hemlock_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "terrestria:block/hemlock_planks", - "top": "terrestria:block/hemlock_planks", - "side": "terrestria:block/hemlock_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/hemlock_trapdoor_bottom.json b/client/src/main/resources/assets/terrestria/models/block/hemlock_trapdoor_bottom.json deleted file mode 100644 index cfa8ad51..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/hemlock_trapdoor_bottom.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_orientable_trapdoor_bottom", - "textures": { - "texture": "terrestria:block/hemlock_trapdoor" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/hemlock_trapdoor_open.json b/client/src/main/resources/assets/terrestria/models/block/hemlock_trapdoor_open.json deleted file mode 100644 index b518f447..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/hemlock_trapdoor_open.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_orientable_trapdoor_open", - "textures": { - "texture": "terrestria:block/hemlock_trapdoor" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/hemlock_trapdoor_top.json b/client/src/main/resources/assets/terrestria/models/block/hemlock_trapdoor_top.json deleted file mode 100644 index ead015d6..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/hemlock_trapdoor_top.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_orientable_trapdoor_top", - "textures": { - "texture": "terrestria:block/hemlock_trapdoor" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/hemlock_wood.json b/client/src/main/resources/assets/terrestria/models/block/hemlock_wood.json deleted file mode 100644 index bfadde47..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/hemlock_wood.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "terrestria:block/hemlock_log" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/indian_paintbrush.json b/client/src/main/resources/assets/terrestria/models/block/indian_paintbrush.json deleted file mode 100644 index 560cd87a..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/indian_paintbrush.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cross", - "textures": { - "cross": "terrestria:block/indian_paintbrush" - } -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_button.json b/client/src/main/resources/assets/terrestria/models/block/japanese_maple_button.json deleted file mode 100644 index 17c7ee1e..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_button.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/button", - "textures": { - "texture": "terrestria:block/japanese_maple_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_button_inventory.json b/client/src/main/resources/assets/terrestria/models/block/japanese_maple_button_inventory.json deleted file mode 100644 index 518a41a3..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_button_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/button_inventory", - "textures": { - "texture": "terrestria:block/japanese_maple_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_button_pressed.json b/client/src/main/resources/assets/terrestria/models/block/japanese_maple_button_pressed.json deleted file mode 100644 index 3fbabcb2..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_button_pressed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/button_pressed", - "textures": { - "texture": "terrestria:block/japanese_maple_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_door_bottom_left.json b/client/src/main/resources/assets/terrestria/models/block/japanese_maple_door_bottom_left.json deleted file mode 100644 index bf619389..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_door_bottom_left.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_bottom_left", - "textures": { - "bottom": "terrestria:block/japanese_maple_door_bottom", - "top": "terrestria:block/japanese_maple_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_door_bottom_left_open.json b/client/src/main/resources/assets/terrestria/models/block/japanese_maple_door_bottom_left_open.json deleted file mode 100644 index 3efe531f..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_door_bottom_left_open.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_bottom_left_open", - "textures": { - "bottom": "terrestria:block/japanese_maple_door_bottom", - "top": "terrestria:block/japanese_maple_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_door_bottom_right.json b/client/src/main/resources/assets/terrestria/models/block/japanese_maple_door_bottom_right.json deleted file mode 100644 index e7005672..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_door_bottom_right.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_bottom_right", - "textures": { - "bottom": "terrestria:block/japanese_maple_door_bottom", - "top": "terrestria:block/japanese_maple_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_door_bottom_right_open.json b/client/src/main/resources/assets/terrestria/models/block/japanese_maple_door_bottom_right_open.json deleted file mode 100644 index db91684b..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_door_bottom_right_open.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_bottom_right_open", - "textures": { - "bottom": "terrestria:block/japanese_maple_door_bottom", - "top": "terrestria:block/japanese_maple_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_door_top_left.json b/client/src/main/resources/assets/terrestria/models/block/japanese_maple_door_top_left.json deleted file mode 100644 index b3307528..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_door_top_left.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_top_left", - "textures": { - "bottom": "terrestria:block/japanese_maple_door_bottom", - "top": "terrestria:block/japanese_maple_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_door_top_left_open.json b/client/src/main/resources/assets/terrestria/models/block/japanese_maple_door_top_left_open.json deleted file mode 100644 index d5de15c3..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_door_top_left_open.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_top_left_open", - "textures": { - "bottom": "terrestria:block/japanese_maple_door_bottom", - "top": "terrestria:block/japanese_maple_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_door_top_right.json b/client/src/main/resources/assets/terrestria/models/block/japanese_maple_door_top_right.json deleted file mode 100644 index 445bda72..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_door_top_right.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_top_right", - "textures": { - "bottom": "terrestria:block/japanese_maple_door_bottom", - "top": "terrestria:block/japanese_maple_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_door_top_right_open.json b/client/src/main/resources/assets/terrestria/models/block/japanese_maple_door_top_right_open.json deleted file mode 100644 index f077a0ac..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_door_top_right_open.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_top_right_open", - "textures": { - "bottom": "terrestria:block/japanese_maple_door_bottom", - "top": "terrestria:block/japanese_maple_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_fence_gate.json b/client/src/main/resources/assets/terrestria/models/block/japanese_maple_fence_gate.json deleted file mode 100644 index f02f69d4..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_fence_gate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_fence_gate", - "textures": { - "texture": "terrestria:block/japanese_maple_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_fence_gate_open.json b/client/src/main/resources/assets/terrestria/models/block/japanese_maple_fence_gate_open.json deleted file mode 100644 index 102ec44c..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_fence_gate_open.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_fence_gate_open", - "textures": { - "texture": "terrestria:block/japanese_maple_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_fence_gate_wall.json b/client/src/main/resources/assets/terrestria/models/block/japanese_maple_fence_gate_wall.json deleted file mode 100644 index 67c1150b..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_fence_gate_wall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_fence_gate_wall", - "textures": { - "texture": "terrestria:block/japanese_maple_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_fence_gate_wall_open.json b/client/src/main/resources/assets/terrestria/models/block/japanese_maple_fence_gate_wall_open.json deleted file mode 100644 index 26610b84..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_fence_gate_wall_open.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_fence_gate_wall_open", - "textures": { - "texture": "terrestria:block/japanese_maple_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_fence_inventory.json b/client/src/main/resources/assets/terrestria/models/block/japanese_maple_fence_inventory.json deleted file mode 100644 index 429072bc..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_fence_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/fence_inventory", - "textures": { - "texture": "terrestria:block/japanese_maple_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_fence_post.json b/client/src/main/resources/assets/terrestria/models/block/japanese_maple_fence_post.json deleted file mode 100644 index c01fa081..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_fence_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/fence_post", - "textures": { - "texture": "terrestria:block/japanese_maple_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_fence_side.json b/client/src/main/resources/assets/terrestria/models/block/japanese_maple_fence_side.json deleted file mode 100644 index d419764c..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_fence_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/fence_side", - "textures": { - "texture": "terrestria:block/japanese_maple_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_hanging_sign.json b/client/src/main/resources/assets/terrestria/models/block/japanese_maple_hanging_sign.json deleted file mode 100644 index 0c1ba17f..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_hanging_sign.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "textures": { - "particle": "terrestria:block/japanese_maple_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_leaves.json b/client/src/main/resources/assets/terrestria/models/block/japanese_maple_leaves.json deleted file mode 100644 index c529abe6..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_leaves.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/leaves", - "textures": { - "all": "terrestria:block/japanese_maple_leaves" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_log.json b/client/src/main/resources/assets/terrestria/models/block/japanese_maple_log.json deleted file mode 100644 index 5f1c0184..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_log.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/cube_column", - "textures": { - "end": "terrestria:block/japanese_maple_log_top", - "side": "terrestria:block/japanese_maple_log" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_planks.json b/client/src/main/resources/assets/terrestria/models/block/japanese_maple_planks.json deleted file mode 100644 index da94c40b..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_planks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "terrestria:block/japanese_maple_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_pressure_plate.json b/client/src/main/resources/assets/terrestria/models/block/japanese_maple_pressure_plate.json deleted file mode 100644 index ea39f03c..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_pressure_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/pressure_plate_up", - "textures": { - "texture": "terrestria:block/japanese_maple_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_pressure_plate_down.json b/client/src/main/resources/assets/terrestria/models/block/japanese_maple_pressure_plate_down.json deleted file mode 100644 index 15fa9150..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_pressure_plate_down.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/pressure_plate_down", - "textures": { - "texture": "terrestria:block/japanese_maple_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_sapling.json b/client/src/main/resources/assets/terrestria/models/block/japanese_maple_sapling.json deleted file mode 100644 index 828ff66a..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_sapling.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cross", - "textures": { - "cross": "terrestria:block/japanese_maple_sapling" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_shrub_leaves.json b/client/src/main/resources/assets/terrestria/models/block/japanese_maple_shrub_leaves.json deleted file mode 100644 index 9ed870f0..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_shrub_leaves.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/leaves", - "textures": { - "all": "terrestria:block/japanese_maple_leaves_green" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_shrub_sapling.json b/client/src/main/resources/assets/terrestria/models/block/japanese_maple_shrub_sapling.json deleted file mode 100644 index 6f5a6969..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_shrub_sapling.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cross", - "textures": { - "cross": "terrestria:block/japanese_maple_shrub_sapling" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_sign.json b/client/src/main/resources/assets/terrestria/models/block/japanese_maple_sign.json deleted file mode 100644 index 0c1ba17f..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_sign.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "textures": { - "particle": "terrestria:block/japanese_maple_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_slab.json b/client/src/main/resources/assets/terrestria/models/block/japanese_maple_slab.json deleted file mode 100644 index 38a629b3..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab", - "textures": { - "bottom": "terrestria:block/japanese_maple_planks", - "top": "terrestria:block/japanese_maple_planks", - "side": "terrestria:block/japanese_maple_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_slab_top.json b/client/src/main/resources/assets/terrestria/models/block/japanese_maple_slab_top.json deleted file mode 100644 index 0376a176..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab_top", - "textures": { - "bottom": "terrestria:block/japanese_maple_planks", - "top": "terrestria:block/japanese_maple_planks", - "side": "terrestria:block/japanese_maple_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_stairs.json b/client/src/main/resources/assets/terrestria/models/block/japanese_maple_stairs.json deleted file mode 100644 index 17e84e08..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "terrestria:block/japanese_maple_planks", - "top": "terrestria:block/japanese_maple_planks", - "side": "terrestria:block/japanese_maple_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_stairs_inner.json b/client/src/main/resources/assets/terrestria/models/block/japanese_maple_stairs_inner.json deleted file mode 100644 index 4fa577f3..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "terrestria:block/japanese_maple_planks", - "top": "terrestria:block/japanese_maple_planks", - "side": "terrestria:block/japanese_maple_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_stairs_outer.json b/client/src/main/resources/assets/terrestria/models/block/japanese_maple_stairs_outer.json deleted file mode 100644 index 2309fc9a..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "terrestria:block/japanese_maple_planks", - "top": "terrestria:block/japanese_maple_planks", - "side": "terrestria:block/japanese_maple_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_trapdoor_bottom.json b/client/src/main/resources/assets/terrestria/models/block/japanese_maple_trapdoor_bottom.json deleted file mode 100644 index 01a1de66..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_trapdoor_bottom.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_orientable_trapdoor_bottom", - "textures": { - "texture": "terrestria:block/japanese_maple_trapdoor" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_trapdoor_open.json b/client/src/main/resources/assets/terrestria/models/block/japanese_maple_trapdoor_open.json deleted file mode 100644 index 925c511d..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_trapdoor_open.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_orientable_trapdoor_open", - "textures": { - "texture": "terrestria:block/japanese_maple_trapdoor" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_trapdoor_top.json b/client/src/main/resources/assets/terrestria/models/block/japanese_maple_trapdoor_top.json deleted file mode 100644 index f9348e17..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_trapdoor_top.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_orientable_trapdoor_top", - "textures": { - "texture": "terrestria:block/japanese_maple_trapdoor" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_wood.json b/client/src/main/resources/assets/terrestria/models/block/japanese_maple_wood.json deleted file mode 100644 index 9251194d..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/japanese_maple_wood.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "terrestria:block/japanese_maple_log" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/jungle_palm_leaves.json b/client/src/main/resources/assets/terrestria/models/block/jungle_palm_leaves.json deleted file mode 100644 index 5ab2305f..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/jungle_palm_leaves.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/leaves", - "textures": { - "all": "terrestria:block/jungle_palm_leaves" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/jungle_palm_sapling.json b/client/src/main/resources/assets/terrestria/models/block/jungle_palm_sapling.json deleted file mode 100644 index 1885ab3a..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/jungle_palm_sapling.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cross", - "textures": { - "cross": "terrestria:block/jungle_palm_sapling" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/monsteras.json b/client/src/main/resources/assets/terrestria/models/block/monsteras.json deleted file mode 100644 index 4ad37447..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/monsteras.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cross", - "textures": { - "cross": "terrestria:block/monsteras" - } -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_brick_slab.json b/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_brick_slab.json deleted file mode 100644 index b9ce94a1..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_brick_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab", - "textures": { - "bottom": "terrestria:block/mossy_basalt_bricks", - "top": "terrestria:block/mossy_basalt_bricks", - "side": "terrestria:block/mossy_basalt_bricks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_brick_slab_top.json b/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_brick_slab_top.json deleted file mode 100644 index 78970cae..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_brick_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab_top", - "textures": { - "bottom": "terrestria:block/mossy_basalt_bricks", - "top": "terrestria:block/mossy_basalt_bricks", - "side": "terrestria:block/mossy_basalt_bricks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_brick_stairs.json b/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_brick_stairs.json deleted file mode 100644 index 630ee374..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_brick_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "terrestria:block/mossy_basalt_bricks", - "top": "terrestria:block/mossy_basalt_bricks", - "side": "terrestria:block/mossy_basalt_bricks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_brick_stairs_inner.json b/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_brick_stairs_inner.json deleted file mode 100644 index c3549594..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_brick_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "terrestria:block/mossy_basalt_bricks", - "top": "terrestria:block/mossy_basalt_bricks", - "side": "terrestria:block/mossy_basalt_bricks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_brick_stairs_outer.json b/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_brick_stairs_outer.json deleted file mode 100644 index 7d3dcee4..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_brick_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "terrestria:block/mossy_basalt_bricks", - "top": "terrestria:block/mossy_basalt_bricks", - "side": "terrestria:block/mossy_basalt_bricks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_brick_wall_post.json b/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_brick_wall_post.json deleted file mode 100644 index bf2d1e8a..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_brick_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_post", - "textures": { - "wall": "terrestria:block/mossy_basalt_bricks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_brick_wall_side.json b/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_brick_wall_side.json deleted file mode 100644 index 5c47d67d..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_brick_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_side", - "textures": { - "wall": "terrestria:block/mossy_basalt_bricks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_brick_wall_side_tall.json b/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_brick_wall_side_tall.json deleted file mode 100644 index 7beb77fb..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_brick_wall_side_tall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_side_tall", - "textures": { - "wall": "terrestria:block/mossy_basalt_bricks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_bricks.json b/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_bricks.json deleted file mode 100644 index 4a89590e..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_bricks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "terrestria:block/mossy_basalt_bricks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_cobblestone.json b/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_cobblestone.json deleted file mode 100644 index 737acc76..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_cobblestone.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "terrestria:block/mossy_basalt_cobblestone" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_cobblestone_slab.json b/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_cobblestone_slab.json deleted file mode 100644 index d5976f94..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_cobblestone_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab", - "textures": { - "bottom": "terrestria:block/mossy_basalt_cobblestone", - "top": "terrestria:block/mossy_basalt_cobblestone", - "side": "terrestria:block/mossy_basalt_cobblestone" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_cobblestone_slab_top.json b/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_cobblestone_slab_top.json deleted file mode 100644 index 9d829cd7..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_cobblestone_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab_top", - "textures": { - "bottom": "terrestria:block/mossy_basalt_cobblestone", - "top": "terrestria:block/mossy_basalt_cobblestone", - "side": "terrestria:block/mossy_basalt_cobblestone" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_cobblestone_stairs.json b/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_cobblestone_stairs.json deleted file mode 100644 index ba382955..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_cobblestone_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "terrestria:block/mossy_basalt_cobblestone", - "top": "terrestria:block/mossy_basalt_cobblestone", - "side": "terrestria:block/mossy_basalt_cobblestone" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_cobblestone_stairs_inner.json b/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_cobblestone_stairs_inner.json deleted file mode 100644 index 825c845e..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_cobblestone_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "terrestria:block/mossy_basalt_cobblestone", - "top": "terrestria:block/mossy_basalt_cobblestone", - "side": "terrestria:block/mossy_basalt_cobblestone" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_cobblestone_stairs_outer.json b/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_cobblestone_stairs_outer.json deleted file mode 100644 index ea9e746a..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_cobblestone_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "terrestria:block/mossy_basalt_cobblestone", - "top": "terrestria:block/mossy_basalt_cobblestone", - "side": "terrestria:block/mossy_basalt_cobblestone" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_cobblestone_wall_post.json b/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_cobblestone_wall_post.json deleted file mode 100644 index 0135944c..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_cobblestone_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_post", - "textures": { - "wall": "terrestria:block/mossy_basalt_cobblestone" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_cobblestone_wall_side.json b/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_cobblestone_wall_side.json deleted file mode 100644 index 1ee84833..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_cobblestone_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_side", - "textures": { - "wall": "terrestria:block/mossy_basalt_cobblestone" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_cobblestone_wall_side_tall.json b/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_cobblestone_wall_side_tall.json deleted file mode 100644 index ccca2cb6..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/mossy_basalt_cobblestone_wall_side_tall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_side_tall", - "textures": { - "wall": "terrestria:block/mossy_basalt_cobblestone" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/potted_agave.json b/client/src/main/resources/assets/terrestria/models/block/potted_agave.json deleted file mode 100644 index 23fb93ea..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/potted_agave.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/flower_pot_cross", - "textures": { - "plant": "terrestria:block/agave" - } -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/block/potted_aloe_vera.json b/client/src/main/resources/assets/terrestria/models/block/potted_aloe_vera.json deleted file mode 100644 index 59295c57..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/potted_aloe_vera.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/flower_pot_cross", - "textures": { - "plant": "terrestria:block/aloe_vera" - } -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/block/potted_bryce_sapling.json b/client/src/main/resources/assets/terrestria/models/block/potted_bryce_sapling.json deleted file mode 100644 index 6eafcc32..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/potted_bryce_sapling.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/flower_pot_cross", - "textures": { - "plant": "terrestria:block/bryce_sapling" - } -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/block/potted_cypress_sapling.json b/client/src/main/resources/assets/terrestria/models/block/potted_cypress_sapling.json deleted file mode 100644 index b348dab4..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/potted_cypress_sapling.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/flower_pot_cross", - "textures": { - "plant": "terrestria:block/cypress_sapling" - } -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/block/potted_dark_japanese_maple_sapling.json b/client/src/main/resources/assets/terrestria/models/block/potted_dark_japanese_maple_sapling.json deleted file mode 100644 index 8dfedfad..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/potted_dark_japanese_maple_sapling.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/flower_pot_cross", - "textures": { - "plant": "terrestria:block/japanese_maple_sapling_dark" - } -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/block/potted_hemlock_sapling.json b/client/src/main/resources/assets/terrestria/models/block/potted_hemlock_sapling.json deleted file mode 100644 index 4361361b..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/potted_hemlock_sapling.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/flower_pot_cross", - "textures": { - "plant": "terrestria:block/hemlock_sapling" - } -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/block/potted_indian_paintbrush.json b/client/src/main/resources/assets/terrestria/models/block/potted_indian_paintbrush.json deleted file mode 100644 index 46c58f1b..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/potted_indian_paintbrush.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/flower_pot_cross", - "textures": { - "plant": "terrestria:block/indian_paintbrush" - } -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/block/potted_japanese_maple_sapling.json b/client/src/main/resources/assets/terrestria/models/block/potted_japanese_maple_sapling.json deleted file mode 100644 index dc0721e3..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/potted_japanese_maple_sapling.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/flower_pot_cross", - "textures": { - "plant": "terrestria:block/japanese_maple_sapling" - } -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/block/potted_japanese_maple_shrub_sapling.json b/client/src/main/resources/assets/terrestria/models/block/potted_japanese_maple_shrub_sapling.json deleted file mode 100644 index 454e489c..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/potted_japanese_maple_shrub_sapling.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/flower_pot_cross", - "textures": { - "plant": "terrestria:block/japanese_maple_shrub_sapling" - } -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/block/potted_jungle_palm_sapling.json b/client/src/main/resources/assets/terrestria/models/block/potted_jungle_palm_sapling.json deleted file mode 100644 index 1830ec2b..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/potted_jungle_palm_sapling.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/flower_pot_cross", - "textures": { - "plant": "terrestria:block/jungle_palm_sapling" - } -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/block/potted_monsteras.json b/client/src/main/resources/assets/terrestria/models/block/potted_monsteras.json deleted file mode 100644 index 2cd393e9..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/potted_monsteras.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/flower_pot_cross", - "textures": { - "plant": "terrestria:block/monsteras" - } -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/block/potted_rainbow_eucalyptus_sapling.json b/client/src/main/resources/assets/terrestria/models/block/potted_rainbow_eucalyptus_sapling.json deleted file mode 100644 index d92854db..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/potted_rainbow_eucalyptus_sapling.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/flower_pot_cross", - "textures": { - "plant": "terrestria:block/rainbow_eucalyptus_sapling" - } -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/block/potted_redwood_sapling.json b/client/src/main/resources/assets/terrestria/models/block/potted_redwood_sapling.json deleted file mode 100644 index 637673f2..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/potted_redwood_sapling.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/flower_pot_cross", - "textures": { - "plant": "terrestria:block/redwood_sapling" - } -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/block/potted_rubber_sapling.json b/client/src/main/resources/assets/terrestria/models/block/potted_rubber_sapling.json deleted file mode 100644 index f16b7e85..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/potted_rubber_sapling.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/flower_pot_cross", - "textures": { - "plant": "terrestria:block/rubber_sapling" - } -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/block/potted_saguaro_cactus_sapling.json b/client/src/main/resources/assets/terrestria/models/block/potted_saguaro_cactus_sapling.json deleted file mode 100644 index 0dce632e..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/potted_saguaro_cactus_sapling.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/flower_pot_cross", - "textures": { - "plant": "terrestria:block/saguaro_cactus_sapling" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/potted_sakura_sapling.json b/client/src/main/resources/assets/terrestria/models/block/potted_sakura_sapling.json deleted file mode 100644 index 7a26e8f0..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/potted_sakura_sapling.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/flower_pot_cross", - "textures": { - "plant": "terrestria:block/sakura_sapling" - } -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/block/potted_tiny_cactus.json b/client/src/main/resources/assets/terrestria/models/block/potted_tiny_cactus.json deleted file mode 100644 index b6dbec70..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/potted_tiny_cactus.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/flower_pot_cross", - "textures": { - "plant": "terrestria:block/tiny_cactus" - } -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/block/potted_willow_sapling.json b/client/src/main/resources/assets/terrestria/models/block/potted_willow_sapling.json deleted file mode 100644 index ade36c6b..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/potted_willow_sapling.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/flower_pot_cross", - "textures": { - "plant": "terrestria:block/willow_sapling" - } -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/block/potted_yucca_palm_sapling.json b/client/src/main/resources/assets/terrestria/models/block/potted_yucca_palm_sapling.json deleted file mode 100644 index 2dc6fd6a..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/potted_yucca_palm_sapling.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/flower_pot_cross", - "textures": { - "plant": "terrestria:block/yucca_palm_sapling" - } -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/block/quarter_log.json b/client/src/main/resources/assets/terrestria/models/block/quarter_log.json deleted file mode 100644 index 4514c49f..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/quarter_log.json +++ /dev/null @@ -1,81 +0,0 @@ -{ - "parent": "minecraft:block/block", - "elements": [ - { - "from": [ - 0, - 0, - 0 - ], - "to": [ - 16, - 16, - 16 - ], - "faces": { - "down": { - "uv": [ - 0, - 0, - 16, - 16 - ], - "texture": "#ends", - "rotation": 90, - "cullface": "down" - }, - "up": { - "uv": [ - 0, - 0, - 16, - 16 - ], - "texture": "#ends", - "cullface": "up" - }, - "north": { - "uv": [ - 0, - 0, - 16, - 16 - ], - "texture": "#insides", - "rotation": 180, - "cullface": "north" - }, - "south": { - "uv": [ - 0, - 0, - 16, - 16 - ], - "texture": "#sides", - "cullface": "south" - }, - "west": { - "uv": [ - 0, - 0, - 16, - 16 - ], - "texture": "#sides", - "cullface": "west" - }, - "east": { - "uv": [ - 0, - 0, - 16, - 16 - ], - "texture": "#insides", - "cullface": "east" - } - } - } - ] -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_button.json b/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_button.json deleted file mode 100644 index 649ebff8..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_button.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/button", - "textures": { - "texture": "terrestria:block/rainbow_eucalyptus_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_button_inventory.json b/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_button_inventory.json deleted file mode 100644 index 4b87008c..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_button_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/button_inventory", - "textures": { - "texture": "terrestria:block/rainbow_eucalyptus_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_button_pressed.json b/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_button_pressed.json deleted file mode 100644 index 878747a0..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_button_pressed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/button_pressed", - "textures": { - "texture": "terrestria:block/rainbow_eucalyptus_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_door_bottom_left.json b/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_door_bottom_left.json deleted file mode 100644 index fdd9caca..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_door_bottom_left.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_bottom_left", - "textures": { - "bottom": "terrestria:block/rainbow_eucalyptus_door_bottom", - "top": "terrestria:block/rainbow_eucalyptus_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_door_bottom_left_open.json b/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_door_bottom_left_open.json deleted file mode 100644 index 55699e50..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_door_bottom_left_open.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_bottom_left_open", - "textures": { - "bottom": "terrestria:block/rainbow_eucalyptus_door_bottom", - "top": "terrestria:block/rainbow_eucalyptus_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_door_bottom_right.json b/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_door_bottom_right.json deleted file mode 100644 index bfcb7fbe..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_door_bottom_right.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_bottom_right", - "textures": { - "bottom": "terrestria:block/rainbow_eucalyptus_door_bottom", - "top": "terrestria:block/rainbow_eucalyptus_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_door_bottom_right_open.json b/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_door_bottom_right_open.json deleted file mode 100644 index 0b59463b..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_door_bottom_right_open.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_bottom_right_open", - "textures": { - "bottom": "terrestria:block/rainbow_eucalyptus_door_bottom", - "top": "terrestria:block/rainbow_eucalyptus_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_door_top_left.json b/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_door_top_left.json deleted file mode 100644 index 19a0ef88..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_door_top_left.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_top_left", - "textures": { - "bottom": "terrestria:block/rainbow_eucalyptus_door_bottom", - "top": "terrestria:block/rainbow_eucalyptus_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_door_top_left_open.json b/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_door_top_left_open.json deleted file mode 100644 index 300817e1..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_door_top_left_open.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_top_left_open", - "textures": { - "bottom": "terrestria:block/rainbow_eucalyptus_door_bottom", - "top": "terrestria:block/rainbow_eucalyptus_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_door_top_right.json b/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_door_top_right.json deleted file mode 100644 index 8b1a06c5..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_door_top_right.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_top_right", - "textures": { - "bottom": "terrestria:block/rainbow_eucalyptus_door_bottom", - "top": "terrestria:block/rainbow_eucalyptus_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_door_top_right_open.json b/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_door_top_right_open.json deleted file mode 100644 index 3c8bdf99..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_door_top_right_open.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_top_right_open", - "textures": { - "bottom": "terrestria:block/rainbow_eucalyptus_door_bottom", - "top": "terrestria:block/rainbow_eucalyptus_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_fence_gate.json b/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_fence_gate.json deleted file mode 100644 index 98287cb2..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_fence_gate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_fence_gate", - "textures": { - "texture": "terrestria:block/rainbow_eucalyptus_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_fence_gate_open.json b/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_fence_gate_open.json deleted file mode 100644 index 51fb5085..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_fence_gate_open.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_fence_gate_open", - "textures": { - "texture": "terrestria:block/rainbow_eucalyptus_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_fence_gate_wall.json b/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_fence_gate_wall.json deleted file mode 100644 index 37b4b2eb..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_fence_gate_wall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_fence_gate_wall", - "textures": { - "texture": "terrestria:block/rainbow_eucalyptus_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_fence_gate_wall_open.json b/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_fence_gate_wall_open.json deleted file mode 100644 index 9cdba903..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_fence_gate_wall_open.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_fence_gate_wall_open", - "textures": { - "texture": "terrestria:block/rainbow_eucalyptus_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_fence_inventory.json b/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_fence_inventory.json deleted file mode 100644 index 5d599166..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_fence_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/fence_inventory", - "textures": { - "texture": "terrestria:block/rainbow_eucalyptus_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_fence_post.json b/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_fence_post.json deleted file mode 100644 index 0054ebf0..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_fence_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/fence_post", - "textures": { - "texture": "terrestria:block/rainbow_eucalyptus_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_fence_side.json b/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_fence_side.json deleted file mode 100644 index e14b3b8d..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_fence_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/fence_side", - "textures": { - "texture": "terrestria:block/rainbow_eucalyptus_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_hanging_sign.json b/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_hanging_sign.json deleted file mode 100644 index 72899d29..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_hanging_sign.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "textures": { - "particle": "terrestria:block/rainbow_eucalyptus_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_leaves.json b/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_leaves.json deleted file mode 100644 index 2b9c0aa7..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_leaves.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/leaves", - "textures": { - "all": "terrestria:block/rainbow_eucalyptus_leaves" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_log.json b/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_log.json deleted file mode 100644 index 304bb318..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_log.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/cube_column", - "textures": { - "end": "terrestria:block/rainbow_eucalyptus_log_top", - "side": "terrestria:block/rainbow_eucalyptus_log" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_planks.json b/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_planks.json deleted file mode 100644 index e449714a..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_planks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "terrestria:block/rainbow_eucalyptus_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_pressure_plate.json b/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_pressure_plate.json deleted file mode 100644 index bd9febc9..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_pressure_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/pressure_plate_up", - "textures": { - "texture": "terrestria:block/rainbow_eucalyptus_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_pressure_plate_down.json b/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_pressure_plate_down.json deleted file mode 100644 index 0e06a8b3..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_pressure_plate_down.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/pressure_plate_down", - "textures": { - "texture": "terrestria:block/rainbow_eucalyptus_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_quarter_log.json b/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_quarter_log.json deleted file mode 100644 index 8fee5338..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_quarter_log.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "terrestria:block/quarter_log", - "textures": { - "particle": "terrestria:block/rainbow_eucalyptus_log", - "ends": "terrestria:block/rainbow_eucalyptus_quarter_log", - "sides": "terrestria:block/rainbow_eucalyptus_log", - "insides": "terrestria:block/rainbow_eucalyptus_log_bare" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_sapling.json b/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_sapling.json deleted file mode 100644 index 11645633..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_sapling.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cross", - "textures": { - "cross": "terrestria:block/rainbow_eucalyptus_sapling" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_sign.json b/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_sign.json deleted file mode 100644 index 72899d29..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_sign.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "textures": { - "particle": "terrestria:block/rainbow_eucalyptus_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_slab.json b/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_slab.json deleted file mode 100644 index e518873f..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab", - "textures": { - "bottom": "terrestria:block/rainbow_eucalyptus_planks", - "top": "terrestria:block/rainbow_eucalyptus_planks", - "side": "terrestria:block/rainbow_eucalyptus_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_slab_top.json b/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_slab_top.json deleted file mode 100644 index f34ee04d..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab_top", - "textures": { - "bottom": "terrestria:block/rainbow_eucalyptus_planks", - "top": "terrestria:block/rainbow_eucalyptus_planks", - "side": "terrestria:block/rainbow_eucalyptus_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_stairs.json b/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_stairs.json deleted file mode 100644 index c89c1dc2..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "terrestria:block/rainbow_eucalyptus_planks", - "top": "terrestria:block/rainbow_eucalyptus_planks", - "side": "terrestria:block/rainbow_eucalyptus_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_stairs_inner.json b/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_stairs_inner.json deleted file mode 100644 index bbea30e4..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "terrestria:block/rainbow_eucalyptus_planks", - "top": "terrestria:block/rainbow_eucalyptus_planks", - "side": "terrestria:block/rainbow_eucalyptus_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_stairs_outer.json b/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_stairs_outer.json deleted file mode 100644 index b033dfea..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "terrestria:block/rainbow_eucalyptus_planks", - "top": "terrestria:block/rainbow_eucalyptus_planks", - "side": "terrestria:block/rainbow_eucalyptus_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_trapdoor_bottom.json b/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_trapdoor_bottom.json deleted file mode 100644 index 5dfcb1b4..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_trapdoor_bottom.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_orientable_trapdoor_bottom", - "textures": { - "texture": "terrestria:block/rainbow_eucalyptus_trapdoor" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_trapdoor_open.json b/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_trapdoor_open.json deleted file mode 100644 index 3c1c8351..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_trapdoor_open.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_orientable_trapdoor_open", - "textures": { - "texture": "terrestria:block/rainbow_eucalyptus_trapdoor" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_trapdoor_top.json b/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_trapdoor_top.json deleted file mode 100644 index fc4ba463..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_trapdoor_top.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_orientable_trapdoor_top", - "textures": { - "texture": "terrestria:block/rainbow_eucalyptus_trapdoor" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_wood.json b/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_wood.json deleted file mode 100644 index 016ec95f..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rainbow_eucalyptus_wood.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "terrestria:block/rainbow_eucalyptus_log" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/redwood_button.json b/client/src/main/resources/assets/terrestria/models/block/redwood_button.json deleted file mode 100644 index cc3a6aec..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/redwood_button.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/button", - "textures": { - "texture": "terrestria:block/redwood_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/redwood_button_inventory.json b/client/src/main/resources/assets/terrestria/models/block/redwood_button_inventory.json deleted file mode 100644 index 194fd546..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/redwood_button_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/button_inventory", - "textures": { - "texture": "terrestria:block/redwood_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/redwood_button_pressed.json b/client/src/main/resources/assets/terrestria/models/block/redwood_button_pressed.json deleted file mode 100644 index 8d2bf5d1..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/redwood_button_pressed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/button_pressed", - "textures": { - "texture": "terrestria:block/redwood_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/redwood_door_bottom_left.json b/client/src/main/resources/assets/terrestria/models/block/redwood_door_bottom_left.json deleted file mode 100644 index 42e290a0..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/redwood_door_bottom_left.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_bottom_left", - "textures": { - "bottom": "terrestria:block/redwood_door_bottom", - "top": "terrestria:block/redwood_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/redwood_door_bottom_left_open.json b/client/src/main/resources/assets/terrestria/models/block/redwood_door_bottom_left_open.json deleted file mode 100644 index 000fe9e3..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/redwood_door_bottom_left_open.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_bottom_left_open", - "textures": { - "bottom": "terrestria:block/redwood_door_bottom", - "top": "terrestria:block/redwood_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/redwood_door_bottom_right.json b/client/src/main/resources/assets/terrestria/models/block/redwood_door_bottom_right.json deleted file mode 100644 index b48bb76e..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/redwood_door_bottom_right.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_bottom_right", - "textures": { - "bottom": "terrestria:block/redwood_door_bottom", - "top": "terrestria:block/redwood_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/redwood_door_bottom_right_open.json b/client/src/main/resources/assets/terrestria/models/block/redwood_door_bottom_right_open.json deleted file mode 100644 index c1077140..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/redwood_door_bottom_right_open.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_bottom_right_open", - "textures": { - "bottom": "terrestria:block/redwood_door_bottom", - "top": "terrestria:block/redwood_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/redwood_door_top_left.json b/client/src/main/resources/assets/terrestria/models/block/redwood_door_top_left.json deleted file mode 100644 index 3e1e6e7c..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/redwood_door_top_left.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_top_left", - "textures": { - "bottom": "terrestria:block/redwood_door_bottom", - "top": "terrestria:block/redwood_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/redwood_door_top_left_open.json b/client/src/main/resources/assets/terrestria/models/block/redwood_door_top_left_open.json deleted file mode 100644 index fbb9f28c..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/redwood_door_top_left_open.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_top_left_open", - "textures": { - "bottom": "terrestria:block/redwood_door_bottom", - "top": "terrestria:block/redwood_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/redwood_door_top_right.json b/client/src/main/resources/assets/terrestria/models/block/redwood_door_top_right.json deleted file mode 100644 index c29e6e31..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/redwood_door_top_right.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_top_right", - "textures": { - "bottom": "terrestria:block/redwood_door_bottom", - "top": "terrestria:block/redwood_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/redwood_door_top_right_open.json b/client/src/main/resources/assets/terrestria/models/block/redwood_door_top_right_open.json deleted file mode 100644 index 4136c54c..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/redwood_door_top_right_open.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_top_right_open", - "textures": { - "bottom": "terrestria:block/redwood_door_bottom", - "top": "terrestria:block/redwood_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/redwood_fence_gate.json b/client/src/main/resources/assets/terrestria/models/block/redwood_fence_gate.json deleted file mode 100644 index 59c67a53..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/redwood_fence_gate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_fence_gate", - "textures": { - "texture": "terrestria:block/redwood_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/redwood_fence_gate_open.json b/client/src/main/resources/assets/terrestria/models/block/redwood_fence_gate_open.json deleted file mode 100644 index 20257606..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/redwood_fence_gate_open.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_fence_gate_open", - "textures": { - "texture": "terrestria:block/redwood_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/redwood_fence_gate_wall.json b/client/src/main/resources/assets/terrestria/models/block/redwood_fence_gate_wall.json deleted file mode 100644 index 450d4c16..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/redwood_fence_gate_wall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_fence_gate_wall", - "textures": { - "texture": "terrestria:block/redwood_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/redwood_fence_gate_wall_open.json b/client/src/main/resources/assets/terrestria/models/block/redwood_fence_gate_wall_open.json deleted file mode 100644 index 9c63aa8c..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/redwood_fence_gate_wall_open.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_fence_gate_wall_open", - "textures": { - "texture": "terrestria:block/redwood_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/redwood_fence_inventory.json b/client/src/main/resources/assets/terrestria/models/block/redwood_fence_inventory.json deleted file mode 100644 index cd7761b4..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/redwood_fence_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/fence_inventory", - "textures": { - "texture": "terrestria:block/redwood_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/redwood_fence_post.json b/client/src/main/resources/assets/terrestria/models/block/redwood_fence_post.json deleted file mode 100644 index 54b6d338..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/redwood_fence_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/fence_post", - "textures": { - "texture": "terrestria:block/redwood_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/redwood_fence_side.json b/client/src/main/resources/assets/terrestria/models/block/redwood_fence_side.json deleted file mode 100644 index f82f9e15..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/redwood_fence_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/fence_side", - "textures": { - "texture": "terrestria:block/redwood_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/redwood_hanging_sign.json b/client/src/main/resources/assets/terrestria/models/block/redwood_hanging_sign.json deleted file mode 100644 index 01df7591..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/redwood_hanging_sign.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "textures": { - "particle": "terrestria:block/redwood_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/redwood_leaves.json b/client/src/main/resources/assets/terrestria/models/block/redwood_leaves.json deleted file mode 100644 index 39123316..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/redwood_leaves.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/leaves", - "textures": { - "all": "terrestria:block/redwood_leaves" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/redwood_log.json b/client/src/main/resources/assets/terrestria/models/block/redwood_log.json deleted file mode 100644 index 46e84142..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/redwood_log.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/cube_column", - "textures": { - "end": "terrestria:block/redwood_log_top", - "side": "terrestria:block/redwood_log" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/redwood_planks.json b/client/src/main/resources/assets/terrestria/models/block/redwood_planks.json deleted file mode 100644 index ec3a54df..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/redwood_planks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "terrestria:block/redwood_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/redwood_pressure_plate.json b/client/src/main/resources/assets/terrestria/models/block/redwood_pressure_plate.json deleted file mode 100644 index 34610436..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/redwood_pressure_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/pressure_plate_up", - "textures": { - "texture": "terrestria:block/redwood_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/redwood_pressure_plate_down.json b/client/src/main/resources/assets/terrestria/models/block/redwood_pressure_plate_down.json deleted file mode 100644 index 46d0d01b..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/redwood_pressure_plate_down.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/pressure_plate_down", - "textures": { - "texture": "terrestria:block/redwood_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/redwood_quarter_log.json b/client/src/main/resources/assets/terrestria/models/block/redwood_quarter_log.json deleted file mode 100644 index bfbf3a6c..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/redwood_quarter_log.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "terrestria:block/quarter_log", - "textures": { - "particle": "terrestria:block/redwood_log", - "ends": "terrestria:block/redwood_quarter_log", - "sides": "terrestria:block/redwood_log", - "insides": "terrestria:block/redwood_log_bare" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/redwood_sapling.json b/client/src/main/resources/assets/terrestria/models/block/redwood_sapling.json deleted file mode 100644 index 7b30530f..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/redwood_sapling.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cross", - "textures": { - "cross": "terrestria:block/redwood_sapling" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/redwood_sign.json b/client/src/main/resources/assets/terrestria/models/block/redwood_sign.json deleted file mode 100644 index 01df7591..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/redwood_sign.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "textures": { - "particle": "terrestria:block/redwood_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/redwood_slab.json b/client/src/main/resources/assets/terrestria/models/block/redwood_slab.json deleted file mode 100644 index 5157f522..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/redwood_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab", - "textures": { - "bottom": "terrestria:block/redwood_planks", - "top": "terrestria:block/redwood_planks", - "side": "terrestria:block/redwood_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/redwood_slab_top.json b/client/src/main/resources/assets/terrestria/models/block/redwood_slab_top.json deleted file mode 100644 index 51dd574b..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/redwood_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab_top", - "textures": { - "bottom": "terrestria:block/redwood_planks", - "top": "terrestria:block/redwood_planks", - "side": "terrestria:block/redwood_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/redwood_stairs.json b/client/src/main/resources/assets/terrestria/models/block/redwood_stairs.json deleted file mode 100644 index beda9452..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/redwood_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "terrestria:block/redwood_planks", - "top": "terrestria:block/redwood_planks", - "side": "terrestria:block/redwood_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/redwood_stairs_inner.json b/client/src/main/resources/assets/terrestria/models/block/redwood_stairs_inner.json deleted file mode 100644 index 502cb219..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/redwood_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "terrestria:block/redwood_planks", - "top": "terrestria:block/redwood_planks", - "side": "terrestria:block/redwood_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/redwood_stairs_outer.json b/client/src/main/resources/assets/terrestria/models/block/redwood_stairs_outer.json deleted file mode 100644 index a762702d..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/redwood_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "terrestria:block/redwood_planks", - "top": "terrestria:block/redwood_planks", - "side": "terrestria:block/redwood_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/redwood_trapdoor_bottom.json b/client/src/main/resources/assets/terrestria/models/block/redwood_trapdoor_bottom.json deleted file mode 100644 index 834485d0..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/redwood_trapdoor_bottom.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_orientable_trapdoor_bottom", - "textures": { - "texture": "terrestria:block/redwood_trapdoor" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/redwood_trapdoor_open.json b/client/src/main/resources/assets/terrestria/models/block/redwood_trapdoor_open.json deleted file mode 100644 index f8c71bc7..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/redwood_trapdoor_open.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_orientable_trapdoor_open", - "textures": { - "texture": "terrestria:block/redwood_trapdoor" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/redwood_trapdoor_top.json b/client/src/main/resources/assets/terrestria/models/block/redwood_trapdoor_top.json deleted file mode 100644 index 38ce2ef9..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/redwood_trapdoor_top.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_orientable_trapdoor_top", - "textures": { - "texture": "terrestria:block/redwood_trapdoor" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/redwood_wood.json b/client/src/main/resources/assets/terrestria/models/block/redwood_wood.json deleted file mode 100644 index 77f20a9c..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/redwood_wood.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "terrestria:block/redwood_log" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rubber_button.json b/client/src/main/resources/assets/terrestria/models/block/rubber_button.json deleted file mode 100644 index 76b0ef3c..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rubber_button.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/button", - "textures": { - "texture": "terrestria:block/rubber_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rubber_button_inventory.json b/client/src/main/resources/assets/terrestria/models/block/rubber_button_inventory.json deleted file mode 100644 index 7bbf4d20..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rubber_button_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/button_inventory", - "textures": { - "texture": "terrestria:block/rubber_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rubber_button_pressed.json b/client/src/main/resources/assets/terrestria/models/block/rubber_button_pressed.json deleted file mode 100644 index 8694cb9d..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rubber_button_pressed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/button_pressed", - "textures": { - "texture": "terrestria:block/rubber_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rubber_door_bottom_left.json b/client/src/main/resources/assets/terrestria/models/block/rubber_door_bottom_left.json deleted file mode 100644 index 9e2be4c9..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rubber_door_bottom_left.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_bottom_left", - "textures": { - "bottom": "terrestria:block/rubber_door_bottom", - "top": "terrestria:block/rubber_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rubber_door_bottom_left_open.json b/client/src/main/resources/assets/terrestria/models/block/rubber_door_bottom_left_open.json deleted file mode 100644 index 88cc9007..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rubber_door_bottom_left_open.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_bottom_left_open", - "textures": { - "bottom": "terrestria:block/rubber_door_bottom", - "top": "terrestria:block/rubber_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rubber_door_bottom_right.json b/client/src/main/resources/assets/terrestria/models/block/rubber_door_bottom_right.json deleted file mode 100644 index 021d068f..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rubber_door_bottom_right.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_bottom_right", - "textures": { - "bottom": "terrestria:block/rubber_door_bottom", - "top": "terrestria:block/rubber_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rubber_door_bottom_right_open.json b/client/src/main/resources/assets/terrestria/models/block/rubber_door_bottom_right_open.json deleted file mode 100644 index e1f67985..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rubber_door_bottom_right_open.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_bottom_right_open", - "textures": { - "bottom": "terrestria:block/rubber_door_bottom", - "top": "terrestria:block/rubber_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rubber_door_top_left.json b/client/src/main/resources/assets/terrestria/models/block/rubber_door_top_left.json deleted file mode 100644 index db1a029b..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rubber_door_top_left.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_top_left", - "textures": { - "bottom": "terrestria:block/rubber_door_bottom", - "top": "terrestria:block/rubber_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rubber_door_top_left_open.json b/client/src/main/resources/assets/terrestria/models/block/rubber_door_top_left_open.json deleted file mode 100644 index dcd90200..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rubber_door_top_left_open.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_top_left_open", - "textures": { - "bottom": "terrestria:block/rubber_door_bottom", - "top": "terrestria:block/rubber_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rubber_door_top_right.json b/client/src/main/resources/assets/terrestria/models/block/rubber_door_top_right.json deleted file mode 100644 index 1db2b2b9..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rubber_door_top_right.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_top_right", - "textures": { - "bottom": "terrestria:block/rubber_door_bottom", - "top": "terrestria:block/rubber_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rubber_door_top_right_open.json b/client/src/main/resources/assets/terrestria/models/block/rubber_door_top_right_open.json deleted file mode 100644 index cdfdbfda..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rubber_door_top_right_open.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_top_right_open", - "textures": { - "bottom": "terrestria:block/rubber_door_bottom", - "top": "terrestria:block/rubber_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rubber_fence_gate.json b/client/src/main/resources/assets/terrestria/models/block/rubber_fence_gate.json deleted file mode 100644 index 050c0b81..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rubber_fence_gate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_fence_gate", - "textures": { - "texture": "terrestria:block/rubber_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rubber_fence_gate_open.json b/client/src/main/resources/assets/terrestria/models/block/rubber_fence_gate_open.json deleted file mode 100644 index 318c6562..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rubber_fence_gate_open.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_fence_gate_open", - "textures": { - "texture": "terrestria:block/rubber_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rubber_fence_gate_wall.json b/client/src/main/resources/assets/terrestria/models/block/rubber_fence_gate_wall.json deleted file mode 100644 index 864c2130..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rubber_fence_gate_wall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_fence_gate_wall", - "textures": { - "texture": "terrestria:block/rubber_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rubber_fence_gate_wall_open.json b/client/src/main/resources/assets/terrestria/models/block/rubber_fence_gate_wall_open.json deleted file mode 100644 index ae85deb6..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rubber_fence_gate_wall_open.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_fence_gate_wall_open", - "textures": { - "texture": "terrestria:block/rubber_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rubber_fence_inventory.json b/client/src/main/resources/assets/terrestria/models/block/rubber_fence_inventory.json deleted file mode 100644 index 88f2f292..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rubber_fence_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/fence_inventory", - "textures": { - "texture": "terrestria:block/rubber_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rubber_fence_post.json b/client/src/main/resources/assets/terrestria/models/block/rubber_fence_post.json deleted file mode 100644 index cfc3a058..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rubber_fence_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/fence_post", - "textures": { - "texture": "terrestria:block/rubber_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rubber_fence_side.json b/client/src/main/resources/assets/terrestria/models/block/rubber_fence_side.json deleted file mode 100644 index ae3fb6b5..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rubber_fence_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/fence_side", - "textures": { - "texture": "terrestria:block/rubber_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rubber_hanging_sign.json b/client/src/main/resources/assets/terrestria/models/block/rubber_hanging_sign.json deleted file mode 100644 index 426b71de..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rubber_hanging_sign.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "textures": { - "particle": "terrestria:block/rubber_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rubber_leaves.json b/client/src/main/resources/assets/terrestria/models/block/rubber_leaves.json deleted file mode 100644 index 10e064fc..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rubber_leaves.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/leaves", - "textures": { - "all": "terrestria:block/rubber_leaves" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rubber_log.json b/client/src/main/resources/assets/terrestria/models/block/rubber_log.json deleted file mode 100644 index 44685e2c..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rubber_log.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/cube_column", - "textures": { - "end": "terrestria:block/rubber_log_top", - "side": "terrestria:block/rubber_log" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rubber_planks.json b/client/src/main/resources/assets/terrestria/models/block/rubber_planks.json deleted file mode 100644 index a38f1b50..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rubber_planks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "terrestria:block/rubber_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rubber_pressure_plate.json b/client/src/main/resources/assets/terrestria/models/block/rubber_pressure_plate.json deleted file mode 100644 index ef7a7ece..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rubber_pressure_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/pressure_plate_up", - "textures": { - "texture": "terrestria:block/rubber_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rubber_pressure_plate_down.json b/client/src/main/resources/assets/terrestria/models/block/rubber_pressure_plate_down.json deleted file mode 100644 index 46f5b7ac..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rubber_pressure_plate_down.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/pressure_plate_down", - "textures": { - "texture": "terrestria:block/rubber_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rubber_sapling.json b/client/src/main/resources/assets/terrestria/models/block/rubber_sapling.json deleted file mode 100644 index 2611d4fd..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rubber_sapling.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cross", - "textures": { - "cross": "terrestria:block/rubber_sapling" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rubber_sign.json b/client/src/main/resources/assets/terrestria/models/block/rubber_sign.json deleted file mode 100644 index 426b71de..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rubber_sign.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "textures": { - "particle": "terrestria:block/rubber_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rubber_slab.json b/client/src/main/resources/assets/terrestria/models/block/rubber_slab.json deleted file mode 100644 index eb080c85..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rubber_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab", - "textures": { - "bottom": "terrestria:block/rubber_planks", - "top": "terrestria:block/rubber_planks", - "side": "terrestria:block/rubber_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rubber_slab_top.json b/client/src/main/resources/assets/terrestria/models/block/rubber_slab_top.json deleted file mode 100644 index 953fa7f8..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rubber_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab_top", - "textures": { - "bottom": "terrestria:block/rubber_planks", - "top": "terrestria:block/rubber_planks", - "side": "terrestria:block/rubber_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rubber_stairs.json b/client/src/main/resources/assets/terrestria/models/block/rubber_stairs.json deleted file mode 100644 index 1b579539..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rubber_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "terrestria:block/rubber_planks", - "top": "terrestria:block/rubber_planks", - "side": "terrestria:block/rubber_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rubber_stairs_inner.json b/client/src/main/resources/assets/terrestria/models/block/rubber_stairs_inner.json deleted file mode 100644 index 7ce9aa98..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rubber_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "terrestria:block/rubber_planks", - "top": "terrestria:block/rubber_planks", - "side": "terrestria:block/rubber_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rubber_stairs_outer.json b/client/src/main/resources/assets/terrestria/models/block/rubber_stairs_outer.json deleted file mode 100644 index 505bf585..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rubber_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "terrestria:block/rubber_planks", - "top": "terrestria:block/rubber_planks", - "side": "terrestria:block/rubber_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rubber_trapdoor_bottom.json b/client/src/main/resources/assets/terrestria/models/block/rubber_trapdoor_bottom.json deleted file mode 100644 index 7c5e5c68..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rubber_trapdoor_bottom.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_orientable_trapdoor_bottom", - "textures": { - "texture": "terrestria:block/rubber_trapdoor" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rubber_trapdoor_open.json b/client/src/main/resources/assets/terrestria/models/block/rubber_trapdoor_open.json deleted file mode 100644 index 05628eba..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rubber_trapdoor_open.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_orientable_trapdoor_open", - "textures": { - "texture": "terrestria:block/rubber_trapdoor" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rubber_trapdoor_top.json b/client/src/main/resources/assets/terrestria/models/block/rubber_trapdoor_top.json deleted file mode 100644 index 644bdf10..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rubber_trapdoor_top.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_orientable_trapdoor_top", - "textures": { - "texture": "terrestria:block/rubber_trapdoor" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/rubber_wood.json b/client/src/main/resources/assets/terrestria/models/block/rubber_wood.json deleted file mode 100644 index 041b9535..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/rubber_wood.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "terrestria:block/rubber_log" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/saguaro_cactus_log.json b/client/src/main/resources/assets/terrestria/models/block/saguaro_cactus_log.json deleted file mode 100644 index 37dbd143..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/saguaro_cactus_log.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "terraform:block/small_log", - "textures": { - "particle": "terrestria:block/saguaro_cactus_section", - "side": "terrestria:block/saguaro_cactus" - } -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/block/saguaro_cactus_log_branch.json b/client/src/main/resources/assets/terrestria/models/block/saguaro_cactus_log_branch.json deleted file mode 100644 index 6b00a4b3..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/saguaro_cactus_log_branch.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "terraform:block/small_log_branch", - "textures": { - "particle": "terrestria:block/saguaro_cactus", - "end": "terrestria:block/saguaro_cactus_section", - "side": "terrestria:block/saguaro_cactus" - } -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/block/saguaro_cactus_sapling.json b/client/src/main/resources/assets/terrestria/models/block/saguaro_cactus_sapling.json deleted file mode 100644 index f011048a..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/saguaro_cactus_sapling.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cross", - "textures": { - "cross": "terrestria:block/saguaro_cactus_sapling" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/sakura_button.json b/client/src/main/resources/assets/terrestria/models/block/sakura_button.json deleted file mode 100644 index a31230c3..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/sakura_button.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/button", - "textures": { - "texture": "terrestria:block/sakura_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/sakura_button_inventory.json b/client/src/main/resources/assets/terrestria/models/block/sakura_button_inventory.json deleted file mode 100644 index 06fa8302..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/sakura_button_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/button_inventory", - "textures": { - "texture": "terrestria:block/sakura_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/sakura_button_pressed.json b/client/src/main/resources/assets/terrestria/models/block/sakura_button_pressed.json deleted file mode 100644 index 0b9df964..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/sakura_button_pressed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/button_pressed", - "textures": { - "texture": "terrestria:block/sakura_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/sakura_door_bottom_left.json b/client/src/main/resources/assets/terrestria/models/block/sakura_door_bottom_left.json deleted file mode 100644 index c1291447..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/sakura_door_bottom_left.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_bottom_left", - "textures": { - "bottom": "terrestria:block/sakura_door_bottom", - "top": "terrestria:block/sakura_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/sakura_door_bottom_left_open.json b/client/src/main/resources/assets/terrestria/models/block/sakura_door_bottom_left_open.json deleted file mode 100644 index 3751351e..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/sakura_door_bottom_left_open.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_bottom_left_open", - "textures": { - "bottom": "terrestria:block/sakura_door_bottom", - "top": "terrestria:block/sakura_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/sakura_door_bottom_right.json b/client/src/main/resources/assets/terrestria/models/block/sakura_door_bottom_right.json deleted file mode 100644 index 40ac22ae..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/sakura_door_bottom_right.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_bottom_right", - "textures": { - "bottom": "terrestria:block/sakura_door_bottom", - "top": "terrestria:block/sakura_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/sakura_door_bottom_right_open.json b/client/src/main/resources/assets/terrestria/models/block/sakura_door_bottom_right_open.json deleted file mode 100644 index ea4548c7..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/sakura_door_bottom_right_open.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_bottom_right_open", - "textures": { - "bottom": "terrestria:block/sakura_door_bottom", - "top": "terrestria:block/sakura_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/sakura_door_top_left.json b/client/src/main/resources/assets/terrestria/models/block/sakura_door_top_left.json deleted file mode 100644 index e6232b1f..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/sakura_door_top_left.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_top_left", - "textures": { - "bottom": "terrestria:block/sakura_door_bottom", - "top": "terrestria:block/sakura_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/sakura_door_top_left_open.json b/client/src/main/resources/assets/terrestria/models/block/sakura_door_top_left_open.json deleted file mode 100644 index fd78b4ba..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/sakura_door_top_left_open.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_top_left_open", - "textures": { - "bottom": "terrestria:block/sakura_door_bottom", - "top": "terrestria:block/sakura_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/sakura_door_top_right.json b/client/src/main/resources/assets/terrestria/models/block/sakura_door_top_right.json deleted file mode 100644 index 5daf2f54..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/sakura_door_top_right.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_top_right", - "textures": { - "bottom": "terrestria:block/sakura_door_bottom", - "top": "terrestria:block/sakura_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/sakura_door_top_right_open.json b/client/src/main/resources/assets/terrestria/models/block/sakura_door_top_right_open.json deleted file mode 100644 index 00051c22..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/sakura_door_top_right_open.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_top_right_open", - "textures": { - "bottom": "terrestria:block/sakura_door_bottom", - "top": "terrestria:block/sakura_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/sakura_fence_gate.json b/client/src/main/resources/assets/terrestria/models/block/sakura_fence_gate.json deleted file mode 100644 index 7435e99b..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/sakura_fence_gate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_fence_gate", - "textures": { - "texture": "terrestria:block/sakura_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/sakura_fence_gate_open.json b/client/src/main/resources/assets/terrestria/models/block/sakura_fence_gate_open.json deleted file mode 100644 index 24e1f222..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/sakura_fence_gate_open.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_fence_gate_open", - "textures": { - "texture": "terrestria:block/sakura_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/sakura_fence_gate_wall.json b/client/src/main/resources/assets/terrestria/models/block/sakura_fence_gate_wall.json deleted file mode 100644 index 94aa34d1..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/sakura_fence_gate_wall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_fence_gate_wall", - "textures": { - "texture": "terrestria:block/sakura_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/sakura_fence_gate_wall_open.json b/client/src/main/resources/assets/terrestria/models/block/sakura_fence_gate_wall_open.json deleted file mode 100644 index ce612ea4..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/sakura_fence_gate_wall_open.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_fence_gate_wall_open", - "textures": { - "texture": "terrestria:block/sakura_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/sakura_fence_inventory.json b/client/src/main/resources/assets/terrestria/models/block/sakura_fence_inventory.json deleted file mode 100644 index c8cd443c..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/sakura_fence_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/fence_inventory", - "textures": { - "texture": "terrestria:block/sakura_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/sakura_fence_post.json b/client/src/main/resources/assets/terrestria/models/block/sakura_fence_post.json deleted file mode 100644 index 6851d26d..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/sakura_fence_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/fence_post", - "textures": { - "texture": "terrestria:block/sakura_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/sakura_fence_side.json b/client/src/main/resources/assets/terrestria/models/block/sakura_fence_side.json deleted file mode 100644 index 395cedae..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/sakura_fence_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/fence_side", - "textures": { - "texture": "terrestria:block/sakura_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/sakura_hanging_sign.json b/client/src/main/resources/assets/terrestria/models/block/sakura_hanging_sign.json deleted file mode 100644 index beef8970..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/sakura_hanging_sign.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "textures": { - "particle": "terrestria:block/sakura_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/sakura_leaf_pile.json b/client/src/main/resources/assets/terrestria/models/block/sakura_leaf_pile.json deleted file mode 100644 index bb95bb85..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/sakura_leaf_pile.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/carpet", - "textures": { - "wool": "terrestria:block/sakura_leaves", - "particle": "terrestria:block/sakura_leaves" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/sakura_leaves.json b/client/src/main/resources/assets/terrestria/models/block/sakura_leaves.json deleted file mode 100644 index 4e0b53b1..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/sakura_leaves.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/leaves", - "textures": { - "all": "terrestria:block/sakura_leaves" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/sakura_log.json b/client/src/main/resources/assets/terrestria/models/block/sakura_log.json deleted file mode 100644 index 9cbe357c..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/sakura_log.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "terraform:block/small_log", - "textures": { - "particle": "terrestria:block/sakura_log_section", - "side": "terrestria:block/sakura_log" - } -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/block/sakura_log_branch.json b/client/src/main/resources/assets/terrestria/models/block/sakura_log_branch.json deleted file mode 100644 index 553eeebb..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/sakura_log_branch.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "terraform:block/small_log_branch", - "textures": { - "particle": "terrestria:block/sakura_log_section", - "end": "terrestria:block/sakura_log_section", - "side": "terrestria:block/sakura_log" - } -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/block/sakura_log_leaves.json b/client/src/main/resources/assets/terrestria/models/block/sakura_log_leaves.json deleted file mode 100644 index c476ebbc..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/sakura_log_leaves.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "terraform:block/small_log_leaves", - "textures": { - "particle": "terrestria:block/sakura_leaves", - "leaves": "terrestria:block/sakura_leaves" - } -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/block/sakura_log_leaves_cutout.json b/client/src/main/resources/assets/terrestria/models/block/sakura_log_leaves_cutout.json deleted file mode 100644 index ca654cc0..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/sakura_log_leaves_cutout.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "terraform:block/small_log_leaves_cutout", - "textures": { - "particle": "terrestria:block/sakura_leaves", - "leaves": "terrestria:block/sakura_leaves" - } -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/block/sakura_planks.json b/client/src/main/resources/assets/terrestria/models/block/sakura_planks.json deleted file mode 100644 index a6f0dd58..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/sakura_planks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "terrestria:block/sakura_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/sakura_pressure_plate.json b/client/src/main/resources/assets/terrestria/models/block/sakura_pressure_plate.json deleted file mode 100644 index 84847011..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/sakura_pressure_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/pressure_plate_up", - "textures": { - "texture": "terrestria:block/sakura_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/sakura_pressure_plate_down.json b/client/src/main/resources/assets/terrestria/models/block/sakura_pressure_plate_down.json deleted file mode 100644 index a7ed8513..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/sakura_pressure_plate_down.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/pressure_plate_down", - "textures": { - "texture": "terrestria:block/sakura_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/sakura_sapling.json b/client/src/main/resources/assets/terrestria/models/block/sakura_sapling.json deleted file mode 100644 index 803de06c..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/sakura_sapling.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cross", - "textures": { - "cross": "terrestria:block/sakura_sapling" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/sakura_sign.json b/client/src/main/resources/assets/terrestria/models/block/sakura_sign.json deleted file mode 100644 index beef8970..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/sakura_sign.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "textures": { - "particle": "terrestria:block/sakura_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/sakura_slab.json b/client/src/main/resources/assets/terrestria/models/block/sakura_slab.json deleted file mode 100644 index d2096488..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/sakura_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab", - "textures": { - "bottom": "terrestria:block/sakura_planks", - "top": "terrestria:block/sakura_planks", - "side": "terrestria:block/sakura_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/sakura_slab_top.json b/client/src/main/resources/assets/terrestria/models/block/sakura_slab_top.json deleted file mode 100644 index c729f028..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/sakura_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab_top", - "textures": { - "bottom": "terrestria:block/sakura_planks", - "top": "terrestria:block/sakura_planks", - "side": "terrestria:block/sakura_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/sakura_stairs.json b/client/src/main/resources/assets/terrestria/models/block/sakura_stairs.json deleted file mode 100644 index b6c4373f..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/sakura_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "terrestria:block/sakura_planks", - "top": "terrestria:block/sakura_planks", - "side": "terrestria:block/sakura_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/sakura_stairs_inner.json b/client/src/main/resources/assets/terrestria/models/block/sakura_stairs_inner.json deleted file mode 100644 index 17f4475e..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/sakura_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "terrestria:block/sakura_planks", - "top": "terrestria:block/sakura_planks", - "side": "terrestria:block/sakura_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/sakura_stairs_outer.json b/client/src/main/resources/assets/terrestria/models/block/sakura_stairs_outer.json deleted file mode 100644 index a894fcd8..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/sakura_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "terrestria:block/sakura_planks", - "top": "terrestria:block/sakura_planks", - "side": "terrestria:block/sakura_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/sakura_trapdoor_bottom.json b/client/src/main/resources/assets/terrestria/models/block/sakura_trapdoor_bottom.json deleted file mode 100644 index d07c2bfe..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/sakura_trapdoor_bottom.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_orientable_trapdoor_bottom", - "textures": { - "texture": "terrestria:block/sakura_trapdoor" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/sakura_trapdoor_open.json b/client/src/main/resources/assets/terrestria/models/block/sakura_trapdoor_open.json deleted file mode 100644 index cd8c3369..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/sakura_trapdoor_open.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_orientable_trapdoor_open", - "textures": { - "texture": "terrestria:block/sakura_trapdoor" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/sakura_trapdoor_top.json b/client/src/main/resources/assets/terrestria/models/block/sakura_trapdoor_top.json deleted file mode 100644 index 57e7e0e0..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/sakura_trapdoor_top.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_orientable_trapdoor_top", - "textures": { - "texture": "terrestria:block/sakura_trapdoor" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/small_oak_log.json b/client/src/main/resources/assets/terrestria/models/block/small_oak_log.json deleted file mode 100644 index 4957d0fe..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/small_oak_log.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "terraform:block/small_log", - "textures": { - "particle": "block/oak_log", - "side": "block/oak_log" - } -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/block/small_oak_log_branch.json b/client/src/main/resources/assets/terrestria/models/block/small_oak_log_branch.json deleted file mode 100644 index 8e4e36b2..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/small_oak_log_branch.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "terraform:block/small_log_branch", - "textures": { - "particle": "block/oak_log_top", - "end": "block/oak_log_top", - "side": "block/oak_log" - } -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/block/small_oak_log_leaves.json b/client/src/main/resources/assets/terrestria/models/block/small_oak_log_leaves.json deleted file mode 100644 index 1ff5fd1e..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/small_oak_log_leaves.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "terraform:block/small_log_leaves", - "textures": { - "particle": "block/oak_leaves", - "leaves": "block/oak_leaves" - } -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/block/small_oak_log_leaves_cutout.json b/client/src/main/resources/assets/terrestria/models/block/small_oak_log_leaves_cutout.json deleted file mode 100644 index dd418c63..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/small_oak_log_leaves_cutout.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "terraform:block/small_log_leaves_cutout", - "textures": { - "particle": "block/oak_leaves", - "leaves": "block/oak_leaves" - } -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/block/smooth_basalt.json b/client/src/main/resources/assets/terrestria/models/block/smooth_basalt.json deleted file mode 100644 index 8aed730d..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/smooth_basalt.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "terrestria:block/smooth_basalt" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/smooth_basalt_double_slab.json b/client/src/main/resources/assets/terrestria/models/block/smooth_basalt_double_slab.json deleted file mode 100644 index bd25af50..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/smooth_basalt_double_slab.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "block/cube_column", - "textures": { - "end": "terrestria:block/smooth_basalt", - "side": "terrestria:block/smooth_basalt_slab_side" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/smooth_basalt_slab.json b/client/src/main/resources/assets/terrestria/models/block/smooth_basalt_slab.json deleted file mode 100644 index cec31777..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/smooth_basalt_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab", - "textures": { - "bottom": "terrestria:block/smooth_basalt", - "top": "terrestria:block/smooth_basalt", - "side": "terrestria:block/smooth_basalt_slab_side" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/smooth_basalt_slab_top.json b/client/src/main/resources/assets/terrestria/models/block/smooth_basalt_slab_top.json deleted file mode 100644 index 4085bf99..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/smooth_basalt_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab_top", - "textures": { - "bottom": "terrestria:block/smooth_basalt", - "top": "terrestria:block/smooth_basalt", - "side": "terrestria:block/smooth_basalt_slab_side" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/smooth_basalt_stairs.json b/client/src/main/resources/assets/terrestria/models/block/smooth_basalt_stairs.json deleted file mode 100644 index 702691ee..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/smooth_basalt_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "terrestria:block/smooth_basalt", - "top": "terrestria:block/smooth_basalt", - "side": "terrestria:block/smooth_basalt" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/smooth_basalt_stairs_inner.json b/client/src/main/resources/assets/terrestria/models/block/smooth_basalt_stairs_inner.json deleted file mode 100644 index 9aa39459..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/smooth_basalt_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "terrestria:block/smooth_basalt", - "top": "terrestria:block/smooth_basalt", - "side": "terrestria:block/smooth_basalt" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/smooth_basalt_stairs_outer.json b/client/src/main/resources/assets/terrestria/models/block/smooth_basalt_stairs_outer.json deleted file mode 100644 index ec40bc79..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/smooth_basalt_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "terrestria:block/smooth_basalt", - "top": "terrestria:block/smooth_basalt", - "side": "terrestria:block/smooth_basalt" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/smooth_basalt_wall_post.json b/client/src/main/resources/assets/terrestria/models/block/smooth_basalt_wall_post.json deleted file mode 100644 index 762c34f4..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/smooth_basalt_wall_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_post", - "textures": { - "wall": "terrestria:block/smooth_basalt" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/smooth_basalt_wall_side.json b/client/src/main/resources/assets/terrestria/models/block/smooth_basalt_wall_side.json deleted file mode 100644 index d459744d..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/smooth_basalt_wall_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_side", - "textures": { - "wall": "terrestria:block/smooth_basalt" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/smooth_basalt_wall_side_tall.json b/client/src/main/resources/assets/terrestria/models/block/smooth_basalt_wall_side_tall.json deleted file mode 100644 index b02d250b..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/smooth_basalt_wall_side_tall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_wall_side_tall", - "textures": { - "wall": "terrestria:block/smooth_basalt" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/stripped_cypress_log.json b/client/src/main/resources/assets/terrestria/models/block/stripped_cypress_log.json deleted file mode 100644 index 3150e660..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/stripped_cypress_log.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/cube_column", - "textures": { - "end": "terrestria:block/stripped_cypress_log_top", - "side": "terrestria:block/stripped_cypress_log" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/stripped_cypress_quarter_log.json b/client/src/main/resources/assets/terrestria/models/block/stripped_cypress_quarter_log.json deleted file mode 100644 index 2ca236dc..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/stripped_cypress_quarter_log.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "terrestria:block/quarter_log", - "textures": { - "particle": "terrestria:block/stripped_cypress_log", - "ends": "terrestria:block/stripped_cypress_quarter_log", - "sides": "terrestria:block/stripped_cypress_log", - "insides": "terrestria:block/stripped_cypress_log_bare" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/stripped_cypress_wood.json b/client/src/main/resources/assets/terrestria/models/block/stripped_cypress_wood.json deleted file mode 100644 index 19c12c08..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/stripped_cypress_wood.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "terrestria:block/stripped_cypress_log" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/stripped_hemlock_log.json b/client/src/main/resources/assets/terrestria/models/block/stripped_hemlock_log.json deleted file mode 100644 index 7416a98d..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/stripped_hemlock_log.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/cube_column", - "textures": { - "end": "terrestria:block/stripped_hemlock_log_top", - "side": "terrestria:block/stripped_hemlock_log" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/stripped_hemlock_quarter_log.json b/client/src/main/resources/assets/terrestria/models/block/stripped_hemlock_quarter_log.json deleted file mode 100644 index baa47299..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/stripped_hemlock_quarter_log.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "terrestria:block/quarter_log", - "textures": { - "particle": "terrestria:block/stripped_hemlock_log", - "ends": "terrestria:block/stripped_hemlock_quarter_log", - "sides": "terrestria:block/stripped_hemlock_log", - "insides": "terrestria:block/stripped_hemlock_log_bare" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/stripped_hemlock_wood.json b/client/src/main/resources/assets/terrestria/models/block/stripped_hemlock_wood.json deleted file mode 100644 index ff377dd6..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/stripped_hemlock_wood.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "terrestria:block/stripped_hemlock_log" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/stripped_japanese_maple_log.json b/client/src/main/resources/assets/terrestria/models/block/stripped_japanese_maple_log.json deleted file mode 100644 index fad18051..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/stripped_japanese_maple_log.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/cube_column", - "textures": { - "end": "terrestria:block/stripped_japanese_maple_log_top", - "side": "terrestria:block/stripped_japanese_maple_log" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/stripped_japanese_maple_wood.json b/client/src/main/resources/assets/terrestria/models/block/stripped_japanese_maple_wood.json deleted file mode 100644 index 89e2d939..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/stripped_japanese_maple_wood.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "terrestria:block/stripped_japanese_maple_log" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/stripped_rainbow_eucalyptus_log.json b/client/src/main/resources/assets/terrestria/models/block/stripped_rainbow_eucalyptus_log.json deleted file mode 100644 index f1eff437..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/stripped_rainbow_eucalyptus_log.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/cube_column", - "textures": { - "end": "terrestria:block/stripped_rainbow_eucalyptus_log_top", - "side": "terrestria:block/stripped_rainbow_eucalyptus_log" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/stripped_rainbow_eucalyptus_quarter_log.json b/client/src/main/resources/assets/terrestria/models/block/stripped_rainbow_eucalyptus_quarter_log.json deleted file mode 100644 index 2361bcca..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/stripped_rainbow_eucalyptus_quarter_log.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "terrestria:block/quarter_log", - "textures": { - "particle": "terrestria:block/stripped_rainbow_eucalyptus_log", - "ends": "terrestria:block/stripped_rainbow_eucalyptus_quarter_log", - "sides": "terrestria:block/stripped_rainbow_eucalyptus_log", - "insides": "terrestria:block/stripped_rainbow_eucalyptus_log_bare" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/stripped_rainbow_eucalyptus_wood.json b/client/src/main/resources/assets/terrestria/models/block/stripped_rainbow_eucalyptus_wood.json deleted file mode 100644 index 36fbdb3b..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/stripped_rainbow_eucalyptus_wood.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "terrestria:block/stripped_rainbow_eucalyptus_log" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/stripped_redwood_log.json b/client/src/main/resources/assets/terrestria/models/block/stripped_redwood_log.json deleted file mode 100644 index 86087b96..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/stripped_redwood_log.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/cube_column", - "textures": { - "end": "terrestria:block/stripped_redwood_log_top", - "side": "terrestria:block/stripped_redwood_log" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/stripped_redwood_quarter_log.json b/client/src/main/resources/assets/terrestria/models/block/stripped_redwood_quarter_log.json deleted file mode 100644 index 1bd9ed60..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/stripped_redwood_quarter_log.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "parent": "terrestria:block/quarter_log", - "textures": { - "particle": "terrestria:block/stripped_redwood_log", - "ends": "terrestria:block/stripped_redwood_quarter_log", - "sides": "terrestria:block/stripped_redwood_log", - "insides": "terrestria:block/stripped_redwood_log_bare" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/stripped_redwood_wood.json b/client/src/main/resources/assets/terrestria/models/block/stripped_redwood_wood.json deleted file mode 100644 index 4dcb4af7..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/stripped_redwood_wood.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "terrestria:block/stripped_redwood_log" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/stripped_rubber_log.json b/client/src/main/resources/assets/terrestria/models/block/stripped_rubber_log.json deleted file mode 100644 index 238452d0..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/stripped_rubber_log.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/cube_column", - "textures": { - "end": "terrestria:block/stripped_rubber_log_top", - "side": "terrestria:block/stripped_rubber_log" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/stripped_rubber_wood.json b/client/src/main/resources/assets/terrestria/models/block/stripped_rubber_wood.json deleted file mode 100644 index 1539caa2..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/stripped_rubber_wood.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "terrestria:block/stripped_rubber_log" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/stripped_sakura_log.json b/client/src/main/resources/assets/terrestria/models/block/stripped_sakura_log.json deleted file mode 100644 index 79555254..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/stripped_sakura_log.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "terraform:block/small_log", - "textures": { - "particle": "terrestria:block/stripped_sakura_log_section", - "side": "terrestria:block/stripped_sakura_log" - } -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/block/stripped_sakura_log_branch.json b/client/src/main/resources/assets/terrestria/models/block/stripped_sakura_log_branch.json deleted file mode 100644 index 0d75d9b0..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/stripped_sakura_log_branch.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "terraform:block/small_log_branch", - "textures": { - "particle": "terrestria:block/stripped_sakura_log_section", - "end": "terrestria:block/stripped_sakura_log_section", - "side": "terrestria:block/stripped_sakura_log" - } -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/block/stripped_small_oak_log.json b/client/src/main/resources/assets/terrestria/models/block/stripped_small_oak_log.json deleted file mode 100644 index 22409d5e..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/stripped_small_oak_log.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "terraform:block/small_log", - "textures": { - "particle": "block/oak_log_top", - "side": "block/stripped_oak_log" - } -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/block/stripped_small_oak_log_branch.json b/client/src/main/resources/assets/terrestria/models/block/stripped_small_oak_log_branch.json deleted file mode 100644 index 000638fc..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/stripped_small_oak_log_branch.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "terraform:block/small_log_branch", - "textures": { - "particle": "block/oak_log_top", - "end": "block/oak_log_top", - "side": "block/stripped_oak_log" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/stripped_willow_log.json b/client/src/main/resources/assets/terrestria/models/block/stripped_willow_log.json deleted file mode 100644 index ce008b06..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/stripped_willow_log.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/cube_column", - "textures": { - "end": "terrestria:block/stripped_willow_log_top", - "side": "terrestria:block/stripped_willow_log" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/stripped_willow_wood.json b/client/src/main/resources/assets/terrestria/models/block/stripped_willow_wood.json deleted file mode 100644 index 24a7d370..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/stripped_willow_wood.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "terrestria:block/stripped_willow_log" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/stripped_yucca_palm_log.json b/client/src/main/resources/assets/terrestria/models/block/stripped_yucca_palm_log.json deleted file mode 100644 index 102de216..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/stripped_yucca_palm_log.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "terraform:block/small_log", - "textures": { - "particle": "terrestria:block/stripped_yucca_palm_log_section", - "side": "terrestria:block/stripped_yucca_palm_log" - } -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/block/stripped_yucca_palm_log_branch.json b/client/src/main/resources/assets/terrestria/models/block/stripped_yucca_palm_log_branch.json deleted file mode 100644 index dd682700..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/stripped_yucca_palm_log_branch.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "terraform:block/small_log_branch", - "textures": { - "particle": "terrestria:block/stripped_yucca_palm_log_section", - "end": "terrestria:block/stripped_yucca_palm_log_section", - "side": "terrestria:block/stripped_yucca_palm_log" - } -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/block/tall_cattail_bottom.json b/client/src/main/resources/assets/terrestria/models/block/tall_cattail_bottom.json deleted file mode 100644 index c48697bb..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/tall_cattail_bottom.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_seagrass", - "textures": { - "texture": "terrestria:block/tall_cattail_bottom" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/tall_cattail_top.json b/client/src/main/resources/assets/terrestria/models/block/tall_cattail_top.json deleted file mode 100644 index 801af6cd..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/tall_cattail_top.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_seagrass", - "textures": { - "texture": "terrestria:block/tall_cattail_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/tiny_cactus.json b/client/src/main/resources/assets/terrestria/models/block/tiny_cactus.json deleted file mode 100644 index 5b418655..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/tiny_cactus.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cross", - "textures": { - "cross": "terrestria:block/tiny_cactus" - } -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/block/willow_button.json b/client/src/main/resources/assets/terrestria/models/block/willow_button.json deleted file mode 100644 index 49ed825e..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/willow_button.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/button", - "textures": { - "texture": "terrestria:block/willow_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/willow_button_inventory.json b/client/src/main/resources/assets/terrestria/models/block/willow_button_inventory.json deleted file mode 100644 index 32cd9fed..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/willow_button_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/button_inventory", - "textures": { - "texture": "terrestria:block/willow_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/willow_button_pressed.json b/client/src/main/resources/assets/terrestria/models/block/willow_button_pressed.json deleted file mode 100644 index 6959da2b..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/willow_button_pressed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/button_pressed", - "textures": { - "texture": "terrestria:block/willow_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/willow_door_bottom_left.json b/client/src/main/resources/assets/terrestria/models/block/willow_door_bottom_left.json deleted file mode 100644 index d9684c6c..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/willow_door_bottom_left.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_bottom_left", - "textures": { - "bottom": "terrestria:block/willow_door_bottom", - "top": "terrestria:block/willow_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/willow_door_bottom_left_open.json b/client/src/main/resources/assets/terrestria/models/block/willow_door_bottom_left_open.json deleted file mode 100644 index 98a2ba44..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/willow_door_bottom_left_open.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_bottom_left_open", - "textures": { - "bottom": "terrestria:block/willow_door_bottom", - "top": "terrestria:block/willow_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/willow_door_bottom_right.json b/client/src/main/resources/assets/terrestria/models/block/willow_door_bottom_right.json deleted file mode 100644 index 3ad38e21..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/willow_door_bottom_right.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_bottom_right", - "textures": { - "bottom": "terrestria:block/willow_door_bottom", - "top": "terrestria:block/willow_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/willow_door_bottom_right_open.json b/client/src/main/resources/assets/terrestria/models/block/willow_door_bottom_right_open.json deleted file mode 100644 index 1df6eaa9..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/willow_door_bottom_right_open.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_bottom_right_open", - "textures": { - "bottom": "terrestria:block/willow_door_bottom", - "top": "terrestria:block/willow_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/willow_door_top_left.json b/client/src/main/resources/assets/terrestria/models/block/willow_door_top_left.json deleted file mode 100644 index 7520ada0..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/willow_door_top_left.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_top_left", - "textures": { - "bottom": "terrestria:block/willow_door_bottom", - "top": "terrestria:block/willow_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/willow_door_top_left_open.json b/client/src/main/resources/assets/terrestria/models/block/willow_door_top_left_open.json deleted file mode 100644 index 0b83c33d..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/willow_door_top_left_open.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_top_left_open", - "textures": { - "bottom": "terrestria:block/willow_door_bottom", - "top": "terrestria:block/willow_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/willow_door_top_right.json b/client/src/main/resources/assets/terrestria/models/block/willow_door_top_right.json deleted file mode 100644 index 42c54433..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/willow_door_top_right.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_top_right", - "textures": { - "bottom": "terrestria:block/willow_door_bottom", - "top": "terrestria:block/willow_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/willow_door_top_right_open.json b/client/src/main/resources/assets/terrestria/models/block/willow_door_top_right_open.json deleted file mode 100644 index eaf12c2b..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/willow_door_top_right_open.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_top_right_open", - "textures": { - "bottom": "terrestria:block/willow_door_bottom", - "top": "terrestria:block/willow_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/willow_fence_gate.json b/client/src/main/resources/assets/terrestria/models/block/willow_fence_gate.json deleted file mode 100644 index f6582f15..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/willow_fence_gate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_fence_gate", - "textures": { - "texture": "terrestria:block/willow_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/willow_fence_gate_open.json b/client/src/main/resources/assets/terrestria/models/block/willow_fence_gate_open.json deleted file mode 100644 index a4fe34de..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/willow_fence_gate_open.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_fence_gate_open", - "textures": { - "texture": "terrestria:block/willow_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/willow_fence_gate_wall.json b/client/src/main/resources/assets/terrestria/models/block/willow_fence_gate_wall.json deleted file mode 100644 index 968b579b..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/willow_fence_gate_wall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_fence_gate_wall", - "textures": { - "texture": "terrestria:block/willow_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/willow_fence_gate_wall_open.json b/client/src/main/resources/assets/terrestria/models/block/willow_fence_gate_wall_open.json deleted file mode 100644 index 0f4c9016..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/willow_fence_gate_wall_open.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_fence_gate_wall_open", - "textures": { - "texture": "terrestria:block/willow_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/willow_fence_inventory.json b/client/src/main/resources/assets/terrestria/models/block/willow_fence_inventory.json deleted file mode 100644 index dc134f52..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/willow_fence_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/fence_inventory", - "textures": { - "texture": "terrestria:block/willow_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/willow_fence_post.json b/client/src/main/resources/assets/terrestria/models/block/willow_fence_post.json deleted file mode 100644 index 9d083385..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/willow_fence_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/fence_post", - "textures": { - "texture": "terrestria:block/willow_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/willow_fence_side.json b/client/src/main/resources/assets/terrestria/models/block/willow_fence_side.json deleted file mode 100644 index 726322bd..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/willow_fence_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/fence_side", - "textures": { - "texture": "terrestria:block/willow_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/willow_hanging_sign.json b/client/src/main/resources/assets/terrestria/models/block/willow_hanging_sign.json deleted file mode 100644 index 13ec9784..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/willow_hanging_sign.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "textures": { - "particle": "terrestria:block/willow_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/willow_leaves.json b/client/src/main/resources/assets/terrestria/models/block/willow_leaves.json deleted file mode 100644 index 5157c1a3..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/willow_leaves.json +++ /dev/null @@ -1,90 +0,0 @@ -{ - "parent": "minecraft:block/block", - "textures": { - "particle": "terrestria:block/willow_leaves", - "ends": "terrestria:block/willow_leaves_top", - "sides": "terrestria:block/willow_leaves" - }, - "elements": [ - { - "from": [ - 0, - 0, - 0 - ], - "to": [ - 16, - 16, - 16 - ], - "faces": { - "down": { - "uv": [ - 0, - 0, - 16, - 16 - ], - "texture": "#ends", - "tintindex": 0, - "cullface": "down" - }, - "up": { - "uv": [ - 0, - 0, - 16, - 16 - ], - "texture": "#ends", - "tintindex": 0, - "cullface": "up" - }, - "north": { - "uv": [ - 0, - 0, - 16, - 16 - ], - "texture": "#sides", - "tintindex": 0, - "cullface": "north" - }, - "south": { - "uv": [ - 0, - 0, - 16, - 16 - ], - "texture": "#sides", - "tintindex": 0, - "cullface": "south" - }, - "west": { - "uv": [ - 0, - 0, - 16, - 16 - ], - "texture": "#sides", - "tintindex": 0, - "cullface": "west" - }, - "east": { - "uv": [ - 0, - 0, - 16, - 16 - ], - "texture": "#sides", - "tintindex": 0, - "cullface": "east" - } - } - } - ] -} diff --git a/client/src/main/resources/assets/terrestria/models/block/willow_log.json b/client/src/main/resources/assets/terrestria/models/block/willow_log.json deleted file mode 100644 index fd43c56b..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/willow_log.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/cube_column", - "textures": { - "end": "terrestria:block/willow_log_top", - "side": "terrestria:block/willow_log" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/willow_planks.json b/client/src/main/resources/assets/terrestria/models/block/willow_planks.json deleted file mode 100644 index 43041078..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/willow_planks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "terrestria:block/willow_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/willow_pressure_plate.json b/client/src/main/resources/assets/terrestria/models/block/willow_pressure_plate.json deleted file mode 100644 index 57006eb6..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/willow_pressure_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/pressure_plate_up", - "textures": { - "texture": "terrestria:block/willow_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/willow_pressure_plate_down.json b/client/src/main/resources/assets/terrestria/models/block/willow_pressure_plate_down.json deleted file mode 100644 index ea39f196..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/willow_pressure_plate_down.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/pressure_plate_down", - "textures": { - "texture": "terrestria:block/willow_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/willow_sapling.json b/client/src/main/resources/assets/terrestria/models/block/willow_sapling.json deleted file mode 100644 index 09ccd0e7..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/willow_sapling.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cross", - "textures": { - "cross": "terrestria:block/willow_sapling" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/willow_sign.json b/client/src/main/resources/assets/terrestria/models/block/willow_sign.json deleted file mode 100644 index 13ec9784..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/willow_sign.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "textures": { - "particle": "terrestria:block/willow_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/willow_slab.json b/client/src/main/resources/assets/terrestria/models/block/willow_slab.json deleted file mode 100644 index e9b14095..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/willow_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab", - "textures": { - "bottom": "terrestria:block/willow_planks", - "top": "terrestria:block/willow_planks", - "side": "terrestria:block/willow_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/willow_slab_top.json b/client/src/main/resources/assets/terrestria/models/block/willow_slab_top.json deleted file mode 100644 index 6e762cb9..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/willow_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab_top", - "textures": { - "bottom": "terrestria:block/willow_planks", - "top": "terrestria:block/willow_planks", - "side": "terrestria:block/willow_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/willow_stairs.json b/client/src/main/resources/assets/terrestria/models/block/willow_stairs.json deleted file mode 100644 index 1ff662b0..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/willow_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "terrestria:block/willow_planks", - "top": "terrestria:block/willow_planks", - "side": "terrestria:block/willow_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/willow_stairs_inner.json b/client/src/main/resources/assets/terrestria/models/block/willow_stairs_inner.json deleted file mode 100644 index 565f6bc6..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/willow_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "terrestria:block/willow_planks", - "top": "terrestria:block/willow_planks", - "side": "terrestria:block/willow_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/willow_stairs_outer.json b/client/src/main/resources/assets/terrestria/models/block/willow_stairs_outer.json deleted file mode 100644 index ab31fb60..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/willow_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "terrestria:block/willow_planks", - "top": "terrestria:block/willow_planks", - "side": "terrestria:block/willow_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/willow_trapdoor_bottom.json b/client/src/main/resources/assets/terrestria/models/block/willow_trapdoor_bottom.json deleted file mode 100644 index 6871b6e2..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/willow_trapdoor_bottom.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_orientable_trapdoor_bottom", - "textures": { - "texture": "terrestria:block/willow_trapdoor" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/willow_trapdoor_open.json b/client/src/main/resources/assets/terrestria/models/block/willow_trapdoor_open.json deleted file mode 100644 index 409072ed..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/willow_trapdoor_open.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_orientable_trapdoor_open", - "textures": { - "texture": "terrestria:block/willow_trapdoor" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/willow_trapdoor_top.json b/client/src/main/resources/assets/terrestria/models/block/willow_trapdoor_top.json deleted file mode 100644 index 6cd846e9..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/willow_trapdoor_top.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_orientable_trapdoor_top", - "textures": { - "texture": "terrestria:block/willow_trapdoor" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/willow_wood.json b/client/src/main/resources/assets/terrestria/models/block/willow_wood.json deleted file mode 100644 index f9d3b9e9..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/willow_wood.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "terrestria:block/willow_log" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_button.json b/client/src/main/resources/assets/terrestria/models/block/yucca_palm_button.json deleted file mode 100644 index ca082d40..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_button.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/button", - "textures": { - "texture": "terrestria:block/yucca_palm_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_button_inventory.json b/client/src/main/resources/assets/terrestria/models/block/yucca_palm_button_inventory.json deleted file mode 100644 index 6c407a6f..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_button_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/button_inventory", - "textures": { - "texture": "terrestria:block/yucca_palm_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_button_pressed.json b/client/src/main/resources/assets/terrestria/models/block/yucca_palm_button_pressed.json deleted file mode 100644 index 24fa1176..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_button_pressed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/button_pressed", - "textures": { - "texture": "terrestria:block/yucca_palm_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_door_bottom_left.json b/client/src/main/resources/assets/terrestria/models/block/yucca_palm_door_bottom_left.json deleted file mode 100644 index eca69742..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_door_bottom_left.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_bottom_left", - "textures": { - "bottom": "terrestria:block/yucca_palm_door_bottom", - "top": "terrestria:block/yucca_palm_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_door_bottom_left_open.json b/client/src/main/resources/assets/terrestria/models/block/yucca_palm_door_bottom_left_open.json deleted file mode 100644 index f35d2b7f..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_door_bottom_left_open.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_bottom_left_open", - "textures": { - "bottom": "terrestria:block/yucca_palm_door_bottom", - "top": "terrestria:block/yucca_palm_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_door_bottom_right.json b/client/src/main/resources/assets/terrestria/models/block/yucca_palm_door_bottom_right.json deleted file mode 100644 index 09c0cf01..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_door_bottom_right.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_bottom_right", - "textures": { - "bottom": "terrestria:block/yucca_palm_door_bottom", - "top": "terrestria:block/yucca_palm_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_door_bottom_right_open.json b/client/src/main/resources/assets/terrestria/models/block/yucca_palm_door_bottom_right_open.json deleted file mode 100644 index 91afa699..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_door_bottom_right_open.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_bottom_right_open", - "textures": { - "bottom": "terrestria:block/yucca_palm_door_bottom", - "top": "terrestria:block/yucca_palm_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_door_top_left.json b/client/src/main/resources/assets/terrestria/models/block/yucca_palm_door_top_left.json deleted file mode 100644 index fcfaf345..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_door_top_left.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_top_left", - "textures": { - "bottom": "terrestria:block/yucca_palm_door_bottom", - "top": "terrestria:block/yucca_palm_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_door_top_left_open.json b/client/src/main/resources/assets/terrestria/models/block/yucca_palm_door_top_left_open.json deleted file mode 100644 index d4fdc9e3..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_door_top_left_open.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_top_left_open", - "textures": { - "bottom": "terrestria:block/yucca_palm_door_bottom", - "top": "terrestria:block/yucca_palm_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_door_top_right.json b/client/src/main/resources/assets/terrestria/models/block/yucca_palm_door_top_right.json deleted file mode 100644 index 90bc7b2d..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_door_top_right.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_top_right", - "textures": { - "bottom": "terrestria:block/yucca_palm_door_bottom", - "top": "terrestria:block/yucca_palm_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_door_top_right_open.json b/client/src/main/resources/assets/terrestria/models/block/yucca_palm_door_top_right_open.json deleted file mode 100644 index 4f26e0a7..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_door_top_right_open.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/door_top_right_open", - "textures": { - "bottom": "terrestria:block/yucca_palm_door_bottom", - "top": "terrestria:block/yucca_palm_door_top" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_fence_gate.json b/client/src/main/resources/assets/terrestria/models/block/yucca_palm_fence_gate.json deleted file mode 100644 index e343dec3..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_fence_gate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_fence_gate", - "textures": { - "texture": "terrestria:block/yucca_palm_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_fence_gate_open.json b/client/src/main/resources/assets/terrestria/models/block/yucca_palm_fence_gate_open.json deleted file mode 100644 index b6b25e0f..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_fence_gate_open.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_fence_gate_open", - "textures": { - "texture": "terrestria:block/yucca_palm_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_fence_gate_wall.json b/client/src/main/resources/assets/terrestria/models/block/yucca_palm_fence_gate_wall.json deleted file mode 100644 index 50408f47..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_fence_gate_wall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_fence_gate_wall", - "textures": { - "texture": "terrestria:block/yucca_palm_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_fence_gate_wall_open.json b/client/src/main/resources/assets/terrestria/models/block/yucca_palm_fence_gate_wall_open.json deleted file mode 100644 index f35032cd..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_fence_gate_wall_open.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/template_fence_gate_wall_open", - "textures": { - "texture": "terrestria:block/yucca_palm_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_fence_inventory.json b/client/src/main/resources/assets/terrestria/models/block/yucca_palm_fence_inventory.json deleted file mode 100644 index d6bdc735..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_fence_inventory.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/fence_inventory", - "textures": { - "texture": "terrestria:block/yucca_palm_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_fence_post.json b/client/src/main/resources/assets/terrestria/models/block/yucca_palm_fence_post.json deleted file mode 100644 index f191826e..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_fence_post.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/fence_post", - "textures": { - "texture": "terrestria:block/yucca_palm_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_fence_side.json b/client/src/main/resources/assets/terrestria/models/block/yucca_palm_fence_side.json deleted file mode 100644 index 30962c2c..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_fence_side.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/fence_side", - "textures": { - "texture": "terrestria:block/yucca_palm_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_hanging_sign.json b/client/src/main/resources/assets/terrestria/models/block/yucca_palm_hanging_sign.json deleted file mode 100644 index 42d81601..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_hanging_sign.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "textures": { - "particle": "terrestria:block/yucca_palm_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_leaf_pile.json b/client/src/main/resources/assets/terrestria/models/block/yucca_palm_leaf_pile.json deleted file mode 100644 index e80ae35e..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_leaf_pile.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "minecraft:block/carpet", - "textures": { - "wool": "terrestria:block/yucca_palm_leaves", - "particle": "terrestria:block/yucca_palm_leaves" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_leaves.json b/client/src/main/resources/assets/terrestria/models/block/yucca_palm_leaves.json deleted file mode 100644 index 5517aba0..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_leaves.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/leaves", - "textures": { - "all": "terrestria:block/yucca_palm_leaves" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_log.json b/client/src/main/resources/assets/terrestria/models/block/yucca_palm_log.json deleted file mode 100644 index 5b7e5ca9..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_log.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "terraform:block/small_log", - "textures": { - "particle": "terrestria:block/yucca_palm_log_section", - "side": "terrestria:block/yucca_palm_log" - } -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_log_branch.json b/client/src/main/resources/assets/terrestria/models/block/yucca_palm_log_branch.json deleted file mode 100644 index b26d5192..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_log_branch.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "terraform:block/small_log_branch", - "textures": { - "particle": "terrestria:block/yucca_palm_log_section", - "end": "terrestria:block/yucca_palm_log_section", - "side": "terrestria:block/yucca_palm_log" - } -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_log_leaves.json b/client/src/main/resources/assets/terrestria/models/block/yucca_palm_log_leaves.json deleted file mode 100644 index 91fc26f6..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_log_leaves.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "terraform:block/small_log_leaves", - "textures": { - "particle": "terrestria:block/yucca_palm_leaves", - "leaves": "terrestria:block/yucca_palm_leaves" - } -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_log_leaves_cutout.json b/client/src/main/resources/assets/terrestria/models/block/yucca_palm_log_leaves_cutout.json deleted file mode 100644 index 613c4d77..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_log_leaves_cutout.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "parent": "terraform:block/small_log_leaves_cutout", - "textures": { - "particle": "terrestria:block/yucca_palm_leaves", - "leaves": "terrestria:block/yucca_palm_leaves" - } -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_planks.json b/client/src/main/resources/assets/terrestria/models/block/yucca_palm_planks.json deleted file mode 100644 index 97af0a92..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_planks.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/cube_all", - "textures": { - "all": "terrestria:block/yucca_palm_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_pressure_plate.json b/client/src/main/resources/assets/terrestria/models/block/yucca_palm_pressure_plate.json deleted file mode 100644 index 911892e6..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_pressure_plate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/pressure_plate_up", - "textures": { - "texture": "terrestria:block/yucca_palm_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_pressure_plate_down.json b/client/src/main/resources/assets/terrestria/models/block/yucca_palm_pressure_plate_down.json deleted file mode 100644 index 8ccaf400..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_pressure_plate_down.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/pressure_plate_down", - "textures": { - "texture": "terrestria:block/yucca_palm_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_sapling.json b/client/src/main/resources/assets/terrestria/models/block/yucca_palm_sapling.json deleted file mode 100644 index 775c233b..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_sapling.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cross", - "textures": { - "cross": "terrestria:block/yucca_palm_sapling" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_sign.json b/client/src/main/resources/assets/terrestria/models/block/yucca_palm_sign.json deleted file mode 100644 index 42d81601..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_sign.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "textures": { - "particle": "terrestria:block/yucca_palm_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_slab.json b/client/src/main/resources/assets/terrestria/models/block/yucca_palm_slab.json deleted file mode 100644 index cda9d308..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_slab.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab", - "textures": { - "bottom": "terrestria:block/yucca_palm_planks", - "top": "terrestria:block/yucca_palm_planks", - "side": "terrestria:block/yucca_palm_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_slab_top.json b/client/src/main/resources/assets/terrestria/models/block/yucca_palm_slab_top.json deleted file mode 100644 index 7319e4ce..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_slab_top.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "minecraft:block/slab_top", - "textures": { - "bottom": "terrestria:block/yucca_palm_planks", - "top": "terrestria:block/yucca_palm_planks", - "side": "terrestria:block/yucca_palm_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_stairs.json b/client/src/main/resources/assets/terrestria/models/block/yucca_palm_stairs.json deleted file mode 100644 index 48995a1b..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_stairs.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/stairs", - "textures": { - "bottom": "terrestria:block/yucca_palm_planks", - "top": "terrestria:block/yucca_palm_planks", - "side": "terrestria:block/yucca_palm_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_stairs_inner.json b/client/src/main/resources/assets/terrestria/models/block/yucca_palm_stairs_inner.json deleted file mode 100644 index c86a3726..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_stairs_inner.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/inner_stairs", - "textures": { - "bottom": "terrestria:block/yucca_palm_planks", - "top": "terrestria:block/yucca_palm_planks", - "side": "terrestria:block/yucca_palm_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_stairs_outer.json b/client/src/main/resources/assets/terrestria/models/block/yucca_palm_stairs_outer.json deleted file mode 100644 index 40e57fa1..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_stairs_outer.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "parent": "block/outer_stairs", - "textures": { - "bottom": "terrestria:block/yucca_palm_planks", - "top": "terrestria:block/yucca_palm_planks", - "side": "terrestria:block/yucca_palm_planks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_trapdoor_bottom.json b/client/src/main/resources/assets/terrestria/models/block/yucca_palm_trapdoor_bottom.json deleted file mode 100644 index 0b53c96a..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_trapdoor_bottom.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_orientable_trapdoor_bottom", - "textures": { - "texture": "terrestria:block/yucca_palm_trapdoor" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_trapdoor_open.json b/client/src/main/resources/assets/terrestria/models/block/yucca_palm_trapdoor_open.json deleted file mode 100644 index 4218ed8e..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_trapdoor_open.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_orientable_trapdoor_open", - "textures": { - "texture": "terrestria:block/yucca_palm_trapdoor" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_trapdoor_top.json b/client/src/main/resources/assets/terrestria/models/block/yucca_palm_trapdoor_top.json deleted file mode 100644 index 0842e0dc..00000000 --- a/client/src/main/resources/assets/terrestria/models/block/yucca_palm_trapdoor_top.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/template_orientable_trapdoor_top", - "textures": { - "texture": "terrestria:block/yucca_palm_trapdoor" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/agave.json b/client/src/main/resources/assets/terrestria/models/item/agave.json deleted file mode 100644 index 292235c8..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/agave.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:block/agave" - } -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/aloe_vera.json b/client/src/main/resources/assets/terrestria/models/item/aloe_vera.json deleted file mode 100644 index 9d56b02f..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/aloe_vera.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:block/aloe_vera" - } -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/andisol_farmland.json b/client/src/main/resources/assets/terrestria/models/item/andisol_farmland.json deleted file mode 100644 index f0de13d6..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/andisol_farmland.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/andisol_farmland" -} diff --git a/client/src/main/resources/assets/terrestria/models/item/andisol_grass_path.json b/client/src/main/resources/assets/terrestria/models/item/andisol_grass_path.json deleted file mode 100644 index bc49e33d..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/andisol_grass_path.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/basalt_grass_path" -} diff --git a/client/src/main/resources/assets/terrestria/models/item/basalt.json b/client/src/main/resources/assets/terrestria/models/item/basalt.json deleted file mode 100644 index c6c02bf9..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/basalt.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/basalt" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/basalt_brick_slab.json b/client/src/main/resources/assets/terrestria/models/item/basalt_brick_slab.json deleted file mode 100644 index 746a5e20..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/basalt_brick_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/basalt_brick_slab" -} diff --git a/client/src/main/resources/assets/terrestria/models/item/basalt_brick_stairs.json b/client/src/main/resources/assets/terrestria/models/item/basalt_brick_stairs.json deleted file mode 100644 index 95235228..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/basalt_brick_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/basalt_brick_stairs" -} diff --git a/client/src/main/resources/assets/terrestria/models/item/basalt_brick_wall.json b/client/src/main/resources/assets/terrestria/models/item/basalt_brick_wall.json deleted file mode 100644 index 1f9dc3de..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/basalt_brick_wall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "terrestria:block/basalt_bricks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/basalt_bricks.json b/client/src/main/resources/assets/terrestria/models/item/basalt_bricks.json deleted file mode 100644 index 855beab2..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/basalt_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/basalt_bricks" -} diff --git a/client/src/main/resources/assets/terrestria/models/item/basalt_button.json b/client/src/main/resources/assets/terrestria/models/item/basalt_button.json deleted file mode 100644 index 8148fff0..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/basalt_button.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/button_inventory", - "textures": { - "texture": "terrestria:block/basalt" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/basalt_cobblestone.json b/client/src/main/resources/assets/terrestria/models/item/basalt_cobblestone.json deleted file mode 100644 index 8c0d62cc..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/basalt_cobblestone.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/basalt_cobblestone" -} diff --git a/client/src/main/resources/assets/terrestria/models/item/basalt_cobblestone_slab.json b/client/src/main/resources/assets/terrestria/models/item/basalt_cobblestone_slab.json deleted file mode 100644 index a25d8542..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/basalt_cobblestone_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/basalt_cobblestone_slab" -} diff --git a/client/src/main/resources/assets/terrestria/models/item/basalt_cobblestone_stairs.json b/client/src/main/resources/assets/terrestria/models/item/basalt_cobblestone_stairs.json deleted file mode 100644 index 7c84fdd4..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/basalt_cobblestone_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/basalt_cobblestone_stairs" -} diff --git a/client/src/main/resources/assets/terrestria/models/item/basalt_cobblestone_wall.json b/client/src/main/resources/assets/terrestria/models/item/basalt_cobblestone_wall.json deleted file mode 100644 index f9f868f7..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/basalt_cobblestone_wall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "terrestria:block/basalt_cobblestone" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/basalt_dirt.json b/client/src/main/resources/assets/terrestria/models/item/basalt_dirt.json deleted file mode 100644 index f469a399..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/basalt_dirt.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/basalt_dirt" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/basalt_grass_block.json b/client/src/main/resources/assets/terrestria/models/item/basalt_grass_block.json deleted file mode 100644 index 07289f78..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/basalt_grass_block.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/basalt_grass_block" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/basalt_podzol.json b/client/src/main/resources/assets/terrestria/models/item/basalt_podzol.json deleted file mode 100644 index ce55385a..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/basalt_podzol.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/basalt_podzol" -} diff --git a/client/src/main/resources/assets/terrestria/models/item/basalt_pressure_plate.json b/client/src/main/resources/assets/terrestria/models/item/basalt_pressure_plate.json deleted file mode 100644 index 812c3ce2..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/basalt_pressure_plate.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/basalt_pressure_plate" -} diff --git a/client/src/main/resources/assets/terrestria/models/item/basalt_sand.json b/client/src/main/resources/assets/terrestria/models/item/basalt_sand.json deleted file mode 100644 index 722a816a..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/basalt_sand.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/basalt_sand" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/basalt_slab.json b/client/src/main/resources/assets/terrestria/models/item/basalt_slab.json deleted file mode 100644 index 4d3da355..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/basalt_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/basalt_slab" -} diff --git a/client/src/main/resources/assets/terrestria/models/item/basalt_stairs.json b/client/src/main/resources/assets/terrestria/models/item/basalt_stairs.json deleted file mode 100644 index 3632ffec..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/basalt_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/basalt_stairs" -} diff --git a/client/src/main/resources/assets/terrestria/models/item/basalt_wall.json b/client/src/main/resources/assets/terrestria/models/item/basalt_wall.json deleted file mode 100644 index d329e6df..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/basalt_wall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "terrestria:block/basalt" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/bryce_sapling.json b/client/src/main/resources/assets/terrestria/models/item/bryce_sapling.json deleted file mode 100644 index f76c8380..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/bryce_sapling.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:block/bryce_sapling" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/cattail.json b/client/src/main/resources/assets/terrestria/models/item/cattail.json deleted file mode 100644 index db52a8e6..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/cattail.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:block/cattail" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/chiseled_basalt_bricks.json b/client/src/main/resources/assets/terrestria/models/item/chiseled_basalt_bricks.json deleted file mode 100644 index 77ed9870..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/chiseled_basalt_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/chiseled_basalt_bricks" -} diff --git a/client/src/main/resources/assets/terrestria/models/item/cracked_basalt_bricks.json b/client/src/main/resources/assets/terrestria/models/item/cracked_basalt_bricks.json deleted file mode 100644 index a253b32a..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/cracked_basalt_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/cracked_basalt_bricks" -} diff --git a/client/src/main/resources/assets/terrestria/models/item/cypress_boat.json b/client/src/main/resources/assets/terrestria/models/item/cypress_boat.json deleted file mode 100644 index 77f9ee4f..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/cypress_boat.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:item/cypress_boat" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/cypress_button.json b/client/src/main/resources/assets/terrestria/models/item/cypress_button.json deleted file mode 100644 index c8b5948d..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/cypress_button.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/cypress_button_inventory" -} diff --git a/client/src/main/resources/assets/terrestria/models/item/cypress_chest_boat.json b/client/src/main/resources/assets/terrestria/models/item/cypress_chest_boat.json deleted file mode 100644 index 6da2413b..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/cypress_chest_boat.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:item/cypress_chest_boat" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/cypress_door.json b/client/src/main/resources/assets/terrestria/models/item/cypress_door.json deleted file mode 100644 index 6fc76cf1..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/cypress_door.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:item/cypress_door" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/cypress_fence.json b/client/src/main/resources/assets/terrestria/models/item/cypress_fence.json deleted file mode 100644 index c528a994..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/cypress_fence.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/cypress_fence_inventory" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/cypress_fence_gate.json b/client/src/main/resources/assets/terrestria/models/item/cypress_fence_gate.json deleted file mode 100644 index 1a820639..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/cypress_fence_gate.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/cypress_fence_gate" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/cypress_hanging_sign.json b/client/src/main/resources/assets/terrestria/models/item/cypress_hanging_sign.json deleted file mode 100644 index 08a992c0..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/cypress_hanging_sign.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:item/cypress_hanging_sign" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/cypress_leaves.json b/client/src/main/resources/assets/terrestria/models/item/cypress_leaves.json deleted file mode 100644 index 8084ad1a..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/cypress_leaves.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/cypress_leaves" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/cypress_log.json b/client/src/main/resources/assets/terrestria/models/item/cypress_log.json deleted file mode 100644 index 43ecaea8..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/cypress_log.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/cypress_log" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/cypress_planks.json b/client/src/main/resources/assets/terrestria/models/item/cypress_planks.json deleted file mode 100644 index f18840e3..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/cypress_planks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/cypress_planks" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/cypress_pressure_plate.json b/client/src/main/resources/assets/terrestria/models/item/cypress_pressure_plate.json deleted file mode 100644 index 89eb5487..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/cypress_pressure_plate.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/cypress_pressure_plate" -} diff --git a/client/src/main/resources/assets/terrestria/models/item/cypress_quarter_log.json b/client/src/main/resources/assets/terrestria/models/item/cypress_quarter_log.json deleted file mode 100644 index 866e0ed0..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/cypress_quarter_log.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/cypress_quarter_log" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/cypress_sapling.json b/client/src/main/resources/assets/terrestria/models/item/cypress_sapling.json deleted file mode 100644 index 035b2790..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/cypress_sapling.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:block/cypress_sapling" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/cypress_sign.json b/client/src/main/resources/assets/terrestria/models/item/cypress_sign.json deleted file mode 100644 index 5d57d3cc..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/cypress_sign.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:item/cypress_sign" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/cypress_slab.json b/client/src/main/resources/assets/terrestria/models/item/cypress_slab.json deleted file mode 100644 index ba61457d..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/cypress_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/cypress_slab" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/cypress_stairs.json b/client/src/main/resources/assets/terrestria/models/item/cypress_stairs.json deleted file mode 100644 index 0d9ddd37..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/cypress_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/cypress_stairs" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/cypress_trapdoor.json b/client/src/main/resources/assets/terrestria/models/item/cypress_trapdoor.json deleted file mode 100644 index 9d3acd27..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/cypress_trapdoor.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/cypress_trapdoor_bottom" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/cypress_wood.json b/client/src/main/resources/assets/terrestria/models/item/cypress_wood.json deleted file mode 100644 index 1cee7f12..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/cypress_wood.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/cypress_wood" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/dark_japanese_maple_leaves.json b/client/src/main/resources/assets/terrestria/models/item/dark_japanese_maple_leaves.json deleted file mode 100644 index 9810de0c..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/dark_japanese_maple_leaves.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/dark_japanese_maple_leaves" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/dark_japanese_maple_sapling.json b/client/src/main/resources/assets/terrestria/models/item/dark_japanese_maple_sapling.json deleted file mode 100644 index 7ca78f6f..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/dark_japanese_maple_sapling.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:block/japanese_maple_sapling_dark" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/dead_grass.json b/client/src/main/resources/assets/terrestria/models/item/dead_grass.json deleted file mode 100644 index 38889923..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/dead_grass.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:block/dead_grass" - } -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/hemlock_boat.json b/client/src/main/resources/assets/terrestria/models/item/hemlock_boat.json deleted file mode 100644 index e69430fa..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/hemlock_boat.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:item/hemlock_boat" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/hemlock_button.json b/client/src/main/resources/assets/terrestria/models/item/hemlock_button.json deleted file mode 100644 index b55f7426..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/hemlock_button.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/hemlock_button_inventory" -} diff --git a/client/src/main/resources/assets/terrestria/models/item/hemlock_chest_boat.json b/client/src/main/resources/assets/terrestria/models/item/hemlock_chest_boat.json deleted file mode 100644 index d8473bc1..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/hemlock_chest_boat.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:item/hemlock_chest_boat" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/hemlock_door.json b/client/src/main/resources/assets/terrestria/models/item/hemlock_door.json deleted file mode 100644 index 6ab39a4b..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/hemlock_door.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:item/hemlock_door" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/hemlock_fence.json b/client/src/main/resources/assets/terrestria/models/item/hemlock_fence.json deleted file mode 100644 index cdefa232..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/hemlock_fence.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/hemlock_fence_inventory" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/hemlock_fence_gate.json b/client/src/main/resources/assets/terrestria/models/item/hemlock_fence_gate.json deleted file mode 100644 index bfdbdada..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/hemlock_fence_gate.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/hemlock_fence_gate" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/hemlock_hanging_sign.json b/client/src/main/resources/assets/terrestria/models/item/hemlock_hanging_sign.json deleted file mode 100644 index 3c42b9e0..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/hemlock_hanging_sign.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:item/hemlock_hanging_sign" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/hemlock_leaves.json b/client/src/main/resources/assets/terrestria/models/item/hemlock_leaves.json deleted file mode 100644 index 9d77aef8..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/hemlock_leaves.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/hemlock_leaves" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/hemlock_log.json b/client/src/main/resources/assets/terrestria/models/item/hemlock_log.json deleted file mode 100644 index e8bffae6..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/hemlock_log.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/hemlock_log" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/hemlock_planks.json b/client/src/main/resources/assets/terrestria/models/item/hemlock_planks.json deleted file mode 100644 index 448984d7..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/hemlock_planks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/hemlock_planks" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/hemlock_pressure_plate.json b/client/src/main/resources/assets/terrestria/models/item/hemlock_pressure_plate.json deleted file mode 100644 index abaccdc5..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/hemlock_pressure_plate.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/hemlock_pressure_plate" -} diff --git a/client/src/main/resources/assets/terrestria/models/item/hemlock_quarter_log.json b/client/src/main/resources/assets/terrestria/models/item/hemlock_quarter_log.json deleted file mode 100644 index d6db10f7..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/hemlock_quarter_log.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/hemlock_quarter_log" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/hemlock_sapling.json b/client/src/main/resources/assets/terrestria/models/item/hemlock_sapling.json deleted file mode 100644 index ec88ada8..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/hemlock_sapling.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:block/hemlock_sapling" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/hemlock_sign.json b/client/src/main/resources/assets/terrestria/models/item/hemlock_sign.json deleted file mode 100644 index 09520094..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/hemlock_sign.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:item/hemlock_sign" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/hemlock_slab.json b/client/src/main/resources/assets/terrestria/models/item/hemlock_slab.json deleted file mode 100644 index 50af0787..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/hemlock_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/hemlock_slab" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/hemlock_stairs.json b/client/src/main/resources/assets/terrestria/models/item/hemlock_stairs.json deleted file mode 100644 index 9a759e20..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/hemlock_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/hemlock_stairs" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/hemlock_trapdoor.json b/client/src/main/resources/assets/terrestria/models/item/hemlock_trapdoor.json deleted file mode 100644 index f9ebf868..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/hemlock_trapdoor.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/hemlock_trapdoor_bottom" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/hemlock_wood.json b/client/src/main/resources/assets/terrestria/models/item/hemlock_wood.json deleted file mode 100644 index e7b6d2b1..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/hemlock_wood.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/hemlock_wood" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/indian_paintbrush.json b/client/src/main/resources/assets/terrestria/models/item/indian_paintbrush.json deleted file mode 100644 index e9835649..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/indian_paintbrush.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:block/indian_paintbrush" - } -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/japanese_maple_boat.json b/client/src/main/resources/assets/terrestria/models/item/japanese_maple_boat.json deleted file mode 100644 index 27f1d5f1..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/japanese_maple_boat.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:item/japanese_maple_boat" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/japanese_maple_button.json b/client/src/main/resources/assets/terrestria/models/item/japanese_maple_button.json deleted file mode 100644 index 1d4264f1..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/japanese_maple_button.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/japanese_maple_button_inventory" -} diff --git a/client/src/main/resources/assets/terrestria/models/item/japanese_maple_chest_boat.json b/client/src/main/resources/assets/terrestria/models/item/japanese_maple_chest_boat.json deleted file mode 100644 index 79c8e3ac..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/japanese_maple_chest_boat.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:item/japanese_maple_chest_boat" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/japanese_maple_door.json b/client/src/main/resources/assets/terrestria/models/item/japanese_maple_door.json deleted file mode 100644 index 16053dbf..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/japanese_maple_door.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:item/japanese_maple_door" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/japanese_maple_fence.json b/client/src/main/resources/assets/terrestria/models/item/japanese_maple_fence.json deleted file mode 100644 index c13a3361..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/japanese_maple_fence.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/japanese_maple_fence_inventory" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/japanese_maple_fence_gate.json b/client/src/main/resources/assets/terrestria/models/item/japanese_maple_fence_gate.json deleted file mode 100644 index 130d5d9f..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/japanese_maple_fence_gate.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/japanese_maple_fence_gate" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/japanese_maple_hanging_sign.json b/client/src/main/resources/assets/terrestria/models/item/japanese_maple_hanging_sign.json deleted file mode 100644 index 1c7720b5..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/japanese_maple_hanging_sign.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:item/japanese_maple_hanging_sign" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/japanese_maple_leaves.json b/client/src/main/resources/assets/terrestria/models/item/japanese_maple_leaves.json deleted file mode 100644 index b65a0d47..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/japanese_maple_leaves.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/japanese_maple_leaves" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/japanese_maple_log.json b/client/src/main/resources/assets/terrestria/models/item/japanese_maple_log.json deleted file mode 100644 index 819e14f2..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/japanese_maple_log.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/japanese_maple_log" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/japanese_maple_planks.json b/client/src/main/resources/assets/terrestria/models/item/japanese_maple_planks.json deleted file mode 100644 index f47a64ad..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/japanese_maple_planks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/japanese_maple_planks" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/japanese_maple_pressure_plate.json b/client/src/main/resources/assets/terrestria/models/item/japanese_maple_pressure_plate.json deleted file mode 100644 index 133dd4d9..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/japanese_maple_pressure_plate.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/japanese_maple_pressure_plate" -} diff --git a/client/src/main/resources/assets/terrestria/models/item/japanese_maple_sapling.json b/client/src/main/resources/assets/terrestria/models/item/japanese_maple_sapling.json deleted file mode 100644 index 0b2a9dbc..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/japanese_maple_sapling.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:block/japanese_maple_sapling" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/japanese_maple_shrub_leaves.json b/client/src/main/resources/assets/terrestria/models/item/japanese_maple_shrub_leaves.json deleted file mode 100644 index c252ee9d..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/japanese_maple_shrub_leaves.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/japanese_maple_shrub_leaves" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/japanese_maple_shrub_sapling.json b/client/src/main/resources/assets/terrestria/models/item/japanese_maple_shrub_sapling.json deleted file mode 100644 index 1f983f51..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/japanese_maple_shrub_sapling.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:block/japanese_maple_shrub_sapling" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/japanese_maple_sign.json b/client/src/main/resources/assets/terrestria/models/item/japanese_maple_sign.json deleted file mode 100644 index 247fef56..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/japanese_maple_sign.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:item/japanese_maple_sign" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/japanese_maple_slab.json b/client/src/main/resources/assets/terrestria/models/item/japanese_maple_slab.json deleted file mode 100644 index f5f47226..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/japanese_maple_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/japanese_maple_slab" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/japanese_maple_stairs.json b/client/src/main/resources/assets/terrestria/models/item/japanese_maple_stairs.json deleted file mode 100644 index 934967c8..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/japanese_maple_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/japanese_maple_stairs" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/japanese_maple_trapdoor.json b/client/src/main/resources/assets/terrestria/models/item/japanese_maple_trapdoor.json deleted file mode 100644 index c738cb38..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/japanese_maple_trapdoor.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/japanese_maple_trapdoor_bottom" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/japanese_maple_wood.json b/client/src/main/resources/assets/terrestria/models/item/japanese_maple_wood.json deleted file mode 100644 index f6b3f1ac..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/japanese_maple_wood.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/japanese_maple_wood" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/jungle_palm_leaves.json b/client/src/main/resources/assets/terrestria/models/item/jungle_palm_leaves.json deleted file mode 100644 index 6b26e460..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/jungle_palm_leaves.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/jungle_palm_leaves" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/jungle_palm_sapling.json b/client/src/main/resources/assets/terrestria/models/item/jungle_palm_sapling.json deleted file mode 100644 index 7e839697..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/jungle_palm_sapling.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:block/jungle_palm_sapling" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/log_turner.json b/client/src/main/resources/assets/terrestria/models/item/log_turner.json deleted file mode 100644 index 04664368..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/log_turner.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:item/log_turner" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/monsteras.json b/client/src/main/resources/assets/terrestria/models/item/monsteras.json deleted file mode 100644 index 91d1f9f4..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/monsteras.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:block/monsteras" - } -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/mossy_basalt_brick_slab.json b/client/src/main/resources/assets/terrestria/models/item/mossy_basalt_brick_slab.json deleted file mode 100644 index 7a950ce8..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/mossy_basalt_brick_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/mossy_basalt_brick_slab" -} diff --git a/client/src/main/resources/assets/terrestria/models/item/mossy_basalt_brick_stairs.json b/client/src/main/resources/assets/terrestria/models/item/mossy_basalt_brick_stairs.json deleted file mode 100644 index 20472ef5..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/mossy_basalt_brick_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/mossy_basalt_brick_stairs" -} diff --git a/client/src/main/resources/assets/terrestria/models/item/mossy_basalt_brick_wall.json b/client/src/main/resources/assets/terrestria/models/item/mossy_basalt_brick_wall.json deleted file mode 100644 index 0bdcb8c6..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/mossy_basalt_brick_wall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "terrestria:block/mossy_basalt_bricks" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/mossy_basalt_bricks.json b/client/src/main/resources/assets/terrestria/models/item/mossy_basalt_bricks.json deleted file mode 100644 index fada0b7f..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/mossy_basalt_bricks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/mossy_basalt_bricks" -} diff --git a/client/src/main/resources/assets/terrestria/models/item/mossy_basalt_cobblestone.json b/client/src/main/resources/assets/terrestria/models/item/mossy_basalt_cobblestone.json deleted file mode 100644 index a0fcac1b..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/mossy_basalt_cobblestone.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/mossy_basalt_cobblestone" -} diff --git a/client/src/main/resources/assets/terrestria/models/item/mossy_basalt_cobblestone_slab.json b/client/src/main/resources/assets/terrestria/models/item/mossy_basalt_cobblestone_slab.json deleted file mode 100644 index 8b97f6db..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/mossy_basalt_cobblestone_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/mossy_basalt_cobblestone_slab" -} diff --git a/client/src/main/resources/assets/terrestria/models/item/mossy_basalt_cobblestone_stairs.json b/client/src/main/resources/assets/terrestria/models/item/mossy_basalt_cobblestone_stairs.json deleted file mode 100644 index d2d040d2..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/mossy_basalt_cobblestone_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/mossy_basalt_cobblestone_stairs" -} diff --git a/client/src/main/resources/assets/terrestria/models/item/mossy_basalt_cobblestone_wall.json b/client/src/main/resources/assets/terrestria/models/item/mossy_basalt_cobblestone_wall.json deleted file mode 100644 index e508ea4d..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/mossy_basalt_cobblestone_wall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "terrestria:block/mossy_basalt_cobblestone" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_boat.json b/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_boat.json deleted file mode 100644 index 075a8821..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_boat.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:item/rainbow_eucalyptus_boat" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_button.json b/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_button.json deleted file mode 100644 index 88e45d39..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_button.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/rainbow_eucalyptus_button_inventory" -} diff --git a/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_chest_boat.json b/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_chest_boat.json deleted file mode 100644 index 399d5689..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_chest_boat.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:item/rainbow_eucalyptus_chest_boat" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_door.json b/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_door.json deleted file mode 100644 index 6192b480..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_door.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:item/rainbow_eucalyptus_door" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_fence.json b/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_fence.json deleted file mode 100644 index cf7b4052..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_fence.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/rainbow_eucalyptus_fence_inventory" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_fence_gate.json b/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_fence_gate.json deleted file mode 100644 index c31ad4fc..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_fence_gate.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/rainbow_eucalyptus_fence_gate" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_hanging_sign.json b/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_hanging_sign.json deleted file mode 100644 index da808de3..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_hanging_sign.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:item/rainbow_eucalyptus_hanging_sign" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_leaves.json b/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_leaves.json deleted file mode 100644 index 4c642706..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_leaves.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/rainbow_eucalyptus_leaves" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_log.json b/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_log.json deleted file mode 100644 index 2aacf127..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_log.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/rainbow_eucalyptus_log" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_planks.json b/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_planks.json deleted file mode 100644 index bc4df5ec..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_planks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/rainbow_eucalyptus_planks" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_pressure_plate.json b/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_pressure_plate.json deleted file mode 100644 index 0beecb8f..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_pressure_plate.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/rainbow_eucalyptus_pressure_plate" -} diff --git a/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_quarter_log.json b/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_quarter_log.json deleted file mode 100644 index a86bd01e..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_quarter_log.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/rainbow_eucalyptus_quarter_log" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_sapling.json b/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_sapling.json deleted file mode 100644 index deb2d63a..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_sapling.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:block/rainbow_eucalyptus_sapling" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_sign.json b/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_sign.json deleted file mode 100644 index 791196cf..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_sign.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:item/rainbow_eucalyptus_sign" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_slab.json b/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_slab.json deleted file mode 100644 index 82b205be..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/rainbow_eucalyptus_slab" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_stairs.json b/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_stairs.json deleted file mode 100644 index 14bbe8ca..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/rainbow_eucalyptus_stairs" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_trapdoor.json b/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_trapdoor.json deleted file mode 100644 index 6181326a..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_trapdoor.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/rainbow_eucalyptus_trapdoor_bottom" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_wood.json b/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_wood.json deleted file mode 100644 index 3087a01a..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/rainbow_eucalyptus_wood.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/rainbow_eucalyptus_wood" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/redwood_boat.json b/client/src/main/resources/assets/terrestria/models/item/redwood_boat.json deleted file mode 100644 index cd030dff..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/redwood_boat.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:item/redwood_boat" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/redwood_button.json b/client/src/main/resources/assets/terrestria/models/item/redwood_button.json deleted file mode 100644 index 3c5bf5b9..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/redwood_button.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/redwood_button_inventory" -} diff --git a/client/src/main/resources/assets/terrestria/models/item/redwood_chest_boat.json b/client/src/main/resources/assets/terrestria/models/item/redwood_chest_boat.json deleted file mode 100644 index 9cb32c8c..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/redwood_chest_boat.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:item/redwood_chest_boat" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/redwood_door.json b/client/src/main/resources/assets/terrestria/models/item/redwood_door.json deleted file mode 100644 index 7e0e55b8..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/redwood_door.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:item/redwood_door" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/redwood_fence.json b/client/src/main/resources/assets/terrestria/models/item/redwood_fence.json deleted file mode 100644 index d4d96dc3..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/redwood_fence.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/redwood_fence_inventory" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/redwood_fence_gate.json b/client/src/main/resources/assets/terrestria/models/item/redwood_fence_gate.json deleted file mode 100644 index 55a22bd8..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/redwood_fence_gate.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/redwood_fence_gate" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/redwood_hanging_sign.json b/client/src/main/resources/assets/terrestria/models/item/redwood_hanging_sign.json deleted file mode 100644 index f6006cb1..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/redwood_hanging_sign.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:item/redwood_hanging_sign" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/redwood_leaves.json b/client/src/main/resources/assets/terrestria/models/item/redwood_leaves.json deleted file mode 100644 index f65ccd25..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/redwood_leaves.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/redwood_leaves" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/redwood_log.json b/client/src/main/resources/assets/terrestria/models/item/redwood_log.json deleted file mode 100644 index 0c78d395..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/redwood_log.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/redwood_log" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/redwood_planks.json b/client/src/main/resources/assets/terrestria/models/item/redwood_planks.json deleted file mode 100644 index 5d7827b3..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/redwood_planks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/redwood_planks" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/redwood_pressure_plate.json b/client/src/main/resources/assets/terrestria/models/item/redwood_pressure_plate.json deleted file mode 100644 index 106836d6..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/redwood_pressure_plate.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/redwood_pressure_plate" -} diff --git a/client/src/main/resources/assets/terrestria/models/item/redwood_quarter_log.json b/client/src/main/resources/assets/terrestria/models/item/redwood_quarter_log.json deleted file mode 100644 index 2cbe5093..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/redwood_quarter_log.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/redwood_quarter_log" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/redwood_sapling.json b/client/src/main/resources/assets/terrestria/models/item/redwood_sapling.json deleted file mode 100644 index cea781dc..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/redwood_sapling.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:block/redwood_sapling" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/redwood_sign.json b/client/src/main/resources/assets/terrestria/models/item/redwood_sign.json deleted file mode 100644 index d3b444fd..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/redwood_sign.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:item/redwood_sign" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/redwood_slab.json b/client/src/main/resources/assets/terrestria/models/item/redwood_slab.json deleted file mode 100644 index 89dfc3cd..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/redwood_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/redwood_slab" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/redwood_stairs.json b/client/src/main/resources/assets/terrestria/models/item/redwood_stairs.json deleted file mode 100644 index fc06e80a..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/redwood_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/redwood_stairs" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/redwood_trapdoor.json b/client/src/main/resources/assets/terrestria/models/item/redwood_trapdoor.json deleted file mode 100644 index 5a8cb290..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/redwood_trapdoor.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/redwood_trapdoor_bottom" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/redwood_wood.json b/client/src/main/resources/assets/terrestria/models/item/redwood_wood.json deleted file mode 100644 index 8fc8202c..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/redwood_wood.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/redwood_wood" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/rubber_boat.json b/client/src/main/resources/assets/terrestria/models/item/rubber_boat.json deleted file mode 100644 index 9f297a7a..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/rubber_boat.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:item/rubber_boat" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/rubber_button.json b/client/src/main/resources/assets/terrestria/models/item/rubber_button.json deleted file mode 100644 index 6bc0ee2f..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/rubber_button.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/rubber_button_inventory" -} diff --git a/client/src/main/resources/assets/terrestria/models/item/rubber_chest_boat.json b/client/src/main/resources/assets/terrestria/models/item/rubber_chest_boat.json deleted file mode 100644 index 4309269b..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/rubber_chest_boat.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:item/rubber_chest_boat" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/rubber_door.json b/client/src/main/resources/assets/terrestria/models/item/rubber_door.json deleted file mode 100644 index ecb41c60..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/rubber_door.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:item/rubber_door" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/rubber_fence.json b/client/src/main/resources/assets/terrestria/models/item/rubber_fence.json deleted file mode 100644 index 206c1659..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/rubber_fence.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/rubber_fence_inventory" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/rubber_fence_gate.json b/client/src/main/resources/assets/terrestria/models/item/rubber_fence_gate.json deleted file mode 100644 index 8311b830..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/rubber_fence_gate.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/rubber_fence_gate" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/rubber_hanging_sign.json b/client/src/main/resources/assets/terrestria/models/item/rubber_hanging_sign.json deleted file mode 100644 index 4504cfff..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/rubber_hanging_sign.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:item/rubber_hanging_sign" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/rubber_leaves.json b/client/src/main/resources/assets/terrestria/models/item/rubber_leaves.json deleted file mode 100644 index 1855a3d1..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/rubber_leaves.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/rubber_leaves" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/rubber_log.json b/client/src/main/resources/assets/terrestria/models/item/rubber_log.json deleted file mode 100644 index d49a3e46..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/rubber_log.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/rubber_log" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/rubber_planks.json b/client/src/main/resources/assets/terrestria/models/item/rubber_planks.json deleted file mode 100644 index f76c9ad6..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/rubber_planks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/rubber_planks" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/rubber_pressure_plate.json b/client/src/main/resources/assets/terrestria/models/item/rubber_pressure_plate.json deleted file mode 100644 index 69605b80..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/rubber_pressure_plate.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/rubber_pressure_plate" -} diff --git a/client/src/main/resources/assets/terrestria/models/item/rubber_sapling.json b/client/src/main/resources/assets/terrestria/models/item/rubber_sapling.json deleted file mode 100644 index 6f34ca24..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/rubber_sapling.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:block/rubber_sapling" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/rubber_sign.json b/client/src/main/resources/assets/terrestria/models/item/rubber_sign.json deleted file mode 100644 index 37cbe29e..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/rubber_sign.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:item/rubber_sign" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/rubber_slab.json b/client/src/main/resources/assets/terrestria/models/item/rubber_slab.json deleted file mode 100644 index 01910c80..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/rubber_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/rubber_slab" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/rubber_stairs.json b/client/src/main/resources/assets/terrestria/models/item/rubber_stairs.json deleted file mode 100644 index edefd163..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/rubber_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/rubber_stairs" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/rubber_trapdoor.json b/client/src/main/resources/assets/terrestria/models/item/rubber_trapdoor.json deleted file mode 100644 index 250f4d41..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/rubber_trapdoor.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/rubber_trapdoor_bottom" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/rubber_wood.json b/client/src/main/resources/assets/terrestria/models/item/rubber_wood.json deleted file mode 100644 index efdd7209..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/rubber_wood.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/rubber_wood" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/saguaro_cactus.json b/client/src/main/resources/assets/terrestria/models/item/saguaro_cactus.json deleted file mode 100644 index 560dd9db..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/saguaro_cactus.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "parent": "minecraft:block/block", - "textures": { - "particle": "terrestria:block/saguaro_cactus", - "all": "terrestria:block/saguaro_cactus" - }, - "elements": [ - { - "from": [ - 3, - 3, - 3 - ], - "to": [ - 13, - 13, - 13 - ], - "faces": { - "down": { - "texture": "#all" - }, - "up": { - "texture": "#all" - }, - "north": { - "texture": "#all" - }, - "south": { - "texture": "#all" - }, - "west": { - "texture": "#all" - }, - "east": { - "texture": "#all" - } - } - } - ] -} diff --git a/client/src/main/resources/assets/terrestria/models/item/saguaro_cactus_sapling.json b/client/src/main/resources/assets/terrestria/models/item/saguaro_cactus_sapling.json deleted file mode 100644 index a59306c7..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/saguaro_cactus_sapling.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:block/saguaro_cactus_sapling" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/sakura_boat.json b/client/src/main/resources/assets/terrestria/models/item/sakura_boat.json deleted file mode 100644 index 5d3b8365..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/sakura_boat.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:item/sakura_boat" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/sakura_button.json b/client/src/main/resources/assets/terrestria/models/item/sakura_button.json deleted file mode 100644 index cfcd8135..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/sakura_button.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/sakura_button_inventory" -} diff --git a/client/src/main/resources/assets/terrestria/models/item/sakura_chest_boat.json b/client/src/main/resources/assets/terrestria/models/item/sakura_chest_boat.json deleted file mode 100644 index b3f4d904..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/sakura_chest_boat.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:item/sakura_chest_boat" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/sakura_door.json b/client/src/main/resources/assets/terrestria/models/item/sakura_door.json deleted file mode 100644 index ef83e3db..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/sakura_door.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:item/sakura_door" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/sakura_fence.json b/client/src/main/resources/assets/terrestria/models/item/sakura_fence.json deleted file mode 100644 index 2788fe86..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/sakura_fence.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/sakura_fence_inventory" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/sakura_fence_gate.json b/client/src/main/resources/assets/terrestria/models/item/sakura_fence_gate.json deleted file mode 100644 index fefbdca2..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/sakura_fence_gate.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/sakura_fence_gate" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/sakura_hanging_sign.json b/client/src/main/resources/assets/terrestria/models/item/sakura_hanging_sign.json deleted file mode 100644 index 10ba4cbb..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/sakura_hanging_sign.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:item/sakura_hanging_sign" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/sakura_leaf_pile.json b/client/src/main/resources/assets/terrestria/models/item/sakura_leaf_pile.json deleted file mode 100644 index f039b19a..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/sakura_leaf_pile.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/sakura_leaf_pile" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/sakura_leaves.json b/client/src/main/resources/assets/terrestria/models/item/sakura_leaves.json deleted file mode 100644 index cc3545e8..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/sakura_leaves.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/sakura_leaves" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/sakura_log.json b/client/src/main/resources/assets/terrestria/models/item/sakura_log.json deleted file mode 100644 index 06e00b14..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/sakura_log.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "parent": "minecraft:block/block", - "textures": { - "particle": "terrestria:block/sakura_log", - "all": "terrestria:block/sakura_log" - }, - "elements": [ - { - "from": [ - 3, - 3, - 3 - ], - "to": [ - 13, - 13, - 13 - ], - "faces": { - "down": { - "texture": "#all" - }, - "up": { - "texture": "#all" - }, - "north": { - "texture": "#all" - }, - "south": { - "texture": "#all" - }, - "west": { - "texture": "#all" - }, - "east": { - "texture": "#all" - } - } - } - ] -} diff --git a/client/src/main/resources/assets/terrestria/models/item/sakura_planks.json b/client/src/main/resources/assets/terrestria/models/item/sakura_planks.json deleted file mode 100644 index 65e66dfd..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/sakura_planks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/sakura_planks" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/sakura_pressure_plate.json b/client/src/main/resources/assets/terrestria/models/item/sakura_pressure_plate.json deleted file mode 100644 index 1ea28e9f..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/sakura_pressure_plate.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/sakura_pressure_plate" -} diff --git a/client/src/main/resources/assets/terrestria/models/item/sakura_sapling.json b/client/src/main/resources/assets/terrestria/models/item/sakura_sapling.json deleted file mode 100644 index 29846f92..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/sakura_sapling.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:block/sakura_sapling" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/sakura_sign.json b/client/src/main/resources/assets/terrestria/models/item/sakura_sign.json deleted file mode 100644 index 30942ee3..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/sakura_sign.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:item/sakura_sign" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/sakura_slab.json b/client/src/main/resources/assets/terrestria/models/item/sakura_slab.json deleted file mode 100644 index 25113469..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/sakura_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/sakura_slab" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/sakura_stairs.json b/client/src/main/resources/assets/terrestria/models/item/sakura_stairs.json deleted file mode 100644 index 6d28713c..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/sakura_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/sakura_stairs" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/sakura_trapdoor.json b/client/src/main/resources/assets/terrestria/models/item/sakura_trapdoor.json deleted file mode 100644 index 7efb195b..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/sakura_trapdoor.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/sakura_trapdoor_bottom" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/small_oak_log.json b/client/src/main/resources/assets/terrestria/models/item/small_oak_log.json deleted file mode 100644 index 59f74e73..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/small_oak_log.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "parent": "minecraft:block/block", - "textures": { - "particle": "block/oak_log", - "all": "block/oak_log" - }, - "elements": [ - { - "from": [ - 3, - 3, - 3 - ], - "to": [ - 13, - 13, - 13 - ], - "faces": { - "down": { - "texture": "#all" - }, - "up": { - "texture": "#all" - }, - "north": { - "texture": "#all" - }, - "south": { - "texture": "#all" - }, - "west": { - "texture": "#all" - }, - "east": { - "texture": "#all" - } - } - } - ] -} diff --git a/client/src/main/resources/assets/terrestria/models/item/smooth_basalt.json b/client/src/main/resources/assets/terrestria/models/item/smooth_basalt.json deleted file mode 100644 index fc1f1c5b..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/smooth_basalt.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/smooth_basalt" -} diff --git a/client/src/main/resources/assets/terrestria/models/item/smooth_basalt_slab.json b/client/src/main/resources/assets/terrestria/models/item/smooth_basalt_slab.json deleted file mode 100644 index 62e14348..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/smooth_basalt_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/smooth_basalt_slab" -} diff --git a/client/src/main/resources/assets/terrestria/models/item/smooth_basalt_stairs.json b/client/src/main/resources/assets/terrestria/models/item/smooth_basalt_stairs.json deleted file mode 100644 index db16a274..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/smooth_basalt_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/smooth_basalt_stairs" -} diff --git a/client/src/main/resources/assets/terrestria/models/item/smooth_basalt_wall.json b/client/src/main/resources/assets/terrestria/models/item/smooth_basalt_wall.json deleted file mode 100644 index ca979778..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/smooth_basalt_wall.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/wall_inventory", - "textures": { - "wall": "terrestria:block/smooth_basalt" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/stripped_cypress_log.json b/client/src/main/resources/assets/terrestria/models/item/stripped_cypress_log.json deleted file mode 100644 index de9cf2ff..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/stripped_cypress_log.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/stripped_cypress_log" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/stripped_cypress_quarter_log.json b/client/src/main/resources/assets/terrestria/models/item/stripped_cypress_quarter_log.json deleted file mode 100644 index da415c49..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/stripped_cypress_quarter_log.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/stripped_cypress_quarter_log" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/stripped_cypress_wood.json b/client/src/main/resources/assets/terrestria/models/item/stripped_cypress_wood.json deleted file mode 100644 index a402838f..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/stripped_cypress_wood.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/stripped_cypress_wood" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/stripped_hemlock_log.json b/client/src/main/resources/assets/terrestria/models/item/stripped_hemlock_log.json deleted file mode 100644 index bed7b9aa..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/stripped_hemlock_log.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/stripped_hemlock_log" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/stripped_hemlock_quarter_log.json b/client/src/main/resources/assets/terrestria/models/item/stripped_hemlock_quarter_log.json deleted file mode 100644 index b8eba0b7..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/stripped_hemlock_quarter_log.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/stripped_hemlock_quarter_log" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/stripped_hemlock_wood.json b/client/src/main/resources/assets/terrestria/models/item/stripped_hemlock_wood.json deleted file mode 100644 index 5017a978..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/stripped_hemlock_wood.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/stripped_hemlock_wood" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/stripped_japanese_maple_log.json b/client/src/main/resources/assets/terrestria/models/item/stripped_japanese_maple_log.json deleted file mode 100644 index dfb5c2a3..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/stripped_japanese_maple_log.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/stripped_japanese_maple_log" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/stripped_japanese_maple_wood.json b/client/src/main/resources/assets/terrestria/models/item/stripped_japanese_maple_wood.json deleted file mode 100644 index b7a0f3fa..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/stripped_japanese_maple_wood.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/stripped_japanese_maple_wood" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/stripped_rainbow_eucalyptus_log.json b/client/src/main/resources/assets/terrestria/models/item/stripped_rainbow_eucalyptus_log.json deleted file mode 100644 index aa485cb7..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/stripped_rainbow_eucalyptus_log.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/stripped_rainbow_eucalyptus_log" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/stripped_rainbow_eucalyptus_quarter_log.json b/client/src/main/resources/assets/terrestria/models/item/stripped_rainbow_eucalyptus_quarter_log.json deleted file mode 100644 index 327feead..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/stripped_rainbow_eucalyptus_quarter_log.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/stripped_rainbow_eucalyptus_quarter_log" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/stripped_rainbow_eucalyptus_wood.json b/client/src/main/resources/assets/terrestria/models/item/stripped_rainbow_eucalyptus_wood.json deleted file mode 100644 index ec5438c0..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/stripped_rainbow_eucalyptus_wood.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/stripped_rainbow_eucalyptus_wood" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/stripped_redwood_log.json b/client/src/main/resources/assets/terrestria/models/item/stripped_redwood_log.json deleted file mode 100644 index 09e29cee..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/stripped_redwood_log.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/stripped_redwood_log" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/stripped_redwood_quarter_log.json b/client/src/main/resources/assets/terrestria/models/item/stripped_redwood_quarter_log.json deleted file mode 100644 index 91864a87..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/stripped_redwood_quarter_log.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/stripped_redwood_quarter_log" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/stripped_redwood_wood.json b/client/src/main/resources/assets/terrestria/models/item/stripped_redwood_wood.json deleted file mode 100644 index 0263b78c..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/stripped_redwood_wood.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/stripped_redwood_wood" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/stripped_rubber_log.json b/client/src/main/resources/assets/terrestria/models/item/stripped_rubber_log.json deleted file mode 100644 index 319d9559..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/stripped_rubber_log.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/stripped_rubber_log" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/stripped_rubber_wood.json b/client/src/main/resources/assets/terrestria/models/item/stripped_rubber_wood.json deleted file mode 100644 index 1de8ccba..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/stripped_rubber_wood.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/stripped_rubber_wood" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/stripped_sakura_log.json b/client/src/main/resources/assets/terrestria/models/item/stripped_sakura_log.json deleted file mode 100644 index b29ed520..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/stripped_sakura_log.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "parent": "minecraft:block/block", - "textures": { - "particle": "terrestria:block/stripped_sakura_log", - "all": "terrestria:block/stripped_sakura_log" - }, - "elements": [ - { - "from": [ - 3, - 3, - 3 - ], - "to": [ - 13, - 13, - 13 - ], - "faces": { - "down": { - "texture": "#all" - }, - "up": { - "texture": "#all" - }, - "north": { - "texture": "#all" - }, - "south": { - "texture": "#all" - }, - "west": { - "texture": "#all" - }, - "east": { - "texture": "#all" - } - } - } - ] -} diff --git a/client/src/main/resources/assets/terrestria/models/item/stripped_small_oak_log.json b/client/src/main/resources/assets/terrestria/models/item/stripped_small_oak_log.json deleted file mode 100644 index b60209bb..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/stripped_small_oak_log.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "parent": "minecraft:block/block", - "textures": { - "particle": "block/stripped_oak_log", - "all": "block/stripped_oak_log" - }, - "elements": [ - { - "from": [ - 3, - 3, - 3 - ], - "to": [ - 13, - 13, - 13 - ], - "faces": { - "down": { - "texture": "#all" - }, - "up": { - "texture": "#all" - }, - "north": { - "texture": "#all" - }, - "south": { - "texture": "#all" - }, - "west": { - "texture": "#all" - }, - "east": { - "texture": "#all" - } - } - } - ] -} diff --git a/client/src/main/resources/assets/terrestria/models/item/stripped_willow_log.json b/client/src/main/resources/assets/terrestria/models/item/stripped_willow_log.json deleted file mode 100644 index 32d48c09..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/stripped_willow_log.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/stripped_willow_log" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/stripped_willow_wood.json b/client/src/main/resources/assets/terrestria/models/item/stripped_willow_wood.json deleted file mode 100644 index 2f9adef3..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/stripped_willow_wood.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/stripped_willow_wood" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/stripped_yucca_palm_log.json b/client/src/main/resources/assets/terrestria/models/item/stripped_yucca_palm_log.json deleted file mode 100644 index 71fe1404..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/stripped_yucca_palm_log.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "parent": "minecraft:block/block", - "textures": { - "particle": "terrestria:block/stripped_yucca_palm_log", - "all": "terrestria:block/stripped_yucca_palm_log" - }, - "elements": [ - { - "from": [ - 3, - 3, - 3 - ], - "to": [ - 13, - 13, - 13 - ], - "faces": { - "down": { - "texture": "#all" - }, - "up": { - "texture": "#all" - }, - "north": { - "texture": "#all" - }, - "south": { - "texture": "#all" - }, - "west": { - "texture": "#all" - }, - "east": { - "texture": "#all" - } - } - } - ] -} diff --git a/client/src/main/resources/assets/terrestria/models/item/tiny_cactus.json b/client/src/main/resources/assets/terrestria/models/item/tiny_cactus.json deleted file mode 100644 index d4ee921f..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/tiny_cactus.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:block/tiny_cactus" - } -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/willow_boat.json b/client/src/main/resources/assets/terrestria/models/item/willow_boat.json deleted file mode 100644 index 141b3e3a..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/willow_boat.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:item/willow_boat" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/willow_button.json b/client/src/main/resources/assets/terrestria/models/item/willow_button.json deleted file mode 100644 index a84d7129..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/willow_button.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/willow_button_inventory" -} diff --git a/client/src/main/resources/assets/terrestria/models/item/willow_chest_boat.json b/client/src/main/resources/assets/terrestria/models/item/willow_chest_boat.json deleted file mode 100644 index abdce485..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/willow_chest_boat.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:item/willow_chest_boat" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/willow_door.json b/client/src/main/resources/assets/terrestria/models/item/willow_door.json deleted file mode 100644 index 04ddb0ba..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/willow_door.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:item/willow_door" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/willow_fence.json b/client/src/main/resources/assets/terrestria/models/item/willow_fence.json deleted file mode 100644 index 47a26593..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/willow_fence.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/willow_fence_inventory" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/willow_fence_gate.json b/client/src/main/resources/assets/terrestria/models/item/willow_fence_gate.json deleted file mode 100644 index 11a8130f..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/willow_fence_gate.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/willow_fence_gate" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/willow_hanging_sign.json b/client/src/main/resources/assets/terrestria/models/item/willow_hanging_sign.json deleted file mode 100644 index 028bd36d..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/willow_hanging_sign.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:item/willow_hanging_sign" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/willow_leaves.json b/client/src/main/resources/assets/terrestria/models/item/willow_leaves.json deleted file mode 100644 index 90367458..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/willow_leaves.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/willow_leaves" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/willow_log.json b/client/src/main/resources/assets/terrestria/models/item/willow_log.json deleted file mode 100644 index bb67b960..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/willow_log.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/willow_log" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/willow_planks.json b/client/src/main/resources/assets/terrestria/models/item/willow_planks.json deleted file mode 100644 index ca097c72..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/willow_planks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/willow_planks" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/willow_pressure_plate.json b/client/src/main/resources/assets/terrestria/models/item/willow_pressure_plate.json deleted file mode 100644 index 1b460f95..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/willow_pressure_plate.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/willow_pressure_plate" -} diff --git a/client/src/main/resources/assets/terrestria/models/item/willow_sapling.json b/client/src/main/resources/assets/terrestria/models/item/willow_sapling.json deleted file mode 100644 index f7328680..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/willow_sapling.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:block/willow_sapling" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/willow_sign.json b/client/src/main/resources/assets/terrestria/models/item/willow_sign.json deleted file mode 100644 index d6b635c0..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/willow_sign.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:item/willow_sign" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/willow_slab.json b/client/src/main/resources/assets/terrestria/models/item/willow_slab.json deleted file mode 100644 index 0b93d9c5..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/willow_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/willow_slab" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/willow_stairs.json b/client/src/main/resources/assets/terrestria/models/item/willow_stairs.json deleted file mode 100644 index 5e804656..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/willow_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/willow_stairs" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/willow_trapdoor.json b/client/src/main/resources/assets/terrestria/models/item/willow_trapdoor.json deleted file mode 100644 index b706aec3..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/willow_trapdoor.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/willow_trapdoor_bottom" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/willow_wood.json b/client/src/main/resources/assets/terrestria/models/item/willow_wood.json deleted file mode 100644 index 5d4124b2..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/willow_wood.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/willow_wood" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/yucca_palm_boat.json b/client/src/main/resources/assets/terrestria/models/item/yucca_palm_boat.json deleted file mode 100644 index d3b6e5a9..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/yucca_palm_boat.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:item/yucca_palm_boat" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/yucca_palm_button.json b/client/src/main/resources/assets/terrestria/models/item/yucca_palm_button.json deleted file mode 100644 index 98f9e136..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/yucca_palm_button.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/yucca_palm_button_inventory" -} diff --git a/client/src/main/resources/assets/terrestria/models/item/yucca_palm_chest_boat.json b/client/src/main/resources/assets/terrestria/models/item/yucca_palm_chest_boat.json deleted file mode 100644 index 6f71c394..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/yucca_palm_chest_boat.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:item/yucca_palm_chest_boat" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/yucca_palm_door.json b/client/src/main/resources/assets/terrestria/models/item/yucca_palm_door.json deleted file mode 100644 index a2efe4b7..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/yucca_palm_door.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:item/yucca_palm_door" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/yucca_palm_fence.json b/client/src/main/resources/assets/terrestria/models/item/yucca_palm_fence.json deleted file mode 100644 index 951d28c7..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/yucca_palm_fence.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/yucca_palm_fence_inventory" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/yucca_palm_fence_gate.json b/client/src/main/resources/assets/terrestria/models/item/yucca_palm_fence_gate.json deleted file mode 100644 index 4af6fcb3..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/yucca_palm_fence_gate.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/yucca_palm_fence_gate" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/yucca_palm_hanging_sign.json b/client/src/main/resources/assets/terrestria/models/item/yucca_palm_hanging_sign.json deleted file mode 100644 index 991180b6..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/yucca_palm_hanging_sign.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:item/yucca_palm_hanging_sign" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/yucca_palm_leaf_pile.json b/client/src/main/resources/assets/terrestria/models/item/yucca_palm_leaf_pile.json deleted file mode 100644 index 2a0c8b48..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/yucca_palm_leaf_pile.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/yucca_palm_leaf_pile" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/yucca_palm_leaves.json b/client/src/main/resources/assets/terrestria/models/item/yucca_palm_leaves.json deleted file mode 100644 index 2c9afc3d..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/yucca_palm_leaves.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/yucca_palm_leaves" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/yucca_palm_log.json b/client/src/main/resources/assets/terrestria/models/item/yucca_palm_log.json deleted file mode 100644 index 7426aaa3..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/yucca_palm_log.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "parent": "minecraft:block/block", - "textures": { - "particle": "terrestria:block/yucca_palm_log", - "all": "terrestria:block/yucca_palm_log" - }, - "elements": [ - { - "from": [ - 3, - 3, - 3 - ], - "to": [ - 13, - 13, - 13 - ], - "faces": { - "down": { - "texture": "#all" - }, - "up": { - "texture": "#all" - }, - "north": { - "texture": "#all" - }, - "south": { - "texture": "#all" - }, - "west": { - "texture": "#all" - }, - "east": { - "texture": "#all" - } - } - } - ] -} diff --git a/client/src/main/resources/assets/terrestria/models/item/yucca_palm_planks.json b/client/src/main/resources/assets/terrestria/models/item/yucca_palm_planks.json deleted file mode 100644 index 0c0af2e7..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/yucca_palm_planks.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/yucca_palm_planks" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/yucca_palm_pressure_plate.json b/client/src/main/resources/assets/terrestria/models/item/yucca_palm_pressure_plate.json deleted file mode 100644 index 9ca18593..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/yucca_palm_pressure_plate.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/yucca_palm_pressure_plate" -} diff --git a/client/src/main/resources/assets/terrestria/models/item/yucca_palm_sapling.json b/client/src/main/resources/assets/terrestria/models/item/yucca_palm_sapling.json deleted file mode 100644 index 859efba2..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/yucca_palm_sapling.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:block/yucca_palm_sapling" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/yucca_palm_sign.json b/client/src/main/resources/assets/terrestria/models/item/yucca_palm_sign.json deleted file mode 100644 index 5c67c7fa..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/yucca_palm_sign.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "item/generated", - "textures": { - "layer0": "terrestria:item/yucca_palm_sign" - } -} diff --git a/client/src/main/resources/assets/terrestria/models/item/yucca_palm_slab.json b/client/src/main/resources/assets/terrestria/models/item/yucca_palm_slab.json deleted file mode 100644 index b3914349..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/yucca_palm_slab.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/yucca_palm_slab" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/yucca_palm_stairs.json b/client/src/main/resources/assets/terrestria/models/item/yucca_palm_stairs.json deleted file mode 100644 index 3610369c..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/yucca_palm_stairs.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/yucca_palm_stairs" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/models/item/yucca_palm_trapdoor.json b/client/src/main/resources/assets/terrestria/models/item/yucca_palm_trapdoor.json deleted file mode 100644 index a535921b..00000000 --- a/client/src/main/resources/assets/terrestria/models/item/yucca_palm_trapdoor.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "terrestria:block/yucca_palm_trapdoor_bottom" -} \ No newline at end of file diff --git a/client/src/main/resources/assets/terrestria/textures/block/basalt_dirt.png b/client/src/main/resources/assets/terrestria/textures/block/andisol.png similarity index 100% rename from client/src/main/resources/assets/terrestria/textures/block/basalt_dirt.png rename to client/src/main/resources/assets/terrestria/textures/block/andisol.png diff --git a/client/src/main/resources/assets/terrestria/textures/block/basalt_grass_path_side.png b/client/src/main/resources/assets/terrestria/textures/block/andisol_dirt_path_side.png similarity index 100% rename from client/src/main/resources/assets/terrestria/textures/block/basalt_grass_path_side.png rename to client/src/main/resources/assets/terrestria/textures/block/andisol_dirt_path_side.png diff --git a/client/src/main/resources/assets/terrestria/textures/block/andisol_grass_block_side.png b/client/src/main/resources/assets/terrestria/textures/block/andisol_grass_block_side.png new file mode 100644 index 00000000..0a83f737 Binary files /dev/null and b/client/src/main/resources/assets/terrestria/textures/block/andisol_grass_block_side.png differ diff --git a/client/src/main/resources/assets/terrestria/textures/block/basalt_grass_side_snow.png b/client/src/main/resources/assets/terrestria/textures/block/andisol_grass_block_snow.png similarity index 100% rename from client/src/main/resources/assets/terrestria/textures/block/basalt_grass_side_snow.png rename to client/src/main/resources/assets/terrestria/textures/block/andisol_grass_block_snow.png diff --git a/client/src/main/resources/assets/terrestria/textures/block/basalt_podzol.png b/client/src/main/resources/assets/terrestria/textures/block/andisol_podzol_side.png similarity index 100% rename from client/src/main/resources/assets/terrestria/textures/block/basalt_podzol.png rename to client/src/main/resources/assets/terrestria/textures/block/andisol_podzol_side.png diff --git a/client/src/main/resources/assets/terrestria/textures/block/chiseled_basalt_bricks.png b/client/src/main/resources/assets/terrestria/textures/block/chiseled_volcanic_rock_bricks.png similarity index 100% rename from client/src/main/resources/assets/terrestria/textures/block/chiseled_basalt_bricks.png rename to client/src/main/resources/assets/terrestria/textures/block/chiseled_volcanic_rock_bricks.png diff --git a/client/src/main/resources/assets/terrestria/textures/block/cracked_basalt_bricks.png b/client/src/main/resources/assets/terrestria/textures/block/cracked_volcanic_rock_bricks.png similarity index 100% rename from client/src/main/resources/assets/terrestria/textures/block/cracked_basalt_bricks.png rename to client/src/main/resources/assets/terrestria/textures/block/cracked_volcanic_rock_bricks.png diff --git a/client/src/main/resources/assets/terrestria/textures/block/cypress_quarter_log.png b/client/src/main/resources/assets/terrestria/textures/block/cypress_quarter_log.png index dea94b04..91cd3b5f 100644 Binary files a/client/src/main/resources/assets/terrestria/textures/block/cypress_quarter_log.png and b/client/src/main/resources/assets/terrestria/textures/block/cypress_quarter_log.png differ diff --git a/client/src/main/resources/assets/terrestria/textures/block/cypress_log_bare.png b/client/src/main/resources/assets/terrestria/textures/block/cypress_quarter_log_top.png similarity index 54% rename from client/src/main/resources/assets/terrestria/textures/block/cypress_log_bare.png rename to client/src/main/resources/assets/terrestria/textures/block/cypress_quarter_log_top.png index 91cd3b5f..dea94b04 100644 Binary files a/client/src/main/resources/assets/terrestria/textures/block/cypress_log_bare.png and b/client/src/main/resources/assets/terrestria/textures/block/cypress_quarter_log_top.png differ diff --git a/client/src/main/resources/assets/terrestria/textures/block/japanese_maple_leaves_dark.png b/client/src/main/resources/assets/terrestria/textures/block/dark_japanese_maple_leaves.png similarity index 100% rename from client/src/main/resources/assets/terrestria/textures/block/japanese_maple_leaves_dark.png rename to client/src/main/resources/assets/terrestria/textures/block/dark_japanese_maple_leaves.png diff --git a/client/src/main/resources/assets/terrestria/textures/block/japanese_maple_sapling_dark.png b/client/src/main/resources/assets/terrestria/textures/block/dark_japanese_maple_sapling.png similarity index 100% rename from client/src/main/resources/assets/terrestria/textures/block/japanese_maple_sapling_dark.png rename to client/src/main/resources/assets/terrestria/textures/block/dark_japanese_maple_sapling.png diff --git a/client/src/main/resources/assets/terrestria/textures/block/hemlock_quarter_log.png b/client/src/main/resources/assets/terrestria/textures/block/hemlock_quarter_log.png index 0d410dce..63e58947 100644 Binary files a/client/src/main/resources/assets/terrestria/textures/block/hemlock_quarter_log.png and b/client/src/main/resources/assets/terrestria/textures/block/hemlock_quarter_log.png differ diff --git a/client/src/main/resources/assets/terrestria/textures/block/hemlock_log_bare.png b/client/src/main/resources/assets/terrestria/textures/block/hemlock_quarter_log_top.png similarity index 51% rename from client/src/main/resources/assets/terrestria/textures/block/hemlock_log_bare.png rename to client/src/main/resources/assets/terrestria/textures/block/hemlock_quarter_log_top.png index 63e58947..0d410dce 100644 Binary files a/client/src/main/resources/assets/terrestria/textures/block/hemlock_log_bare.png and b/client/src/main/resources/assets/terrestria/textures/block/hemlock_quarter_log_top.png differ diff --git a/client/src/main/resources/assets/terrestria/textures/block/japanese_maple_leaves_green.png b/client/src/main/resources/assets/terrestria/textures/block/japanese_maple_shrub_leaves.png similarity index 100% rename from client/src/main/resources/assets/terrestria/textures/block/japanese_maple_leaves_green.png rename to client/src/main/resources/assets/terrestria/textures/block/japanese_maple_shrub_leaves.png diff --git a/client/src/main/resources/assets/terrestria/textures/block/mossy_basalt_bricks.png b/client/src/main/resources/assets/terrestria/textures/block/mossy_volcanic_rock_bricks.png similarity index 100% rename from client/src/main/resources/assets/terrestria/textures/block/mossy_basalt_bricks.png rename to client/src/main/resources/assets/terrestria/textures/block/mossy_volcanic_rock_bricks.png diff --git a/client/src/main/resources/assets/terrestria/textures/block/mossy_basalt_cobblestone.png b/client/src/main/resources/assets/terrestria/textures/block/mossy_volcanic_rock_cobblestone.png similarity index 100% rename from client/src/main/resources/assets/terrestria/textures/block/mossy_basalt_cobblestone.png rename to client/src/main/resources/assets/terrestria/textures/block/mossy_volcanic_rock_cobblestone.png diff --git a/client/src/main/resources/assets/terrestria/textures/block/rainbow_eucalyptus_log_bare.png b/client/src/main/resources/assets/terrestria/textures/block/rainbow_eucalyptus_log_bare.png deleted file mode 100644 index 977693c3..00000000 Binary files a/client/src/main/resources/assets/terrestria/textures/block/rainbow_eucalyptus_log_bare.png and /dev/null differ diff --git a/client/src/main/resources/assets/terrestria/textures/block/rainbow_eucalyptus_quarter_log.png b/client/src/main/resources/assets/terrestria/textures/block/rainbow_eucalyptus_quarter_log.png index 823287e4..977693c3 100644 Binary files a/client/src/main/resources/assets/terrestria/textures/block/rainbow_eucalyptus_quarter_log.png and b/client/src/main/resources/assets/terrestria/textures/block/rainbow_eucalyptus_quarter_log.png differ diff --git a/client/src/main/resources/assets/terrestria/textures/block/rainbow_eucalyptus_quarter_log_top.png b/client/src/main/resources/assets/terrestria/textures/block/rainbow_eucalyptus_quarter_log_top.png new file mode 100644 index 00000000..823287e4 Binary files /dev/null and b/client/src/main/resources/assets/terrestria/textures/block/rainbow_eucalyptus_quarter_log_top.png differ diff --git a/client/src/main/resources/assets/terrestria/textures/block/redwood_quarter_log.png b/client/src/main/resources/assets/terrestria/textures/block/redwood_quarter_log.png index bae16ca9..9a4c63d2 100644 Binary files a/client/src/main/resources/assets/terrestria/textures/block/redwood_quarter_log.png and b/client/src/main/resources/assets/terrestria/textures/block/redwood_quarter_log.png differ diff --git a/client/src/main/resources/assets/terrestria/textures/block/redwood_log_bare.png b/client/src/main/resources/assets/terrestria/textures/block/redwood_quarter_log_top.png similarity index 54% rename from client/src/main/resources/assets/terrestria/textures/block/redwood_log_bare.png rename to client/src/main/resources/assets/terrestria/textures/block/redwood_quarter_log_top.png index 9a4c63d2..bae16ca9 100644 Binary files a/client/src/main/resources/assets/terrestria/textures/block/redwood_log_bare.png and b/client/src/main/resources/assets/terrestria/textures/block/redwood_quarter_log_top.png differ diff --git a/client/src/main/resources/assets/terrestria/textures/block/saguaro_cactus_section.png b/client/src/main/resources/assets/terrestria/textures/block/saguaro_cactus_top.png similarity index 100% rename from client/src/main/resources/assets/terrestria/textures/block/saguaro_cactus_section.png rename to client/src/main/resources/assets/terrestria/textures/block/saguaro_cactus_top.png diff --git a/client/src/main/resources/assets/terrestria/textures/block/sakura_log_section.png b/client/src/main/resources/assets/terrestria/textures/block/sakura_log_top.png similarity index 100% rename from client/src/main/resources/assets/terrestria/textures/block/sakura_log_section.png rename to client/src/main/resources/assets/terrestria/textures/block/sakura_log_top.png diff --git a/client/src/main/resources/assets/terrestria/textures/block/smooth_basalt.png b/client/src/main/resources/assets/terrestria/textures/block/smooth_volcanic_rock.png similarity index 100% rename from client/src/main/resources/assets/terrestria/textures/block/smooth_basalt.png rename to client/src/main/resources/assets/terrestria/textures/block/smooth_volcanic_rock.png diff --git a/client/src/main/resources/assets/terrestria/textures/block/smooth_basalt_slab_side.png b/client/src/main/resources/assets/terrestria/textures/block/smooth_volcanic_rock_slab_side.png similarity index 100% rename from client/src/main/resources/assets/terrestria/textures/block/smooth_basalt_slab_side.png rename to client/src/main/resources/assets/terrestria/textures/block/smooth_volcanic_rock_slab_side.png diff --git a/client/src/main/resources/assets/terrestria/textures/block/stripped_cypress_log_bare.png b/client/src/main/resources/assets/terrestria/textures/block/stripped_cypress_log_bare.png deleted file mode 100644 index 556a9932..00000000 Binary files a/client/src/main/resources/assets/terrestria/textures/block/stripped_cypress_log_bare.png and /dev/null differ diff --git a/client/src/main/resources/assets/terrestria/textures/block/stripped_cypress_quarter_log.png b/client/src/main/resources/assets/terrestria/textures/block/stripped_cypress_quarter_log.png index 543e2177..556a9932 100644 Binary files a/client/src/main/resources/assets/terrestria/textures/block/stripped_cypress_quarter_log.png and b/client/src/main/resources/assets/terrestria/textures/block/stripped_cypress_quarter_log.png differ diff --git a/client/src/main/resources/assets/terrestria/textures/block/stripped_cypress_quarter_log_top.png b/client/src/main/resources/assets/terrestria/textures/block/stripped_cypress_quarter_log_top.png new file mode 100644 index 00000000..543e2177 Binary files /dev/null and b/client/src/main/resources/assets/terrestria/textures/block/stripped_cypress_quarter_log_top.png differ diff --git a/client/src/main/resources/assets/terrestria/textures/block/stripped_hemlock_log_bare.png b/client/src/main/resources/assets/terrestria/textures/block/stripped_hemlock_log_bare.png deleted file mode 100644 index 7c459942..00000000 Binary files a/client/src/main/resources/assets/terrestria/textures/block/stripped_hemlock_log_bare.png and /dev/null differ diff --git a/client/src/main/resources/assets/terrestria/textures/block/stripped_hemlock_quarter_log.png b/client/src/main/resources/assets/terrestria/textures/block/stripped_hemlock_quarter_log.png index a50219ef..7c459942 100644 Binary files a/client/src/main/resources/assets/terrestria/textures/block/stripped_hemlock_quarter_log.png and b/client/src/main/resources/assets/terrestria/textures/block/stripped_hemlock_quarter_log.png differ diff --git a/client/src/main/resources/assets/terrestria/textures/block/stripped_hemlock_quarter_log_top.png b/client/src/main/resources/assets/terrestria/textures/block/stripped_hemlock_quarter_log_top.png new file mode 100644 index 00000000..a50219ef Binary files /dev/null and b/client/src/main/resources/assets/terrestria/textures/block/stripped_hemlock_quarter_log_top.png differ diff --git a/client/src/main/resources/assets/terrestria/textures/block/stripped_rainbow_eucalyptus_log_bare.png b/client/src/main/resources/assets/terrestria/textures/block/stripped_rainbow_eucalyptus_log_bare.png deleted file mode 100644 index 3cda1751..00000000 Binary files a/client/src/main/resources/assets/terrestria/textures/block/stripped_rainbow_eucalyptus_log_bare.png and /dev/null differ diff --git a/client/src/main/resources/assets/terrestria/textures/block/stripped_rainbow_eucalyptus_quarter_log.png b/client/src/main/resources/assets/terrestria/textures/block/stripped_rainbow_eucalyptus_quarter_log.png index a5ab5d68..3cda1751 100644 Binary files a/client/src/main/resources/assets/terrestria/textures/block/stripped_rainbow_eucalyptus_quarter_log.png and b/client/src/main/resources/assets/terrestria/textures/block/stripped_rainbow_eucalyptus_quarter_log.png differ diff --git a/client/src/main/resources/assets/terrestria/textures/block/stripped_rainbow_eucalyptus_quarter_log_top.png b/client/src/main/resources/assets/terrestria/textures/block/stripped_rainbow_eucalyptus_quarter_log_top.png new file mode 100644 index 00000000..a5ab5d68 Binary files /dev/null and b/client/src/main/resources/assets/terrestria/textures/block/stripped_rainbow_eucalyptus_quarter_log_top.png differ diff --git a/client/src/main/resources/assets/terrestria/textures/block/stripped_redwood_log_bare.png b/client/src/main/resources/assets/terrestria/textures/block/stripped_redwood_log_bare.png deleted file mode 100644 index 7f8b9952..00000000 Binary files a/client/src/main/resources/assets/terrestria/textures/block/stripped_redwood_log_bare.png and /dev/null differ diff --git a/client/src/main/resources/assets/terrestria/textures/block/stripped_redwood_quarter_log.png b/client/src/main/resources/assets/terrestria/textures/block/stripped_redwood_quarter_log.png index 43fd55a0..7f8b9952 100644 Binary files a/client/src/main/resources/assets/terrestria/textures/block/stripped_redwood_quarter_log.png and b/client/src/main/resources/assets/terrestria/textures/block/stripped_redwood_quarter_log.png differ diff --git a/client/src/main/resources/assets/terrestria/textures/block/stripped_redwood_quarter_log_top.png b/client/src/main/resources/assets/terrestria/textures/block/stripped_redwood_quarter_log_top.png new file mode 100644 index 00000000..43fd55a0 Binary files /dev/null and b/client/src/main/resources/assets/terrestria/textures/block/stripped_redwood_quarter_log_top.png differ diff --git a/client/src/main/resources/assets/terrestria/textures/block/stripped_sakura_log_section.png b/client/src/main/resources/assets/terrestria/textures/block/stripped_sakura_log_top.png similarity index 100% rename from client/src/main/resources/assets/terrestria/textures/block/stripped_sakura_log_section.png rename to client/src/main/resources/assets/terrestria/textures/block/stripped_sakura_log_top.png diff --git a/client/src/main/resources/assets/terrestria/textures/block/stripped_yucca_palm_log_section.png b/client/src/main/resources/assets/terrestria/textures/block/stripped_yucca_palm_log_top.png similarity index 100% rename from client/src/main/resources/assets/terrestria/textures/block/stripped_yucca_palm_log_section.png rename to client/src/main/resources/assets/terrestria/textures/block/stripped_yucca_palm_log_top.png diff --git a/client/src/main/resources/assets/terrestria/textures/block/basalt.png b/client/src/main/resources/assets/terrestria/textures/block/volcanic_rock.png similarity index 100% rename from client/src/main/resources/assets/terrestria/textures/block/basalt.png rename to client/src/main/resources/assets/terrestria/textures/block/volcanic_rock.png diff --git a/client/src/main/resources/assets/terrestria/textures/block/basalt_bricks.png b/client/src/main/resources/assets/terrestria/textures/block/volcanic_rock_bricks.png similarity index 100% rename from client/src/main/resources/assets/terrestria/textures/block/basalt_bricks.png rename to client/src/main/resources/assets/terrestria/textures/block/volcanic_rock_bricks.png diff --git a/client/src/main/resources/assets/terrestria/textures/block/basalt_cobblestone.png b/client/src/main/resources/assets/terrestria/textures/block/volcanic_rock_cobblestone.png similarity index 100% rename from client/src/main/resources/assets/terrestria/textures/block/basalt_cobblestone.png rename to client/src/main/resources/assets/terrestria/textures/block/volcanic_rock_cobblestone.png diff --git a/client/src/main/resources/assets/terrestria/textures/block/basalt_sand.png b/client/src/main/resources/assets/terrestria/textures/block/volcanic_sand.png similarity index 100% rename from client/src/main/resources/assets/terrestria/textures/block/basalt_sand.png rename to client/src/main/resources/assets/terrestria/textures/block/volcanic_sand.png diff --git a/client/src/main/resources/assets/terrestria/textures/block/yucca_palm_log_section.png b/client/src/main/resources/assets/terrestria/textures/block/yucca_palm_log_top.png similarity index 100% rename from client/src/main/resources/assets/terrestria/textures/block/yucca_palm_log_section.png rename to client/src/main/resources/assets/terrestria/textures/block/yucca_palm_log_top.png diff --git a/common/build.gradle b/common/build.gradle index a5b16f42..e68a5c5c 100644 --- a/common/build.gradle +++ b/common/build.gradle @@ -1,26 +1,8 @@ archivesBaseName = "terrestria-common" -loom { - runs { - datagen { - inherit server - - name = "Data Generation" - runDir = "build/datagen" - - vmArg "-Dfabric-api.datagen" - vmArg "-Dfabric-api.datagen.output-dir=${file("src/main/generated")}" - } - } -} - -sourceSets { - main { - resources { - srcDirs += [ - "src/main/generated" - ] - } +fabricApi { + configureDataGeneration { + client = true } } diff --git a/common/src/main/java/com/terraformersmc/terrestria/Terrestria.java b/common/src/main/java/com/terraformersmc/terrestria/Terrestria.java index 5176f06b..db9bbd33 100644 --- a/common/src/main/java/com/terraformersmc/terrestria/Terrestria.java +++ b/common/src/main/java/com/terraformersmc/terrestria/Terrestria.java @@ -35,6 +35,7 @@ private static void register() { TerrestriaTrades.register(); TerrestriaVillagerTypes.init(); TerrestriaItemGroups.init(); + TerrestriaRegistryAliases.init(); } @Override diff --git a/common/src/main/java/com/terraformersmc/terrestria/block/TallCattailBlock.java b/common/src/main/java/com/terraformersmc/terrestria/block/TallCattailBlock.java index 110f2d91..660a7de0 100644 --- a/common/src/main/java/com/terraformersmc/terrestria/block/TallCattailBlock.java +++ b/common/src/main/java/com/terraformersmc/terrestria/block/TallCattailBlock.java @@ -24,7 +24,7 @@ public TallCattailBlock(Settings settings) { } @Override - public ItemStack getPickStack(WorldView world, BlockPos pos, BlockState state) { + public ItemStack getPickStack(WorldView world, BlockPos pos, BlockState state, boolean includeData) { return new ItemStack(TerrestriaBlocks.CATTAIL); } diff --git a/common/src/main/java/com/terraformersmc/terrestria/data/TerrestriaBiomeTagProvider.java b/common/src/main/java/com/terraformersmc/terrestria/data/TerrestriaBiomeTagProvider.java index 73d0d042..2097fa54 100644 --- a/common/src/main/java/com/terraformersmc/terrestria/data/TerrestriaBiomeTagProvider.java +++ b/common/src/main/java/com/terraformersmc/terrestria/data/TerrestriaBiomeTagProvider.java @@ -307,4 +307,9 @@ public void configure(RegistryWrapper.WrapperLookup registries) { getOrCreateTagBuilder(TerrestriaBiomeTags.VOLCANO_HAS_STRUCTURE) .addOptional(TerrestriaBiomes.VOLCANIC_ISLAND); } + + @Override + public String getName() { + return "Terrestria Biome Tags"; + } } diff --git a/common/src/main/java/com/terraformersmc/terrestria/data/TerrestriaBlockLootTableProvider.java b/common/src/main/java/com/terraformersmc/terrestria/data/TerrestriaBlockLootTableProvider.java index 3c01fa46..bf8f1932 100644 --- a/common/src/main/java/com/terraformersmc/terrestria/data/TerrestriaBlockLootTableProvider.java +++ b/common/src/main/java/com/terraformersmc/terrestria/data/TerrestriaBlockLootTableProvider.java @@ -29,7 +29,7 @@ public void generate() { // simple blocks addDrop(TerrestriaBlocks.AGAVE); addDrop(TerrestriaBlocks.ALOE_VERA); - addDrop(TerrestriaBlocks.BLACK_SAND); + addDrop(TerrestriaBlocks.VOLCANIC_SAND); addDrop(TerrestriaBlocks.BRYCE_SAPLING); addDrop(TerrestriaBlocks.CATTAIL, this::dropsWithShears); addDrop(TerrestriaBlocks.CYPRESS_SAPLING); @@ -206,4 +206,9 @@ private void addWoodDrops(WoodBlocks woodBlock, @Nullable SaplingBlock sapling) } } } + + @Override + public String getName() { + return "Terrestria Block Loot Tables"; + } } diff --git a/common/src/main/java/com/terraformersmc/terrestria/data/TerrestriaBlockTagProvider.java b/common/src/main/java/com/terraformersmc/terrestria/data/TerrestriaBlockTagProvider.java index 973a98ca..91a0d4fa 100644 --- a/common/src/main/java/com/terraformersmc/terrestria/data/TerrestriaBlockTagProvider.java +++ b/common/src/main/java/com/terraformersmc/terrestria/data/TerrestriaBlockTagProvider.java @@ -32,6 +32,9 @@ public void configure(RegistryWrapper.WrapperLookup registries) { getOrCreateTagBuilder(BlockTags.AZALEA_ROOT_REPLACEABLE) .add(TerrestriaBlocks.VOLCANIC_ROCK.plain.full); + getOrCreateTagBuilder(BlockTags.CONVERTABLE_TO_MUD) + .add(TerrestriaBlocks.ANDISOL.getDirt()); + getOrCreateTagBuilder(BlockTags.FLOWER_POTS) .add(TerrestriaBlocks.POTTED_AGAVE) .add(TerrestriaBlocks.POTTED_ALOE_VERA) @@ -107,7 +110,7 @@ public void configure(RegistryWrapper.WrapperLookup registries) { * Conventional block tags */ getOrCreateTagBuilder(TerrestriaBlockTags.BLACK_SANDS) - .add(TerrestriaBlocks.BLACK_SAND); + .add(TerrestriaBlocks.VOLCANIC_SAND); getOrCreateTagBuilder(ConventionalBlockTags.STRIPPED_LOGS) .add(TerrestriaBlocks.STRIPPED_SMALL_OAK_LOG); @@ -129,7 +132,7 @@ public void configure(RegistryWrapper.WrapperLookup registries) { /* * Custom sand block tags */ - addSand(TerrestriaBlocks.BLACK_SAND); + addSand(TerrestriaBlocks.VOLCANIC_SAND); /* * Stone building block tags @@ -318,4 +321,9 @@ private void addWood(TagKey logTag, WoodBlocks woodBlock) { getOrCreateTagBuilder(TerrestriaBlockTags.PLANKS_THAT_BURN).add(woodBlock.planks); } } + + @Override + public String getName() { + return "Terrestria Block Tags"; + } } diff --git a/common/src/main/java/com/terraformersmc/terrestria/data/TerrestriaDatagen.java b/common/src/main/java/com/terraformersmc/terrestria/data/TerrestriaDatagen.java index e4b9545f..bff5a2d3 100644 --- a/common/src/main/java/com/terraformersmc/terrestria/data/TerrestriaDatagen.java +++ b/common/src/main/java/com/terraformersmc/terrestria/data/TerrestriaDatagen.java @@ -14,6 +14,7 @@ public void onInitializeDataGenerator(FabricDataGenerator dataGenerator) { pack.addProvider(TerrestriaBlockLootTableProvider::new); TerrestriaBlockTagProvider blockTagProvider = pack.addProvider(TerrestriaBlockTagProvider::new); pack.addProvider((output, registries) -> new TerrestriaItemTagProvider(output, registries, blockTagProvider)); + pack.addProvider(TerrestriaModelProvider::new); pack.addProvider(TerrestriaRecipeProvider::new); } diff --git a/common/src/main/java/com/terraformersmc/terrestria/data/TerrestriaDynamicRegistryProvider.java b/common/src/main/java/com/terraformersmc/terrestria/data/TerrestriaDynamicRegistryProvider.java index bcda0181..bfea783a 100644 --- a/common/src/main/java/com/terraformersmc/terrestria/data/TerrestriaDynamicRegistryProvider.java +++ b/common/src/main/java/com/terraformersmc/terrestria/data/TerrestriaDynamicRegistryProvider.java @@ -34,7 +34,7 @@ public void configure(RegistryWrapper.WrapperLookup registries, Entries entries) @Override public String getName() { - return "Terrestria"; + return "Terrestria Dynamic Registries"; } /** diff --git a/common/src/main/java/com/terraformersmc/terrestria/data/TerrestriaItemTagProvider.java b/common/src/main/java/com/terraformersmc/terrestria/data/TerrestriaItemTagProvider.java index 84c4653b..64585153 100644 --- a/common/src/main/java/com/terraformersmc/terrestria/data/TerrestriaItemTagProvider.java +++ b/common/src/main/java/com/terraformersmc/terrestria/data/TerrestriaItemTagProvider.java @@ -172,4 +172,9 @@ private void addWood(WoodItems woodItem) { getOrCreateTagBuilder(ItemTags.CHEST_BOATS).add(woodItem.chestBoat); } } + + @Override + public String getName() { + return "Terrestria Item Tags"; + } } diff --git a/common/src/main/java/com/terraformersmc/terrestria/data/TerrestriaModelProvider.java b/common/src/main/java/com/terraformersmc/terrestria/data/TerrestriaModelProvider.java new file mode 100644 index 00000000..53e48e4f --- /dev/null +++ b/common/src/main/java/com/terraformersmc/terrestria/data/TerrestriaModelProvider.java @@ -0,0 +1,525 @@ +package com.terraformersmc.terrestria.data; + +import com.mojang.datafixers.util.Pair; +import com.terraformersmc.terraform.dirt.api.DirtBlocks; +import com.terraformersmc.terraform.wood.api.block.BareSmallLogBlock; +import com.terraformersmc.terraform.wood.api.block.QuarterLogBlock; +import com.terraformersmc.terraform.wood.api.block.SmallLogBlock; +import com.terraformersmc.terraform.wood.api.data.WoodModels; +import com.terraformersmc.terrestria.init.TerrestriaBlockFamilies; +import com.terraformersmc.terrestria.init.TerrestriaBlocks; +import com.terraformersmc.terrestria.init.TerrestriaItems; +import com.terraformersmc.terrestria.init.helpers.StoneBlocks; +import com.terraformersmc.terrestria.init.helpers.WoodBlocks; +import com.terraformersmc.terrestria.init.helpers.WoodItems; +import net.fabricmc.fabric.api.client.datagen.v1.provider.FabricModelProvider; +import net.fabricmc.fabric.api.datagen.v1.FabricDataOutput; +import net.minecraft.block.Block; +import net.minecraft.block.Blocks; +import net.minecraft.client.data.*; +import net.minecraft.client.render.item.tint.GrassTintSource; +import net.minecraft.data.family.BlockFamily; +import net.minecraft.state.property.Properties; +import net.minecraft.state.property.Property; +import net.minecraft.util.Identifier; +import net.minecraft.world.biome.FoliageColors; +import org.jetbrains.annotations.Nullable; + +import java.util.List; +import java.util.Optional; +import java.util.function.Function; + +public class TerrestriaModelProvider extends FabricModelProvider { + public static final List, Function>> SMALL_LOG_VARIANT_FUNCTIONS = List.of( + Pair.of( + Properties.NORTH, + model -> BlockStateVariant.create() + .put(VariantSettings.MODEL, model) + .put(VariantSettings.X, VariantSettings.Rotation.R90) + ), + Pair.of( + Properties.EAST, + model -> BlockStateVariant.create() + .put(VariantSettings.MODEL, model) + .put(VariantSettings.X, VariantSettings.Rotation.R90) + .put(VariantSettings.Y, VariantSettings.Rotation.R90) + ), + Pair.of( + Properties.SOUTH, + model -> BlockStateVariant.create() + .put(VariantSettings.MODEL, model) + .put(VariantSettings.X, VariantSettings.Rotation.R90) + .put(VariantSettings.Y, VariantSettings.Rotation.R180) + ), + Pair.of( + Properties.WEST, + model -> BlockStateVariant.create() + .put(VariantSettings.MODEL, model) + .put(VariantSettings.X, VariantSettings.Rotation.R90) + .put(VariantSettings.Y, VariantSettings.Rotation.R270) + ), + Pair.of( + Properties.UP, + model -> BlockStateVariant.create() + .put(VariantSettings.MODEL, model) + ), + Pair.of( + Properties.DOWN, + model -> BlockStateVariant.create() + .put(VariantSettings.MODEL, model) + .put(VariantSettings.X, VariantSettings.Rotation.R180) + ) + ); + + public TerrestriaModelProvider(FabricDataOutput output) { + super(output); + } + + @Override + public void generateBlockStateModels(BlockStateModelGenerator generator) { + // WoodBlocks + this.registerWoodBlocks(generator, TerrestriaBlocks.CYPRESS, TerrestriaBlockFamilies.CYPRESS, TerrestriaBlocks.CYPRESS_SAPLING, TerrestriaBlocks.POTTED_CYPRESS_SAPLING); + this.registerWoodBlocks(generator, TerrestriaBlocks.HEMLOCK, TerrestriaBlockFamilies.HEMLOCK, TerrestriaBlocks.HEMLOCK_SAPLING, TerrestriaBlocks.POTTED_HEMLOCK_SAPLING); + this.registerWoodBlocks(generator, TerrestriaBlocks.JAPANESE_MAPLE, TerrestriaBlockFamilies.JAPANESE_MAPLE, TerrestriaBlocks.JAPANESE_MAPLE_SAPLING, TerrestriaBlocks.POTTED_JAPANESE_MAPLE_SAPLING); + this.registerWoodBlocks(generator, TerrestriaBlocks.RAINBOW_EUCALYPTUS, TerrestriaBlockFamilies.RAINBOW_EUCALYPTUS, TerrestriaBlocks.RAINBOW_EUCALYPTUS_SAPLING, TerrestriaBlocks.POTTED_RAINBOW_EUCALYPTUS_SAPLING); + this.registerWoodBlocks(generator, TerrestriaBlocks.REDWOOD, TerrestriaBlockFamilies.REDWOOD, TerrestriaBlocks.REDWOOD_SAPLING, TerrestriaBlocks.POTTED_REDWOOD_SAPLING); + this.registerWoodBlocks(generator, TerrestriaBlocks.RUBBER, TerrestriaBlockFamilies.RUBBER, TerrestriaBlocks.RUBBER_SAPLING, TerrestriaBlocks.POTTED_RUBBER_SAPLING); + this.registerWoodBlocks(generator, TerrestriaBlocks.SAKURA, TerrestriaBlockFamilies.SAKURA, TerrestriaBlocks.SAKURA_SAPLING, TerrestriaBlocks.POTTED_SAKURA_SAPLING); + this.registerWoodBlocks(generator, TerrestriaBlocks.WILLOW, TerrestriaBlockFamilies.WILLOW, TerrestriaBlocks.WILLOW_SAPLING, TerrestriaBlocks.POTTED_WILLOW_SAPLING); + this.registerWoodBlocks(generator, TerrestriaBlocks.YUCCA_PALM, TerrestriaBlockFamilies.YUCCA_PALM, TerrestriaBlocks.YUCCA_PALM_SAPLING, TerrestriaBlocks.POTTED_YUCCA_PALM_SAPLING); + + // StoneBlocks + this.registerStoneBlockFamily(generator, TerrestriaBlockFamilies.VOLCANIC_ROCK); + this.registerStoneBlockFamily(generator, TerrestriaBlockFamilies.VOLCANIC_ROCK_BRICK); + this.registerStoneBlockFamily(generator, TerrestriaBlockFamilies.VOLCANIC_MOSSY_ROCK_BRICK); + this.registerStoneBlockFamily(generator, TerrestriaBlockFamilies.VOLCANIC_COBBLESTONE); + this.registerStoneBlockFamily(generator, TerrestriaBlockFamilies.VOLCANIC_MOSSY_COBBLESTONE); + this.registerSmoothStone(generator, TerrestriaBlocks.VOLCANIC_ROCK); + + // DirtBlocks + this.registerDirtBlocks(generator, TerrestriaBlocks.ANDISOL); + + // Non-WoodBlocks small trunks + this.registerSmallLog(generator, TerrestriaBlocks.SAGUARO_CACTUS, null); + this.registerSmallLog(generator, TerrestriaBlocks.SMALL_OAK_LOG, Blocks.OAK_LOG, Blocks.OAK_LEAVES); + this.registerSmallLog(generator, TerrestriaBlocks.STRIPPED_SMALL_OAK_LOG, Blocks.STRIPPED_OAK_LOG, Blocks.OAK_LEAVES); + // Log item registration for small logs is in the item registration + + // Wood odds and ends + generator.registerFlowerPotPlantAndItem(TerrestriaBlocks.BRYCE_SAPLING, TerrestriaBlocks.POTTED_BRYCE_SAPLING, BlockStateModelGenerator.CrossType.NOT_TINTED); + generator.registerSingleton(TerrestriaBlocks.DARK_JAPANESE_MAPLE_LEAVES, TexturedModel.LEAVES); + this.registerBlockItemModel(generator, TerrestriaBlocks.DARK_JAPANESE_MAPLE_LEAVES); + generator.registerFlowerPotPlantAndItem(TerrestriaBlocks.DARK_JAPANESE_MAPLE_SAPLING, TerrestriaBlocks.POTTED_DARK_JAPANESE_MAPLE_SAPLING, BlockStateModelGenerator.CrossType.NOT_TINTED); + generator.registerTintedBlockAndItem(TerrestriaBlocks.JAPANESE_MAPLE_SHRUB_LEAVES, TexturedModel.LEAVES, FoliageColors.DEFAULT); + generator.registerFlowerPotPlantAndItem(TerrestriaBlocks.JAPANESE_MAPLE_SHRUB_SAPLING, TerrestriaBlocks.POTTED_JAPANESE_MAPLE_SHRUB_SAPLING, BlockStateModelGenerator.CrossType.NOT_TINTED); + generator.registerSingleton(TerrestriaBlocks.JUNGLE_PALM_LEAVES, TexturedModel.LEAVES); + this.registerBlockItemModel(generator, TerrestriaBlocks.JUNGLE_PALM_LEAVES); + generator.registerFlowerPotPlantAndItem(TerrestriaBlocks.JUNGLE_PALM_SAPLING, TerrestriaBlocks.POTTED_JUNGLE_PALM_SAPLING, BlockStateModelGenerator.CrossType.NOT_TINTED); + + // Stone odds and ends + generator.registerRotatable(TerrestriaBlocks.VOLCANIC_SAND); + this.registerBlockItemModel(generator, TerrestriaBlocks.VOLCANIC_SAND); + + // Misc. vegetation + generator.registerFlowerPotPlantAndItem(TerrestriaBlocks.AGAVE, TerrestriaBlocks.POTTED_AGAVE, BlockStateModelGenerator.CrossType.NOT_TINTED); + generator.registerFlowerPotPlantAndItem(TerrestriaBlocks.ALOE_VERA, TerrestriaBlocks.POTTED_ALOE_VERA, BlockStateModelGenerator.CrossType.NOT_TINTED); + generator.registerSingleton(TerrestriaBlocks.CATTAIL, TexturedModel.TEMPLATE_SEAGRASS); + this.registerBlockItemModel(generator, TerrestriaBlocks.CATTAIL); + generator.registerTintableCrossBlockState(TerrestriaBlocks.DEAD_GRASS, BlockStateModelGenerator.CrossType.NOT_TINTED); + this.registerBlockItemModel(generator, TerrestriaBlocks.DEAD_GRASS); + generator.registerFlowerPotPlantAndItem(TerrestriaBlocks.INDIAN_PAINTBRUSH, TerrestriaBlocks.POTTED_INDIAN_PAINTBRUSH, BlockStateModelGenerator.CrossType.NOT_TINTED); + generator.registerFlowerPotPlantAndItem(TerrestriaBlocks.MONSTERAS, TerrestriaBlocks.POTTED_MONSTERAS, BlockStateModelGenerator.CrossType.NOT_TINTED); + generator.registerFlowerPotPlantAndItem(TerrestriaBlocks.SAGUARO_CACTUS_SAPLING, TerrestriaBlocks.POTTED_SAGUARO_CACTUS_SAPLING, BlockStateModelGenerator.CrossType.NOT_TINTED); + Identifier cattailTop = generator.createSubModel(TerrestriaBlocks.TALL_CATTAIL, "_top", Models.TEMPLATE_SEAGRASS, TextureMap::texture); + Identifier cattailBottom = generator.createSubModel(TerrestriaBlocks.TALL_CATTAIL, "_bottom", Models.TEMPLATE_SEAGRASS, TextureMap::texture); + generator.registerDoubleBlock(TerrestriaBlocks.TALL_CATTAIL, cattailTop, cattailBottom); + generator.registerFlowerPotPlantAndItem(TerrestriaBlocks.TINY_CACTUS, TerrestriaBlocks.POTTED_TINY_CACTUS, BlockStateModelGenerator.CrossType.NOT_TINTED); + } + + @Override + public void generateItemModels(ItemModelGenerator generator) { + // Small logs + this.registerSmallLogItemModels(generator, TerrestriaBlocks.SAKURA); + this.registerSmallLogItemModels(generator, TerrestriaBlocks.YUCCA_PALM); + + this.registerSmallLogItemModel(generator, TerrestriaBlocks.SAGUARO_CACTUS); + this.registerSmallLogItemModel(generator, TerrestriaBlocks.SMALL_OAK_LOG, Blocks.OAK_LOG); + this.registerSmallLogItemModel(generator, TerrestriaBlocks.STRIPPED_SMALL_OAK_LOG, Blocks.STRIPPED_OAK_LOG); + + // Boats + this.registerBoatItemModels(generator, TerrestriaItems.CYPRESS); + this.registerBoatItemModels(generator, TerrestriaItems.HEMLOCK); + this.registerBoatItemModels(generator, TerrestriaItems.JAPANESE_MAPLE); + this.registerBoatItemModels(generator, TerrestriaItems.RAINBOW_EUCALYPTUS); + this.registerBoatItemModels(generator, TerrestriaItems.REDWOOD); + this.registerBoatItemModels(generator, TerrestriaItems.RUBBER); + this.registerBoatItemModels(generator, TerrestriaItems.SAKURA); + this.registerBoatItemModels(generator, TerrestriaItems.WILLOW); + this.registerBoatItemModels(generator, TerrestriaItems.YUCCA_PALM); + + // Hand tools + generator.register(TerrestriaItems.LOG_TURNER, Models.HANDHELD_ROD); + } + + + /* + * Shorthand for registering just the item model of a block item which uses its block's model. + */ + private void registerBlockItemModel(BlockStateModelGenerator generator, Block block) { + generator.registerParentedItemModel(block, ModelIds.getBlockModelId(block)); + } + + private void registerLeafPile(BlockStateModelGenerator generator, Block leafPile, Block leaves) { + // Bottom half of registerWoolAndCarpet + Identifier carpetModel = TexturedModel.CARPET.get(leaves) + .upload(leafPile, generator.modelCollector); + generator.blockStateCollector.accept( + BlockStateModelGenerator.createSingletonBlockState(leafPile, carpetModel)); + + this.registerBlockItemModel(generator, leafPile); + } + + private void registerSmallLog(BlockStateModelGenerator generator, Block log, @Nullable Block leaves) { + registerSmallLog(generator, log, null, leaves); + } + + private void registerSmallLog(BlockStateModelGenerator generator, Block log, @Nullable Block texture, @Nullable Block leaves) { + if (!(log instanceof BareSmallLogBlock)) { + throw new IllegalArgumentException("Attempt to register non-SmallLog via registerSmallLog: " + log); + } + TextureKey leavesKey = TextureKey.of("leaves"); + TextureMap logMap = TextureMap.sideAndEndForTop(texture == null ? log : texture); + TextureMap leafyMap = logMap + .copyAndAdd(leavesKey, TextureMap.getId(leaves == null ? Blocks.OAK_LEAVES : leaves)) + .copy(leavesKey, TextureKey.PARTICLE); + Model logModel = new Model( + Optional.of(WoodModels.BLOCK_SMALL_LOG), + Optional.empty(), + TextureKey.PARTICLE, TextureKey.SIDE); + Model branchModel = new Model( + Optional.of(WoodModels.BLOCK_SMALL_LOG_BRANCH), + Optional.of("_branch"), + TextureKey.PARTICLE, TextureKey.END, TextureKey.SIDE); + Model leavesModel = new Model( + Optional.of(WoodModels.BLOCK_SMALL_LOG_LEAVES), + Optional.of("_leaves"), + TextureKey.PARTICLE, leavesKey); + Model cutoutModel = new Model( + Optional.of(WoodModels.BLOCK_SMALL_LOG_LEAVES_CUTOUT), + Optional.of("_leaves_cutout"), + TextureKey.PARTICLE, leavesKey); + Identifier texturedLogModel = TexturedModel.makeFactory(block -> logMap, logModel) + .upload(log, generator.modelCollector); + Identifier texturedBranchModel = TexturedModel.makeFactory(block -> logMap, branchModel) + .upload(log, generator.modelCollector); + Identifier texturedLeavesModel = TexturedModel.makeFactory(block -> leafyMap, leavesModel) + .upload(log, generator.modelCollector); + Identifier texturedCutoutModel = TexturedModel.makeFactory(block -> leafyMap, cutoutModel) + .upload(log, generator.modelCollector); + MultipartBlockStateSupplier multipartBlockStateSupplier = MultipartBlockStateSupplier.create(log); + + SMALL_LOG_VARIANT_FUNCTIONS.forEach(pair -> { + multipartBlockStateSupplier.with( + When.create().set(pair.getFirst(), true), + pair.getSecond().apply(texturedBranchModel)); + multipartBlockStateSupplier.with( + When.create().set(pair.getFirst(), false), + pair.getSecond().apply(texturedLogModel)); + if (leaves != null) { + multipartBlockStateSupplier.with( + When.allOf(When.create().set(SmallLogBlock.HAS_LEAVES, true), When.create().set(pair.getFirst(), true)), + pair.getSecond().apply(texturedCutoutModel)); + multipartBlockStateSupplier.with( + When.allOf(When.create().set(SmallLogBlock.HAS_LEAVES, true), When.create().set(pair.getFirst(), false)), + pair.getSecond().apply(texturedLeavesModel)); + } + }); + + generator.blockStateCollector.accept(multipartBlockStateSupplier); + } + + private void registerQuarterLog(BlockStateModelGenerator generator, Block quarterLog, Block log) { + // Quarter Logs have specifically rotated textures on all sides: + // * an inside texture to the North and East + // * a side texture to the South and West + // * a top (end) texture on the top and bottom + TextureMap textureMap = new TextureMap() + .put(TextureKey.INSIDE, TextureMap.getId(quarterLog)) + .put(TextureKey.SIDE, TextureMap.getId(log)) + .put(TextureKey.END, TextureMap.getSubId(quarterLog, "_top")) + .copy(TextureKey.SIDE, TextureKey.PARTICLE); + Model model = new Model( + Optional.of(WoodModels.BLOCK_QUARTER_LOG), + Optional.empty(), + TextureKey.PARTICLE, TextureKey.INSIDE, TextureKey.SIDE, TextureKey.END); + Identifier texturedModel = TexturedModel.makeFactory(block -> textureMap, model) + .upload(quarterLog, generator.modelCollector); + + generator.blockStateCollector.accept( + VariantsBlockStateSupplier.create(quarterLog) + .coordinate( + BlockStateVariantMap.create(Properties.AXIS, QuarterLogBlock.BARK_SIDE) + .registerVariants((axis, barkSide) -> switch (axis) { + case X -> switch (barkSide) { + case SOUTHWEST -> List.of(BlockStateVariant.create() + .put(VariantSettings.MODEL, texturedModel) + .put(VariantSettings.X, VariantSettings.Rotation.R90) + .put(VariantSettings.Y, VariantSettings.Rotation.R270)); + case NORTHWEST -> List.of(BlockStateVariant.create() + .put(VariantSettings.MODEL, texturedModel) + .put(VariantSettings.X, VariantSettings.Rotation.R90) + .put(VariantSettings.Y, VariantSettings.Rotation.R90)); + case NORTHEAST -> List.of(BlockStateVariant.create() + .put(VariantSettings.MODEL, texturedModel) + .put(VariantSettings.X, VariantSettings.Rotation.R270) + .put(VariantSettings.Y, VariantSettings.Rotation.R90)); + case SOUTHEAST -> List.of(BlockStateVariant.create() + .put(VariantSettings.MODEL, texturedModel) + .put(VariantSettings.X, VariantSettings.Rotation.R270) + .put(VariantSettings.Y, VariantSettings.Rotation.R270)); + }; + case Y -> switch (barkSide) { + case SOUTHWEST -> List.of(BlockStateVariant.create() + .put(VariantSettings.MODEL, texturedModel)); + case NORTHWEST -> List.of(BlockStateVariant.create() + .put(VariantSettings.MODEL, texturedModel) + .put(VariantSettings.Y, VariantSettings.Rotation.R90)); + case NORTHEAST -> List.of(BlockStateVariant.create() + .put(VariantSettings.MODEL, texturedModel) + .put(VariantSettings.Y, VariantSettings.Rotation.R180)); + case SOUTHEAST -> List.of(BlockStateVariant.create() + .put(VariantSettings.MODEL, texturedModel) + .put(VariantSettings.Y, VariantSettings.Rotation.R270)); + }; + case Z -> switch (barkSide) { + case SOUTHWEST -> List.of(BlockStateVariant.create() + .put(VariantSettings.MODEL, texturedModel) + .put(VariantSettings.X, VariantSettings.Rotation.R90)); + case NORTHWEST -> List.of(BlockStateVariant.create() + .put(VariantSettings.MODEL, texturedModel) + .put(VariantSettings.X, VariantSettings.Rotation.R270)); + case NORTHEAST -> List.of(BlockStateVariant.create() + .put(VariantSettings.MODEL, texturedModel) + .put(VariantSettings.X, VariantSettings.Rotation.R270) + .put(VariantSettings.Y, VariantSettings.Rotation.R180)); + case SOUTHEAST -> List.of(BlockStateVariant.create() + .put(VariantSettings.MODEL, texturedModel) + .put(VariantSettings.X, VariantSettings.Rotation.R90) + .put(VariantSettings.Y, VariantSettings.Rotation.R180)); + }; + }) + ) + ); + + this.registerBlockItemModel(generator, quarterLog); + } + + private void registerWoodBlocks(BlockStateModelGenerator generator, WoodBlocks woodBlocks, BlockFamily blockFamily, Block sapling, Block pottedSapling) { + // Vanilla part of WoodBlocks + generator.registerCubeAllModelTexturePool(blockFamily.getBaseBlock()).family(blockFamily); + this.registerBlockItemModel(generator, woodBlocks.fenceGate); + this.registerBlockItemModel(generator, woodBlocks.planks); + this.registerBlockItemModel(generator, woodBlocks.pressurePlate); + + if (woodBlocks.getSize().equals(WoodBlocks.LogSize.SMALL)) { + // This case is for small log trees that do have a full WoodBlocks + this.registerSmallLog(generator, woodBlocks.log, woodBlocks.leaves); + this.registerSmallLog(generator, woodBlocks.strippedLog, woodBlocks.leaves); + + // Log item registration for small logs is in the item registration + } else { + // This is what vanilla's BlockFamily-based code does + if (woodBlocks.hasWood()) { + generator.registerLog(woodBlocks.log).log(woodBlocks.log).wood(woodBlocks.wood); + generator.registerLog(woodBlocks.strippedLog).log(woodBlocks.strippedLog).wood(woodBlocks.strippedWood); + + this.registerBlockItemModel(generator, woodBlocks.wood); + this.registerBlockItemModel(generator, woodBlocks.strippedWood); + } else { + generator.registerLog(woodBlocks.log).log(woodBlocks.log); + generator.registerLog(woodBlocks.strippedLog).log(woodBlocks.strippedLog); + } + + this.registerBlockItemModel(generator, woodBlocks.log); + this.registerBlockItemModel(generator, woodBlocks.strippedLog); + } + generator.registerHangingSign(blockFamily.getBaseBlock(), woodBlocks.hangingSign, woodBlocks.wallHangingSign); + if (sapling != null) { + generator.registerFlowerPotPlantAndItem(sapling, pottedSapling, BlockStateModelGenerator.CrossType.NOT_TINTED); + } + if ("willow".equals(woodBlocks.getName())) { + // TODO: generalize this special case? + generator.registerTintedBlockAndItem(woodBlocks.leaves, TexturedModel.END_FOR_TOP_CUBE_COLUMN, FoliageColors.DEFAULT); + } else if (woodBlocks.isTintable()) { + generator.registerTintedBlockAndItem(woodBlocks.leaves, TexturedModel.LEAVES, FoliageColors.DEFAULT); + } else { + generator.registerSingleton(woodBlocks.leaves, TexturedModel.LEAVES); + this.registerBlockItemModel(generator, woodBlocks.leaves); + } + + // Extra parts of WoodBlocks + if (woodBlocks.hasQuarterLog()) { + this.registerQuarterLog(generator, woodBlocks.quarterLog, woodBlocks.log); + this.registerQuarterLog(generator, woodBlocks.strippedQuarterLog, woodBlocks.strippedLog); + } + if (woodBlocks.hasLeafPile()) { + this.registerLeafPile(generator, woodBlocks.leafPile, woodBlocks.leaves); + } + } + + + private void registerStoneBlockFamily(BlockStateModelGenerator generator, BlockFamily blockFamily) { + // Vanilla part of stone BlockFamily + generator.registerCubeAllModelTexturePool(blockFamily.getBaseBlock()).family(blockFamily); + + this.registerBlockItemModel(generator, blockFamily.getBaseBlock()); + if (blockFamily.getVariants().containsKey(BlockFamily.Variant.CHISELED)) { + this.registerBlockItemModel(generator, blockFamily.getVariant(BlockFamily.Variant.CHISELED)); + } + if (blockFamily.getVariants().containsKey(BlockFamily.Variant.CRACKED)) { + this.registerBlockItemModel(generator, blockFamily.getVariant(BlockFamily.Variant.CRACKED)); + } + if (blockFamily.getVariants().containsKey(BlockFamily.Variant.PRESSURE_PLATE)) { + this.registerBlockItemModel(generator, blockFamily.getVariant(BlockFamily.Variant.PRESSURE_PLATE)); + } + } + + private void registerSmoothStone(BlockStateModelGenerator generator, StoneBlocks stoneBlocks) { + // Vanilla part + // Non-hard-coded version of BlockStateModelGenerator.registerSmoothStone() + TextureMap fullTexture = TextureMap.all(stoneBlocks.smooth.full); + TextureMap slabTexture = TextureMap.sideEnd(TextureMap.getSubId(stoneBlocks.smooth.slab, "_side"), fullTexture.getTexture(TextureKey.TOP)); + Identifier slabId = Models.SLAB.upload(stoneBlocks.smooth.slab, slabTexture, generator.modelCollector); + Identifier topSlabId = Models.SLAB_TOP.upload(stoneBlocks.smooth.slab, slabTexture, generator.modelCollector); + Identifier doubleSlabId = Models.CUBE_COLUMN.uploadWithoutVariant(stoneBlocks.smooth.slab, "_double", slabTexture, generator.modelCollector); + generator.blockStateCollector.accept(BlockStateModelGenerator.createSlabBlockState(stoneBlocks.smooth.slab, slabId, topSlabId, doubleSlabId)); + BlockStateModelGenerator.BlockTexturePool textures = generator.registerCubeAllModelTexturePool(stoneBlocks.smooth.full); + + this.registerBlockItemModel(generator, stoneBlocks.smooth.full); + this.registerBlockItemModel(generator, stoneBlocks.smooth.slab); + + // Extra parts + if (stoneBlocks.smooth.stairs != null) { + textures.stairs(stoneBlocks.smooth.stairs); + } + if (stoneBlocks.smooth.wall != null) { + textures.wall(stoneBlocks.smooth.wall); + } + } + + private void registerDirtBlocks(BlockStateModelGenerator generator, DirtBlocks dirtBlocks) { + // Dirt basic block + generator.registerRotatable(dirtBlocks.getDirt()); + Identifier dirtTextureId = TextureMap.getId(dirtBlocks.getDirt()); + + // Dirt Path based on vanilla model and the partial code in BlockStateModelGenerator.registerDirtPath() + TextureMap pathTexture = TextureMap.sideAndEndForTop(dirtBlocks.getDirtPath()) + .put(TextureKey.BOTTOM, dirtTextureId) + .inherit(TextureKey.BOTTOM, TextureKey.PARTICLE) + .put(TextureKey.TOP, TextureMap.getSubId(Blocks.DIRT_PATH,"_top")) + .put(TextureKey.SIDE, TextureMap.getSubId(dirtBlocks.getDirtPath(), "_side")); + Identifier pathTextureId = new Model( + Optional.of(ModelIds.getBlockModelId(Blocks.DIRT_PATH)), + Optional.empty(), + TextureKey.BOTTOM, TextureKey.SIDE, TextureKey.TOP + ).upload(dirtBlocks.getDirtPath(), pathTexture, generator.modelCollector); + generator.blockStateCollector.accept(BlockStateModelGenerator.createBlockStateWithRandomHorizontalRotations( + dirtBlocks.getDirtPath(), pathTextureId)); + + // Grass, Mycelium, and Podzol based roughly on BlockStateModelGenerator.registerTopSoils() + // grass + TextureMap grassTexture = new TextureMap() + .put(TextureKey.BOTTOM, dirtTextureId) + .inherit(TextureKey.BOTTOM, TextureKey.PARTICLE) + .put(TextureKey.TOP, TextureMap.getSubId(Blocks.GRASS_BLOCK, "_top")) + .put(TextureKey.SIDE, TextureMap.getSubId(dirtBlocks.getGrassBlock(), "_side")) + .put(TextureKey.of("overlay"), TextureMap.getSubId(Blocks.GRASS_BLOCK, "_side_overlay")); + Identifier grassTextureId = new Model( + Optional.of(ModelIds.getBlockModelId(Blocks.GRASS_BLOCK)), + Optional.empty(), + TextureKey.BOTTOM, TextureKey.SIDE, TextureKey.TOP + ).upload(dirtBlocks.getGrassBlock(), grassTexture, generator.modelCollector); + TextureMap snowTexture = new TextureMap() + .put(TextureKey.BOTTOM, dirtTextureId) + .inherit(TextureKey.BOTTOM, TextureKey.PARTICLE) + .put(TextureKey.TOP, TextureMap.getSubId(Blocks.GRASS_BLOCK, "_top")) + .put(TextureKey.SIDE, TextureMap.getSubId(dirtBlocks.getGrassBlock(), "_snow")); + BlockStateVariant snowStateVariant = BlockStateVariant.create() + .put(VariantSettings.MODEL, Models.CUBE_BOTTOM_TOP.upload( + dirtBlocks.getGrassBlock(), "_snow", snowTexture, generator.modelCollector)); + generator.registerTopSoil(dirtBlocks.getGrassBlock(), grassTextureId, snowStateVariant); + generator.registerTintedItemModel(dirtBlocks.getGrassBlock(), grassTextureId, new GrassTintSource()); + /* TODO: future mycelium feature? + // mycelium + Identifier myceliumTexture = TexturedModel.CUBE_BOTTOM_TOP + .get(dirtBlocks.getMycelium()) + .textures(textures -> textures + .put(TextureKey.BOTTOM, dirtTextureId) + .put(TextureKey.TOP, TextureMap.getSubId(Blocks.MYCELIUM, "_top"))) + .upload(dirtBlocks.getMycelium(), generator.modelCollector); + generator.registerTopSoil(dirtBlocks.getMycelium(), myceliumTexture, blockStateVariant); + */ + // podzol + Identifier podzolTexture = TexturedModel.CUBE_BOTTOM_TOP + .get(dirtBlocks.getPodzol()) + .textures(textures -> textures + .put(TextureKey.BOTTOM, dirtTextureId) + .put(TextureKey.TOP, TextureMap.getSubId(Blocks.PODZOL, "_top"))) + .upload(dirtBlocks.getPodzol(), generator.modelCollector); + generator.registerTopSoil(dirtBlocks.getPodzol(), podzolTexture, snowStateVariant); + + // Farmland from BlockStateModelGenerator.registerFarmland() + TextureMap farmlandTexture = new TextureMap() + .put(TextureKey.DIRT, TextureMap.getId(dirtBlocks.getDirt())) + .put(TextureKey.TOP, TextureMap.getId(dirtBlocks.getFarmland())); + TextureMap moistFarmlandTexture = new TextureMap() + .put(TextureKey.DIRT, TextureMap.getId(dirtBlocks.getDirt())) + .put(TextureKey.TOP, TextureMap.getSubId(dirtBlocks.getFarmland(), "_moist")); + Identifier farmlandModel = Models.TEMPLATE_FARMLAND.upload(dirtBlocks.getFarmland(), farmlandTexture, generator.modelCollector); + Identifier moistFarmlandModel = Models.TEMPLATE_FARMLAND.upload(TextureMap.getSubId(dirtBlocks.getFarmland(), "_moist"), moistFarmlandTexture, generator.modelCollector); + generator.blockStateCollector.accept(VariantsBlockStateSupplier.create(dirtBlocks.getFarmland()) + .coordinate(BlockStateModelGenerator + .createValueFencedModelMap(Properties.MOISTURE, 7, moistFarmlandModel, farmlandModel))); + + this.registerBlockItemModel(generator, dirtBlocks.getDirt()); + this.registerBlockItemModel(generator, dirtBlocks.getDirtPath()); + this.registerBlockItemModel(generator, dirtBlocks.getFarmland()); + this.registerBlockItemModel(generator, dirtBlocks.getPodzol()); + } + + private void registerSmallLogItemModel(ItemModelGenerator generator, Block block, @Nullable Block texture) { + new Model( + Optional.of(WoodModels.ITEM_SMALL_LOG), + Optional.empty(), + TextureKey.ALL + ).upload( + block.asItem(), + TextureMap.all(TextureMap.getId(texture == null ? block : texture)) + .inherit(TextureKey.ALL, TextureKey.PARTICLE), + generator.modelCollector + ); + + generator.register(block.asItem()); + } + + private void registerSmallLogItemModel(ItemModelGenerator generator, Block block) { + registerSmallLogItemModel(generator, block, null); + } + + private void registerSmallLogItemModels(ItemModelGenerator generator, WoodBlocks woodBlocks) { + registerSmallLogItemModel(generator, woodBlocks.log, null); + registerSmallLogItemModel(generator, woodBlocks.strippedLog, null); + } + + private void registerBoatItemModels(ItemModelGenerator generator, WoodItems woodItems) { + if (woodItems.hasBoat()) { + generator.register(woodItems.boat, Models.GENERATED); + generator.register(woodItems.chestBoat, Models.GENERATED); + } + } + + @Override + public String getName() { + return "Terrestria Models"; + } +} diff --git a/common/src/main/java/com/terraformersmc/terrestria/data/TerrestriaRecipeProvider.java b/common/src/main/java/com/terraformersmc/terrestria/data/TerrestriaRecipeProvider.java index 26b5e057..31cf029d 100644 --- a/common/src/main/java/com/terraformersmc/terrestria/data/TerrestriaRecipeProvider.java +++ b/common/src/main/java/com/terraformersmc/terrestria/data/TerrestriaRecipeProvider.java @@ -1,6 +1,7 @@ package com.terraformersmc.terrestria.data; import com.terraformersmc.terrestria.Terrestria; +import com.terraformersmc.terrestria.init.TerrestriaBlockFamilies; import com.terraformersmc.terrestria.init.TerrestriaItems; import com.terraformersmc.terrestria.init.helpers.StoneItems; import com.terraformersmc.terrestria.init.helpers.StoneVariantItems; @@ -8,8 +9,10 @@ import com.terraformersmc.terrestria.tag.TerrestriaItemTags; import net.fabricmc.fabric.api.datagen.v1.FabricDataOutput; import net.fabricmc.fabric.api.datagen.v1.provider.FabricRecipeProvider; -import net.minecraft.advancement.criterion.InventoryChangedCriterion; -import net.minecraft.data.server.recipe.*; +import net.minecraft.data.family.BlockFamily; +import net.minecraft.data.recipe.CookingRecipeJsonBuilder; +import net.minecraft.data.recipe.RecipeExporter; +import net.minecraft.data.recipe.RecipeGenerator; import net.minecraft.item.BlockItem; import net.minecraft.item.Item; import net.minecraft.item.Items; @@ -17,6 +20,8 @@ import net.minecraft.recipe.book.RecipeCategory; import net.minecraft.registry.RegistryWrapper; import net.minecraft.registry.tag.TagKey; +import net.minecraft.resource.featuretoggle.FeatureFlags; +import net.minecraft.resource.featuretoggle.FeatureSet; import net.minecraft.util.Identifier; import org.jetbrains.annotations.Nullable; @@ -37,15 +42,15 @@ public void generate() { createShapeless(RecipeCategory.DECORATIONS, TerrestriaItems.BRYCE_SAPLING, 1) .input(Items.OAK_SAPLING) .input(Items.STICK) - .criterion("has_bryce_sapling", InventoryChangedCriterion.Conditions.items(TerrestriaItems.BRYCE_SAPLING)) + .criterion("has_bryce_sapling", this.conditionsFromItem(TerrestriaItems.BRYCE_SAPLING)) .offerTo(exporter, "bryce_sapling_from_oak_sapling"); CookingRecipeJsonBuilder.createSmelting(Ingredient.ofItems(TerrestriaItems.SAGUARO_CACTUS), RecipeCategory.MISC, Items.GREEN_DYE, 1.0f, 200) - .criterion("has_cactus", InventoryChangedCriterion.Conditions.items(TerrestriaItems.SAGUARO_CACTUS)) + .criterion("has_cactus", this.conditionsFromItem(TerrestriaItems.SAGUARO_CACTUS)) .offerTo(exporter); CookingRecipeJsonBuilder.createSmelting(Ingredient.ofItems(TerrestriaItems.TINY_CACTUS), RecipeCategory.MISC, Items.LIME_DYE, 1.0f, 200) - .criterion("has_tiny_cactus", InventoryChangedCriterion.Conditions.items(TerrestriaItems.TINY_CACTUS)) + .criterion("has_tiny_cactus", this.conditionsFromItem(TerrestriaItems.TINY_CACTUS)) .offerTo(exporter); createShaped(RecipeCategory.TOOLS, TerrestriaItems.LOG_TURNER, 1) @@ -53,96 +58,55 @@ public void generate() { .pattern(" s") .pattern("ss") .input('s', Items.STICK) - .criterion("has_sticks", InventoryChangedCriterion.Conditions.items(Items.STICK)) + .criterion("has_sticks", this.conditionsFromItem(Items.STICK)) .offerTo(exporter); offerSingleOutputShapelessRecipe(Items.RED_DYE, TerrestriaItems.INDIAN_PAINTBRUSH, "dyes"); // wood building block recipes - generateWood(exporter, TerrestriaItems.CYPRESS, TerrestriaItemTags.CYPRESS_LOGS); - generateWood(exporter, TerrestriaItems.HEMLOCK, TerrestriaItemTags.HEMLOCK_LOGS); - generateWood(exporter, TerrestriaItems.JAPANESE_MAPLE, TerrestriaItemTags.JAPANESE_MAPLE_LOGS); - generateWood(exporter, TerrestriaItems.RAINBOW_EUCALYPTUS, TerrestriaItemTags.RAINBOW_EUCALYPTUS_LOGS); - generateWood(exporter, TerrestriaItems.REDWOOD, TerrestriaItemTags.REDWOOD_LOGS); - generateWood(exporter, TerrestriaItems.RUBBER, TerrestriaItemTags.RUBBER_LOGS); - generateWood(exporter, TerrestriaItems.SAKURA, TerrestriaItemTags.SAKURA_LOGS); - generateWood(exporter, TerrestriaItems.WILLOW, TerrestriaItemTags.WILLOW_LOGS); - generateWood(exporter, TerrestriaItems.YUCCA_PALM, TerrestriaItemTags.YUCCA_PALM_LOGS); + generateWood(exporter, TerrestriaBlockFamilies.CYPRESS, TerrestriaItems.CYPRESS, TerrestriaItemTags.CYPRESS_LOGS); + generateWood(exporter, TerrestriaBlockFamilies.HEMLOCK, TerrestriaItems.HEMLOCK, TerrestriaItemTags.HEMLOCK_LOGS); + generateWood(exporter, TerrestriaBlockFamilies.JAPANESE_MAPLE, TerrestriaItems.JAPANESE_MAPLE, TerrestriaItemTags.JAPANESE_MAPLE_LOGS); + generateWood(exporter, TerrestriaBlockFamilies.RAINBOW_EUCALYPTUS, TerrestriaItems.RAINBOW_EUCALYPTUS, TerrestriaItemTags.RAINBOW_EUCALYPTUS_LOGS); + generateWood(exporter, TerrestriaBlockFamilies.REDWOOD, TerrestriaItems.REDWOOD, TerrestriaItemTags.REDWOOD_LOGS); + generateWood(exporter, TerrestriaBlockFamilies.RUBBER, TerrestriaItems.RUBBER, TerrestriaItemTags.RUBBER_LOGS); + generateWood(exporter, TerrestriaBlockFamilies.SAKURA, TerrestriaItems.SAKURA, TerrestriaItemTags.SAKURA_LOGS); + generateWood(exporter, TerrestriaBlockFamilies.WILLOW, TerrestriaItems.WILLOW, TerrestriaItemTags.WILLOW_LOGS); + generateWood(exporter, TerrestriaBlockFamilies.YUCCA_PALM, TerrestriaItems.YUCCA_PALM, TerrestriaItemTags.YUCCA_PALM_LOGS); // stone building block recipes generateStone(exporter, TerrestriaItems.VOLCANIC_ROCK); } - private void generateWood(RecipeExporter exporter, WoodItems woodItem, TagKey logsTag) { - if (woodItem.hasBoat()) { - offerBoatRecipe(woodItem.boat, woodItem.planks); - offerChestBoatRecipe(woodItem.chestBoat, woodItem.boat); - } - - createShapeless(RecipeCategory.REDSTONE, woodItem.button, 1) - .group("wooden_button") - .input(woodItem.planks) - .criterion("has_planks", InventoryChangedCriterion.Conditions.items(woodItem.planks)) - .offerTo(exporter); - - createDoorRecipe(woodItem.door, Ingredient.ofItems(woodItem.planks)) - .criterion("has_planks", InventoryChangedCriterion.Conditions.items(woodItem.planks)) - .offerTo(exporter); - - createFenceRecipe(woodItem.fence, Ingredient.ofItems(woodItem.planks)) - .criterion("has_planks", InventoryChangedCriterion.Conditions.items(woodItem.planks)) - .offerTo(exporter); + private void generateWood(RecipeExporter exporter, BlockFamily blockFamily, WoodItems woodItem, TagKey logsTag) { + // We don't really use feature sets, so this is good enough... + FeatureSet enabledFeatures = FeatureSet.of(FeatureFlags.VANILLA); - createFenceGateRecipe(woodItem.fenceGate, Ingredient.ofItems(woodItem.planks)) - .criterion("has_planks", InventoryChangedCriterion.Conditions.items(woodItem.planks)) - .offerTo(exporter); - - offerHangingSignRecipe(woodItem.hangingSign, woodItem.strippedLog); + generateFamily(blockFamily, enabledFeatures); offerPlanksRecipe(woodItem.planks, logsTag, 4); - offerPressurePlateRecipe(woodItem.pressurePlate, woodItem.planks); - - createSignRecipe(woodItem.sign, Ingredient.ofItems(woodItem.planks)) - .criterion("has_planks", InventoryChangedCriterion.Conditions.items(woodItem.planks)) - .offerTo(exporter); - - offerSlabRecipe(RecipeCategory.BUILDING_BLOCKS, woodItem.slab, woodItem.planks); + // Some WoodItems with no real wood have wood set to log + if (woodItem.hasWood()) { + offerBarkBlockRecipe(woodItem.wood, woodItem.log); + offerBarkBlockRecipe(woodItem.strippedWood, woodItem.strippedLog); + } - createStairsRecipe(woodItem.stairs, Ingredient.ofItems(woodItem.planks)) - .criterion("has_planks", InventoryChangedCriterion.Conditions.items(woodItem.planks)) - .offerTo(exporter); + // Boats are an optional wood feature + if (woodItem.hasBoat()) { + offerBoatRecipe(woodItem.boat, woodItem.planks); + offerChestBoatRecipe(woodItem.chestBoat, woodItem.boat); + } - createTrapdoorRecipe(woodItem.trapdoor, Ingredient.ofItems(woodItem.planks)) - .criterion("has_planks", InventoryChangedCriterion.Conditions.items(woodItem.planks)) - .offerTo(exporter); + offerHangingSignRecipe(woodItem.hangingSign, woodItem.strippedLog); - // leaf piles are an optional wood feature + // Leaf piles are an optional wood feature if (woodItem.hasLeafPile()) { createShaped(RecipeCategory.DECORATIONS, woodItem.leafPile, 16) .pattern("LL") .input('L', woodItem.leaves) - .criterion("has_leaves", InventoryChangedCriterion.Conditions.items(woodItem.leaves)) - .offerTo(exporter); - } - - // some woodItem with no real wood have wood set to log - if (woodItem.hasWood()) { - createShaped(RecipeCategory.BUILDING_BLOCKS, woodItem.wood, 3) - .group("bark") - .pattern("LL") - .pattern("LL") - .input('L', woodItem.log) - .criterion("has_logs", InventoryChangedCriterion.Conditions.items(woodItem.log)) - .offerTo(exporter); - - createShaped(RecipeCategory.BUILDING_BLOCKS, woodItem.strippedWood, 3) - .group("bark") - .pattern("LL") - .pattern("LL") - .input('L', woodItem.strippedLog) - .criterion("has_logs", InventoryChangedCriterion.Conditions.items(woodItem.strippedLog)) + .criterion("has_leaves", this.conditionsFromItem(woodItem.leaves)) .offerTo(exporter); } } @@ -156,7 +120,7 @@ private void generateStone(RecipeExporter exporter, StoneItems stoneItem) { .pattern("SS") .pattern("SS") .input('S', stoneItem.plain.full) - .criterion("has_stone", InventoryChangedCriterion.Conditions.items(stoneItem.plain.full)) + .criterion("has_stone", this.conditionsFromItem(stoneItem.plain.full)) .offerTo(exporter); offerStonecuttingRecipe(RecipeCategory.BUILDING_BLOCKS, stoneItem.bricks.full, stoneItem.plain.full); @@ -176,7 +140,7 @@ private void generateStone(RecipeExporter exporter, StoneItems stoneItem) { .group("mossy_bricks") .input(stoneItem.bricks.full) .input(TerrestriaItemTags.MOSSY_INGREDIENTS) - .criterion("has_stone", InventoryChangedCriterion.Conditions.items(stoneItem.bricks.full)) + .criterion("has_mossy_ingredients", this.conditionsFromTag(TerrestriaItemTags.MOSSY_INGREDIENTS)) .offerTo(exporter); } if (stoneItem.mossyCobblestone != null) { @@ -186,7 +150,7 @@ private void generateStone(RecipeExporter exporter, StoneItems stoneItem) { .group("mossy_cobblestone") .input(stoneItem.cobblestone.full) .input(TerrestriaItemTags.MOSSY_INGREDIENTS) - .criterion("has_stone", InventoryChangedCriterion.Conditions.items(stoneItem.cobblestone.full)) + .criterion("has_mossy_ingredients", this.conditionsFromTag(TerrestriaItemTags.MOSSY_INGREDIENTS)) .offerTo(exporter); } if (stoneItem.plain != null) { @@ -202,14 +166,14 @@ private void generateStone(RecipeExporter exporter, StoneItems stoneItem) { createShapeless(RecipeCategory.REDSTONE, stoneItem.button, 1) .group("stone_button") .input(stoneItem.plain.full) - .criterion("has_stone", InventoryChangedCriterion.Conditions.items(stoneItem.plain.full)) + .criterion("has_stone", this.conditionsFromItem(stoneItem.plain.full)) .offerTo(exporter); createShaped(RecipeCategory.REDSTONE, stoneItem.pressurePlate, 1) .group("stone_pressure_plate") .pattern("SS") .input('S', stoneItem.plain.full) - .criterion("has_stone", InventoryChangedCriterion.Conditions.items(stoneItem.plain.full)) + .criterion("has_stone", this.conditionsFromItem(stoneItem.plain.full)) .offerTo(exporter); } if (stoneItem.smooth != null) { @@ -227,7 +191,7 @@ private void generateStone(RecipeExporter exporter, StoneItems stoneItem) { private void generateStoneVariant(RecipeExporter exporter, StoneVariantItems stoneVariantItem, @Nullable BlockItem cutPlainItem) { offerSlabRecipe(RecipeCategory.BUILDING_BLOCKS, stoneVariantItem.slab, stoneVariantItem.full); createStairsRecipe(stoneVariantItem.stairs, Ingredient.ofItems(stoneVariantItem.full)) - .criterion("has_stone", InventoryChangedCriterion.Conditions.items(stoneVariantItem.full)) + .criterion("has_stone", this.conditionsFromItem(stoneVariantItem.full)) .offerTo(exporter); // ?? so lame there is no offerStairsRecipe() !! offerWallRecipe(RecipeCategory.DECORATIONS, stoneVariantItem.wall, stoneVariantItem.full); diff --git a/common/src/main/java/com/terraformersmc/terrestria/feature/structure/volcano/VolcanoGenerator.java b/common/src/main/java/com/terraformersmc/terrestria/feature/structure/volcano/VolcanoGenerator.java index ee3520cf..9dd552a9 100644 --- a/common/src/main/java/com/terraformersmc/terrestria/feature/structure/volcano/VolcanoGenerator.java +++ b/common/src/main/java/com/terraformersmc/terrestria/feature/structure/volcano/VolcanoGenerator.java @@ -245,7 +245,7 @@ public void generate(StructureWorldAccess world, StructureAccessor structureAcce double scaledHeight = (double) (columnHeight) / (double) (lavaHeight); if (scaledHeight < vegetation) { if (columnHeight < 4) { - top = TerrestriaBlocks.BLACK_SAND.getDefaultState(); + top = TerrestriaBlocks.VOLCANIC_SAND.getDefaultState(); } else { top = TerrestriaBlocks.ANDISOL.getGrassBlock().getDefaultState(); } diff --git a/common/src/main/java/com/terraformersmc/terrestria/feature/tree/foliageplacers/PalmFanFoliagePlacer.java b/common/src/main/java/com/terraformersmc/terrestria/feature/tree/foliageplacers/PalmFanFoliagePlacer.java index 5106f9c1..4e64dfd4 100644 --- a/common/src/main/java/com/terraformersmc/terrestria/feature/tree/foliageplacers/PalmFanFoliagePlacer.java +++ b/common/src/main/java/com/terraformersmc/terrestria/feature/tree/foliageplacers/PalmFanFoliagePlacer.java @@ -55,7 +55,7 @@ protected void generate(TestableWorld world, BlockPlacer placer, Random random, // Place 2 dangly bits in each direction for (int d = 0; d < 4; d++) { - Direction direction = Direction.fromHorizontal(d); + Direction direction = Direction.fromHorizontalQuarterTurns(d); pos.set(center).move(direction, 2); placeSpiral(world, random, pos, placer, config, direction, !flipSpiral); diff --git a/common/src/main/java/com/terraformersmc/terrestria/init/TerrestriaBlockFamilies.java b/common/src/main/java/com/terraformersmc/terrestria/init/TerrestriaBlockFamilies.java new file mode 100644 index 00000000..fafa8772 --- /dev/null +++ b/common/src/main/java/com/terraformersmc/terrestria/init/TerrestriaBlockFamilies.java @@ -0,0 +1,72 @@ +package com.terraformersmc.terrestria.init; + +import com.terraformersmc.terrestria.init.helpers.StoneBlocks; +import com.terraformersmc.terrestria.init.helpers.StoneVariantBlocks; +import com.terraformersmc.terrestria.init.helpers.WoodBlocks; +import net.minecraft.data.family.BlockFamilies; +import net.minecraft.data.family.BlockFamily; + +public class TerrestriaBlockFamilies { + // Wood + public static final BlockFamily CYPRESS = fromWoodBlocks(TerrestriaBlocks.CYPRESS); + public static final BlockFamily HEMLOCK = fromWoodBlocks(TerrestriaBlocks.HEMLOCK); + public static final BlockFamily JAPANESE_MAPLE = fromWoodBlocks(TerrestriaBlocks.JAPANESE_MAPLE); + public static final BlockFamily RAINBOW_EUCALYPTUS = fromWoodBlocks(TerrestriaBlocks.RAINBOW_EUCALYPTUS); + public static final BlockFamily REDWOOD = fromWoodBlocks(TerrestriaBlocks.REDWOOD); + public static final BlockFamily RUBBER = fromWoodBlocks(TerrestriaBlocks.RUBBER); + public static final BlockFamily SAKURA = fromWoodBlocks(TerrestriaBlocks.SAKURA); + public static final BlockFamily WILLOW = fromWoodBlocks(TerrestriaBlocks.WILLOW); + public static final BlockFamily YUCCA_PALM = fromWoodBlocks(TerrestriaBlocks.YUCCA_PALM); + + // Stone + public static final BlockFamily VOLCANIC_ROCK = plainFromStoneBlocks(TerrestriaBlocks.VOLCANIC_ROCK); + public static final BlockFamily VOLCANIC_ROCK_BRICK = brickFromStoneBlocks(TerrestriaBlocks.VOLCANIC_ROCK); + public static final BlockFamily VOLCANIC_MOSSY_ROCK_BRICK = fromStoneVariantBlocks(TerrestriaBlocks.VOLCANIC_ROCK.mossyBricks); + public static final BlockFamily VOLCANIC_COBBLESTONE = fromStoneVariantBlocks(TerrestriaBlocks.VOLCANIC_ROCK.cobblestone); + public static final BlockFamily VOLCANIC_MOSSY_COBBLESTONE = fromStoneVariantBlocks(TerrestriaBlocks.VOLCANIC_ROCK.mossyCobblestone); + + + private static BlockFamily fromWoodBlocks(WoodBlocks woodBlocks) { + return BlockFamilies.register(woodBlocks.planks) + .button(woodBlocks.button) + .fence(woodBlocks.fence) + .fenceGate(woodBlocks.fenceGate) + .pressurePlate(woodBlocks.pressurePlate) + .sign(woodBlocks.sign, woodBlocks.wallSign) + .slab(woodBlocks.slab) + .stairs(woodBlocks.stairs) + .door(woodBlocks.door) + .trapdoor(woodBlocks.trapdoor) + .group("wooden") + .unlockCriterionName("has_planks") + .build(); + } + + private static BlockFamily plainFromStoneBlocks(StoneBlocks stoneBlocks) { + return BlockFamilies.register(stoneBlocks.plain.full) + .button(stoneBlocks.button) + .slab(stoneBlocks.plain.slab) + .stairs(stoneBlocks.plain.stairs) + .wall(stoneBlocks.plain.wall) + .pressurePlate(stoneBlocks.pressurePlate) + .build(); + } + + private static BlockFamily brickFromStoneBlocks(StoneBlocks stoneBlocks) { + return BlockFamilies.register(stoneBlocks.bricks.full) + .chiseled(stoneBlocks.chiseledBricks) + .cracked(stoneBlocks.crackedBricks) + .slab(stoneBlocks.bricks.slab) + .stairs(stoneBlocks.bricks.stairs) + .wall(stoneBlocks.bricks.wall) + .build(); + } + + private static BlockFamily fromStoneVariantBlocks(StoneVariantBlocks stoneVarientBlocks) { + return BlockFamilies.register(stoneVarientBlocks.full) + .slab(stoneVarientBlocks.slab) + .stairs(stoneVarientBlocks.stairs) + .wall(stoneVarientBlocks.wall) + .build(); + } +} diff --git a/common/src/main/java/com/terraformersmc/terrestria/init/TerrestriaBlocks.java b/common/src/main/java/com/terraformersmc/terrestria/init/TerrestriaBlocks.java index de3f8641..7ec4d1d1 100644 --- a/common/src/main/java/com/terraformersmc/terrestria/init/TerrestriaBlocks.java +++ b/common/src/main/java/com/terraformersmc/terrestria/init/TerrestriaBlocks.java @@ -3,6 +3,7 @@ import com.terraformersmc.terraform.dirt.api.DirtBlocks; import com.terraformersmc.terraform.dirt.api.block.TerraformDirtPathBlock; import com.terraformersmc.terraform.dirt.api.block.TerraformFarmlandBlock; +import com.terraformersmc.terraform.dirt.api.block.TerraformGrassBlock; import com.terraformersmc.terraform.dirt.api.block.TerraformSnowyBlock; import com.terraformersmc.terraform.dirt.api.registry.TerraformDirtRegistry; import com.terraformersmc.terraform.tree.api.block.TerraformDesertSaplingBlock; @@ -83,7 +84,7 @@ public class TerrestriaBlocks { public static FlowerPotBlock POTTED_YUCCA_PALM_SAPLING; // Volcanic Island blocks - public static ColoredFallingBlock BLACK_SAND; + public static ColoredFallingBlock VOLCANIC_SAND; public static DirtBlocks ANDISOL; public static StoneBlocks VOLCANIC_ROCK; public static PlantBlock INDIAN_PAINTBRUSH; @@ -102,19 +103,19 @@ public class TerrestriaBlocks { public static void init() { // quartered mega - CYPRESS = WoodBlocks.register("cypress", WoodColors.CYPRESS, WoodBlocks.LogSize.NORMAL, false, true, false); - HEMLOCK = WoodBlocks.register("hemlock", WoodColors.HEMLOCK, WoodBlocks.LogSize.NORMAL, false, true, true); - RAINBOW_EUCALYPTUS = WoodBlocks.register("rainbow_eucalyptus", WoodColors.RAINBOW_EUCALYPTUS, WoodBlocks.LogSize.NORMAL, false, true, false); - REDWOOD = WoodBlocks.register("redwood", WoodColors.REDWOOD, WoodBlocks.LogSize.NORMAL, false, true, true); + CYPRESS = WoodBlocks.register("cypress", WoodColors.CYPRESS, WoodBlocks.LogSize.NORMAL, false, true, false, true); + HEMLOCK = WoodBlocks.register("hemlock", WoodColors.HEMLOCK, WoodBlocks.LogSize.NORMAL, false, true, true, true); + RAINBOW_EUCALYPTUS = WoodBlocks.register("rainbow_eucalyptus", WoodColors.RAINBOW_EUCALYPTUS, WoodBlocks.LogSize.NORMAL, false, true, false, true); + REDWOOD = WoodBlocks.register("redwood", WoodColors.REDWOOD, WoodBlocks.LogSize.NORMAL, false, true, true, true); // normal trunk - JAPANESE_MAPLE = WoodBlocks.register("japanese_maple", WoodColors.JAPANESE_MAPLE); + JAPANESE_MAPLE = WoodBlocks.register("japanese_maple", WoodColors.JAPANESE_MAPLE, WoodBlocks.LogSize.NORMAL, false, false, false, false); RUBBER = WoodBlocks.register("rubber", WoodColors.RUBBER); WILLOW = WoodBlocks.register("willow", WoodColors.WILLOW); // small trunk - SAKURA = WoodBlocks.register("sakura", WoodColors.SAKURA, WoodBlocks.LogSize.SMALL, true, false, false); - YUCCA_PALM = WoodBlocks.register("yucca_palm", WoodColors.YUCCA_PALM, WoodBlocks.LogSize.SMALL); + SAKURA = WoodBlocks.register("sakura", WoodColors.SAKURA, WoodBlocks.LogSize.SMALL, true, false, false, false); + YUCCA_PALM = WoodBlocks.register("yucca_palm", WoodColors.YUCCA_PALM, WoodBlocks.LogSize.SMALL, false, false, false, false); SAGUARO_CACTUS = TerrestriaRegistry.register("saguaro_cactus", SaguaroCactusBlock::new, SaguaroCactusBlock.createSettings(Blocks.CACTUS.getDefaultMapColor())); SMALL_OAK_LOG = TerrestriaRegistry.register("small_oak_log", settings -> new SmallLogBlock(Blocks.OAK_LEAVES, settings), PillarLogHelper.createSmallLogSettings(Blocks.OAK_LEAVES, Blocks.STRIPPED_OAK_WOOD.getDefaultMapColor(), Blocks.OAK_WOOD.getDefaultMapColor())); @@ -149,17 +150,15 @@ public static void init() { // Volcanic Island blocks - BLACK_SAND = TerrestriaRegistry.register("basalt_sand", settings -> new ColoredFallingBlock(new ColorCode(0x202020), settings), AbstractBlock.Settings.copy(Blocks.SAND).mapColor(MapColor.BLACK)); - - Block andisolDirt = TerrestriaRegistry.register("basalt_dirt", Block::new, AbstractBlock.Settings.copy(Blocks.DIRT).mapColor(MapColor.BLACK)); - ANDISOL = TerraformDirtRegistry.register(new DirtBlocks ( - andisolDirt, - TerrestriaRegistry.register("basalt_grass_block", settings -> new BasaltGrassBlock(andisolDirt, () -> ANDISOL.getDirtPath(), settings), AbstractBlock.Settings.copy(Blocks.GRASS_BLOCK)), - TerrestriaRegistry.register("basalt_grass_path", TerraformDirtPathBlock::new, AbstractBlock.Settings.copy(Blocks.DIRT_PATH)), - TerrestriaRegistry.register("basalt_podzol", TerraformSnowyBlock::new, AbstractBlock.Settings.copy(Blocks.PODZOL)), - TerrestriaRegistry.register("andisol_farmland", TerraformFarmlandBlock::new, AbstractBlock.Settings.copy(Blocks.FARMLAND).mapColor(MapColor.BLACK)) - )); - VOLCANIC_ROCK = StoneBlocks.register("basalt", MapColor.BLACK); + Block andisol = TerrestriaRegistry.register("andisol", Block::new, AbstractBlock.Settings.copy(Blocks.DIRT).mapColor(MapColor.BLACK)); + TerraformDirtPathBlock andisolDirtPath = TerrestriaRegistry.register("andisol_dirt_path", TerraformDirtPathBlock::new, AbstractBlock.Settings.copy(Blocks.DIRT_PATH)); + TerraformFarmlandBlock andisolFarmland = TerrestriaRegistry.register("andisol_farmland", TerraformFarmlandBlock::new, AbstractBlock.Settings.copy(Blocks.FARMLAND).mapColor(MapColor.BLACK)); + TerraformGrassBlock andisolGrassBlock = TerrestriaRegistry.register("andisol_grass_block", settings -> new BasaltGrassBlock(andisol, () -> ANDISOL.getDirtPath(), settings), AbstractBlock.Settings.copy(Blocks.GRASS_BLOCK)); + TerraformSnowyBlock andisolPodzol = TerrestriaRegistry.register("andisol_podzol", TerraformSnowyBlock::new, AbstractBlock.Settings.copy(Blocks.PODZOL)); + ANDISOL = TerraformDirtRegistry.register(new DirtBlocks(andisol, andisolGrassBlock, andisolDirtPath, andisolPodzol, andisolFarmland)); + + VOLCANIC_ROCK = StoneBlocks.register("volcanic_rock", MapColor.BLACK); + VOLCANIC_SAND = TerrestriaRegistry.register("volcanic_sand", settings -> new ColoredFallingBlock(new ColorCode(0x202020), settings), AbstractBlock.Settings.copy(Blocks.SAND).mapColor(MapColor.BLACK)); INDIAN_PAINTBRUSH = TerrestriaRegistry.register("indian_paintbrush", settings -> new BasaltFlowerBlock(StatusEffects.SATURATION, 4, settings), AbstractBlock.Settings.copy(Blocks.POPPY).mapColor(MapColor.TERRACOTTA_ORANGE)); MONSTERAS = TerrestriaRegistry.register("monsteras", settings -> new BasaltFlowerBlock(StatusEffects.REGENERATION, 2, settings), AbstractBlock.Settings.copy(Blocks.FERN).mapColor(MapColor.GREEN)); diff --git a/common/src/main/java/com/terraformersmc/terrestria/init/TerrestriaItems.java b/common/src/main/java/com/terraformersmc/terrestria/init/TerrestriaItems.java index bcbad895..7adc78ed 100644 --- a/common/src/main/java/com/terraformersmc/terrestria/init/TerrestriaItems.java +++ b/common/src/main/java/com/terraformersmc/terrestria/init/TerrestriaItems.java @@ -50,10 +50,10 @@ public class TerrestriaItems { public static BlockItem YUCCA_PALM_SAPLING; public static StoneItems VOLCANIC_ROCK; - public static BlockItem BLACK_SAND; + public static BlockItem VOLCANIC_SAND; public static BlockItem ANDISOL; public static BlockItem ANDISOL_GRASS_BLOCK; - public static BlockItem ANDISOL_GRASS_PATH; + public static BlockItem ANDISOL_DIRT_PATH; public static BlockItem ANDISOL_PODZOL; public static BlockItem ANDISOL_FARMLAND; public static BlockItem INDIAN_PAINTBRUSH; @@ -67,7 +67,6 @@ public class TerrestriaItems { public static LogTurnerItem LOG_TURNER; public static void init() { - REDWOOD = WoodItems.register("redwood", TerrestriaBlocks.REDWOOD); HEMLOCK = WoodItems.register("hemlock", TerrestriaBlocks.HEMLOCK); RUBBER = WoodItems.register("rubber", TerrestriaBlocks.RUBBER); @@ -103,13 +102,15 @@ public static void init() { SAGUARO_CACTUS_SAPLING = TerrestriaRegistry.registerBlockItem("saguaro_cactus_sapling", TerrestriaBlocks.SAGUARO_CACTUS_SAPLING); YUCCA_PALM_SAPLING = TerrestriaRegistry.registerBlockItem("yucca_palm_sapling", TerrestriaBlocks.YUCCA_PALM_SAPLING); - VOLCANIC_ROCK = StoneItems.register("basalt", TerrestriaBlocks.VOLCANIC_ROCK); - BLACK_SAND = TerrestriaRegistry.registerBlockItem("basalt_sand", TerrestriaBlocks.BLACK_SAND); - ANDISOL = TerrestriaRegistry.registerBlockItem("basalt_dirt", TerrestriaBlocks.ANDISOL.getDirt()); + ANDISOL = TerrestriaRegistry.registerBlockItem("andisol", TerrestriaBlocks.ANDISOL.getDirt()); + ANDISOL_DIRT_PATH = TerrestriaRegistry.registerBlockItem("andisol_dirt_path", TerrestriaBlocks.ANDISOL.getDirtPath()); ANDISOL_FARMLAND = TerrestriaRegistry.registerBlockItem("andisol_farmland", TerrestriaBlocks.ANDISOL.getFarmland()); - ANDISOL_GRASS_BLOCK = TerrestriaRegistry.registerBlockItem("basalt_grass_block", TerrestriaBlocks.ANDISOL.getGrassBlock()); - ANDISOL_GRASS_PATH = TerrestriaRegistry.registerBlockItem("andisol_grass_path", TerrestriaBlocks.ANDISOL.getDirtPath()); - ANDISOL_PODZOL = TerrestriaRegistry.registerBlockItem("basalt_podzol", TerrestriaBlocks.ANDISOL.getPodzol()); + ANDISOL_GRASS_BLOCK = TerrestriaRegistry.registerBlockItem("andisol_grass_block", TerrestriaBlocks.ANDISOL.getGrassBlock()); + ANDISOL_PODZOL = TerrestriaRegistry.registerBlockItem("andisol_podzol", TerrestriaBlocks.ANDISOL.getPodzol()); + + VOLCANIC_ROCK = StoneItems.register("volcanic_rock", TerrestriaBlocks.VOLCANIC_ROCK); + VOLCANIC_SAND = TerrestriaRegistry.registerBlockItem("volcanic_sand", TerrestriaBlocks.VOLCANIC_SAND); + INDIAN_PAINTBRUSH = TerrestriaRegistry.registerBlockItem("indian_paintbrush", TerrestriaBlocks.INDIAN_PAINTBRUSH); MONSTERAS = TerrestriaRegistry.registerBlockItem("monsteras", TerrestriaBlocks.MONSTERAS); diff --git a/common/src/main/java/com/terraformersmc/terrestria/init/TerrestriaRegistryAliases.java b/common/src/main/java/com/terraformersmc/terrestria/init/TerrestriaRegistryAliases.java new file mode 100644 index 00000000..77860977 --- /dev/null +++ b/common/src/main/java/com/terraformersmc/terrestria/init/TerrestriaRegistryAliases.java @@ -0,0 +1,61 @@ +package com.terraformersmc.terrestria.init; + +import com.terraformersmc.terrestria.Terrestria; +import net.fabricmc.fabric.api.event.registry.FabricRegistry; +import net.minecraft.registry.Registries; +import net.minecraft.util.Identifier; + +import java.util.Map; + +public final class TerrestriaRegistryAliases { + @SuppressWarnings("UnnecessaryReturnStatement") + private TerrestriaRegistryAliases() { + return; + } + + // Use Fabric registry aliases to repair identifier changes + public static void init() { + // Blocks with identically ID'd items + Map BLOCKS_ITEMS = Map.ofEntries( + entry("basalt_dirt", "andisol"), + entry("basalt_grass_path", "andisol_dirt_path"), + entry("basalt_grass_block", "andisol_grass_block"), + entry("basalt_podzol", "andisol_podzol"), + entry("chiseled_basalt_bricks", "chiseled_volcanic_rock_bricks"), + entry("cracked_basalt_bricks", "cracked_volcanic_rock_bricks"), + entry("mossy_basalt_brick_slab", "mossy_volcanic_rock_brick_slab"), + entry("mossy_basalt_brick_stairs", "mossy_volcanic_rock_brick_stairs"), + entry("mossy_basalt_brick_wall", "mossy_volcanic_rock_brick_wall"), + entry("mossy_basalt_bricks", "mossy_volcanic_rock_bricks"), + entry("mossy_basalt_cobblestone", "mossy_volcanic_rock_cobblestone"), + entry("mossy_basalt_cobblestone_slab", "mossy_volcanic_rock_cobblestone_slab"), + entry("mossy_basalt_cobblestone_stairs", "mossy_volcanic_rock_cobblestone_stairs"), + entry("mossy_basalt_cobblestone_wall", "mossy_volcanic_rock_cobblestone_wall"), + entry("smooth_basalt", "smooth_volcanic_rock"), + entry("smooth_basalt_slab", "smooth_volcanic_rock_slab"), + entry("smooth_basalt_stairs", "smooth_volcanic_rock_stairs"), + entry("smooth_basalt_wall", "smooth_volcanic_rock_wall"), + entry("basalt", "volcanic_rock"), + entry("basalt_brick_slab", "volcanic_rock_brick_slab"), + entry("basalt_brick_stairs", "volcanic_rock_brick_stairs"), + entry("basalt_brick_wall", "volcanic_rock_brick_wall"), + entry("basalt_bricks", "volcanic_rock_bricks"), + entry("basalt_button", "volcanic_rock_button"), + entry("basalt_cobblestone", "volcanic_rock_cobblestone"), + entry("basalt_cobblestone_slab", "volcanic_rock_cobblestone_slab"), + entry("basalt_cobblestone_stairs", "volcanic_rock_cobblestone_stairs"), + entry("basalt_cobblestone_wall", "volcanic_rock_cobblestone_wall"), + entry("basalt_pressure_plate", "volcanic_rock_pressure_plate"), + entry("basalt_slab", "volcanic_rock_slab"), + entry("basalt_stairs", "volcanic_rock_stairs"), + entry("basalt_wall", "volcanic_rock_wall"), + entry("basalt_sand", "volcanic_sand") + ); + BLOCKS_ITEMS.forEach(((FabricRegistry) Registries.BLOCK)::addAlias); + BLOCKS_ITEMS.forEach(((FabricRegistry) Registries.ITEM)::addAlias); + } + + private static Map.Entry entry(String oldName, String newName) { + return Map.entry(Identifier.of(Terrestria.MOD_ID, oldName), Identifier.of(Terrestria.MOD_ID, newName)); + } +} diff --git a/common/src/main/java/com/terraformersmc/terrestria/init/helpers/TerrestriaRegistry.java b/common/src/main/java/com/terraformersmc/terrestria/init/helpers/TerrestriaRegistry.java index 9b2ca4a0..043e4cbf 100644 --- a/common/src/main/java/com/terraformersmc/terrestria/init/helpers/TerrestriaRegistry.java +++ b/common/src/main/java/com/terraformersmc/terrestria/init/helpers/TerrestriaRegistry.java @@ -26,17 +26,22 @@ private TerrestriaRegistry() { /** * Registers a block item and associates it with its block. * + * This method applies {@code settings.useBlockPrefixedTranslationKey()}. + * * @param name Name ({@link Identifier} path string) of the block item * @param block {@link Block} to associate to the block item * @return Newly created {@link BlockItem} */ public static BlockItem registerBlockItem(String name, Block block) { - return register(name, settings -> new BlockItem(block, settings), new Item.Settings()); + return register(name, settings -> new BlockItem(block, settings), new Item.Settings().useBlockPrefixedTranslationKey()); } /** * Registers an item. * + * When using this method directly, the caller should apply + * {@code settings.useBlockPrefixedTranslationKey()} if desired. + * * @param name Name ({@link Identifier} path string) of the item * @param factory Factory function to create {@link Item} from settings * @param settings {@link Item.Settings} of the item diff --git a/common/src/main/java/com/terraformersmc/terrestria/init/helpers/WoodBlocks.java b/common/src/main/java/com/terraformersmc/terrestria/init/helpers/WoodBlocks.java index 32bbf1fb..1b5e981b 100644 --- a/common/src/main/java/com/terraformersmc/terrestria/init/helpers/WoodBlocks.java +++ b/common/src/main/java/com/terraformersmc/terrestria/init/helpers/WoodBlocks.java @@ -22,6 +22,8 @@ public class WoodBlocks { private final WoodColors COLORS; private final LogSize SIZE; + private final boolean tintable; + public final Block log; public final Block quarterLog; public final Block wood; @@ -44,7 +46,9 @@ public class WoodBlocks { public final Block strippedQuarterLog; public final Block strippedWood; - private WoodBlocks(String name, WoodColors colors, LogSize size, boolean hasLeafPile, boolean hasQuarterLog, boolean usesExtendedLeaves) { + private WoodBlocks(String name, WoodColors colors, LogSize size, boolean hasLeafPile, boolean hasQuarterLog, boolean usesExtendedLeaves, boolean isTintable) { + this.tintable = isTintable; + this.NAME = name; this.COLORS = colors; this.SIZE = size; @@ -118,8 +122,8 @@ private WoodBlocks(String name, WoodColors colors, LogSize size, boolean hasLeaf } } - public static WoodBlocks register(String name, WoodColors colors, LogSize size, boolean hasLeafPile, boolean hasQuarteredLog, boolean usesExtendedLeaves) { - WoodBlocks blocks = new WoodBlocks(name, colors, size, hasLeafPile, hasQuarteredLog, usesExtendedLeaves); + public static WoodBlocks register(String name, WoodColors colors, LogSize size, boolean hasLeafPile, boolean hasQuarteredLog, boolean usesExtendedLeaves, boolean isTintable) { + WoodBlocks blocks = new WoodBlocks(name, colors, size, hasLeafPile, hasQuarteredLog, usesExtendedLeaves, isTintable); blocks.addFlammables(); blocks.addStrippables(); @@ -128,7 +132,7 @@ public static WoodBlocks register(String name, WoodColors colors, LogSize size, } public static WoodBlocks register(String name, WoodColors colors, LogSize size) { - return register(name, colors, size, false, false, false); + return register(name, colors, size, false, false, false, true); } public static WoodBlocks register(String name, WoodColors colors) { @@ -199,6 +203,10 @@ public boolean hasWood() { return (wood != null && strippedWood != null); } + public boolean isTintable() { + return tintable; + } + public enum LogSize { NORMAL("normal"), SMALL("small"); diff --git a/common/src/main/java/com/terraformersmc/terrestria/init/helpers/WoodItems.java b/common/src/main/java/com/terraformersmc/terrestria/init/helpers/WoodItems.java index ada6d851..db5224c9 100644 --- a/common/src/main/java/com/terraformersmc/terrestria/init/helpers/WoodItems.java +++ b/common/src/main/java/com/terraformersmc/terrestria/init/helpers/WoodItems.java @@ -51,8 +51,8 @@ private WoodItems(String name, WoodBlocks blocks) { button = TerrestriaRegistry.registerBlockItem(name + "_button", blocks.button); pressurePlate = TerrestriaRegistry.registerBlockItem(name + "_pressure_plate", blocks.pressurePlate); trapdoor = TerrestriaRegistry.registerBlockItem(name + "_trapdoor", blocks.trapdoor); - sign = TerrestriaRegistry.register(name + "_sign", settings -> new SignItem(blocks.sign, blocks.wallSign, settings), new Item.Settings().maxCount(16)); - hangingSign = TerrestriaRegistry.register(name + "_hanging_sign", settings -> new HangingSignItem(blocks.hangingSign, blocks.wallHangingSign, settings), new Item.Settings().maxCount(16)); + sign = TerrestriaRegistry.register(name + "_sign", settings -> new SignItem(blocks.sign, blocks.wallSign, settings), new Item.Settings().maxCount(16).useBlockPrefixedTranslationKey()); + hangingSign = TerrestriaRegistry.register(name + "_hanging_sign", settings -> new HangingSignItem(blocks.hangingSign, blocks.wallHangingSign, settings), new Item.Settings().maxCount(16).useBlockPrefixedTranslationKey()); strippedLog = TerrestriaRegistry.registerBlockItem("stripped_" + name + "_log", blocks.strippedLog); Identifier family = Identifier.of(Terrestria.MOD_ID, name); diff --git a/common/src/main/java/com/terraformersmc/terrestria/item/TerrestriaItemGroups.java b/common/src/main/java/com/terraformersmc/terrestria/item/TerrestriaItemGroups.java index 8a78b7b9..7671c926 100644 --- a/common/src/main/java/com/terraformersmc/terrestria/item/TerrestriaItemGroups.java +++ b/common/src/main/java/com/terraformersmc/terrestria/item/TerrestriaItemGroups.java @@ -66,7 +66,7 @@ public class TerrestriaItemGroups { addGroupEntry(TerrestriaBlocks.SMALL_OAK_LOG, ItemGroups.NATURAL, Items.OAK_LOG); // Sand and Sandstone - addGroupEntry(TerrestriaBlocks.BLACK_SAND, ItemGroups.NATURAL, NATURAL_SAND); + addGroupEntry(TerrestriaBlocks.VOLCANIC_SAND, ItemGroups.NATURAL, NATURAL_SAND); // Leaves addGroupEntry(TerrestriaBlocks.DARK_JAPANESE_MAPLE_LEAVES, ItemGroups.NATURAL, NATURAL_LEAVES); diff --git a/gradle.properties b/gradle.properties index 266f195b..9f17d6d4 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,22 +3,22 @@ org.gradle.jvmargs=-Xmx1G maven_group=com.terraformersmc archive_name=terrestria -minecraft_version=1.21.2 -yarn_mappings=1.21.2+build.1 -loader_version=0.16.7 -fabric_version=0.106.1+1.21.2 +minecraft_version=1.21.4 +yarn_mappings=1.21.4+build.2 +loader_version=0.16.9 +fabric_version=0.113.0+1.21.4 # Terraform modules -terraform_biome_remapper_api_version=12.0.0-alpha.2 -terraform_config_api_version=12.0.0-alpha.2 -terraform_dirt_version=12.0.0-alpha.2 -terraform_shapes_api_version=12.0.0-alpha.2 -terraform_surfaces_api_version=12.0.0-alpha.2 -terraform_tree_api_version=12.0.0-alpha.2 -terraform_wood_api_version=12.0.0-alpha.2 +terraform_biome_remapper_api_version=13.0.0-alpha.2 +terraform_config_api_version=13.0.0-alpha.2 +terraform_dirt_version=13.0.0-alpha.2 +terraform_shapes_api_version=13.0.0-alpha.2 +terraform_surfaces_api_version=13.0.0-alpha.2 +terraform_tree_api_version=13.0.0-alpha.2 +terraform_wood_api_version=13.0.0-alpha.2 # Biolith for worldgen module and testing -biolith_version=3.1.0 +biolith_version=3.2.0 # Project Metadata project_name=Terrestria @@ -32,14 +32,14 @@ default_release_type=alpha # CurseForge Metadata curseforge_slug=terrestria curseforge_id=323974 -curseforge_game_versions=1.21.2, 1.21.3, Fabric, Quilt +curseforge_game_versions=1.21.4, Fabric, Quilt curseforge_required_dependencies=fabric-api curseforge_optional_dependencies= # Modrinth Metadata modrinth_slug=terrestria modrinth_id=lsUDPMOT -modrinth_game_versions=1.21.2, 1.21.3 +modrinth_game_versions=1.21.4 modrinth_mod_loaders=fabric, quilt modrinth_required_dependencies=fabric-api #modrinth_embedded_dependencies=biolith diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar index 7454180f..e6441136 100644 Binary files a/gradle/wrapper/gradle-wrapper.jar and b/gradle/wrapper/gradle-wrapper.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 0d184210..94113f20 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,7 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.11-bin.zip +networkTimeout=10000 +validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/gradlew b/gradlew index c53aefaa..b740cf13 100755 --- a/gradlew +++ b/gradlew @@ -1,7 +1,7 @@ #!/bin/sh # -# Copyright 2015-2021 the original authors. +# Copyright © 2015-2021 the original authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -32,10 +32,10 @@ # Busybox and similar reduced shells will NOT work, because this script # requires all of these POSIX shell features: # * functions; -# * expansions $var, ${var}, ${var:-default}, ${var+SET}, -# ${var#prefix}, ${var%suffix}, and $( cmd ); -# * compound commands having a testable exit status, especially case; -# * various built-in commands including command, set, and ulimit. +# * expansions «$var», «${var}», «${var:-default}», «${var+SET}», +# «${var#prefix}», «${var%suffix}», and «$( cmd )»; +# * compound commands having a testable exit status, especially «case»; +# * various built-in commands including «command», «set», and «ulimit». # # Important for patching: # @@ -55,7 +55,7 @@ # Darwin, MinGW, and NonStop. # # (3) This script is generated from the Groovy template -# https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt +# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt # within the Gradle project. # # You can find Gradle at https://github.com/gradle/gradle/. @@ -80,13 +80,11 @@ do esac done -APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit - -APP_NAME="Gradle" +# This is normally unused +# shellcheck disable=SC2034 APP_BASE_NAME=${0##*/} - -# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' +# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036) +APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit # Use the maximum available, or set MAX_FD != -1 to use that value. MAX_FD=maximum @@ -133,22 +131,29 @@ location of your Java installation." fi else JAVACMD=java - which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + if ! command -v java >/dev/null 2>&1 + then + die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. Please set the JAVA_HOME variable in your environment to match the location of your Java installation." + fi fi # Increase the maximum file descriptors if we can. if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then case $MAX_FD in #( max*) + # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 MAX_FD=$( ulimit -H -n ) || warn "Could not query maximum file descriptor limit" esac case $MAX_FD in #( '' | soft) :;; #( *) + # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 ulimit -n "$MAX_FD" || warn "Could not set maximum file descriptor limit to $MAX_FD" esac @@ -193,11 +198,15 @@ if "$cygwin" || "$msys" ; then done fi -# Collect all arguments for the java command; -# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of -# shell script including quotes and variable substitutions, so put them in -# double quotes to make sure that they get re-expanded; and -# * put everything else in single quotes, so that it's not re-expanded. + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Collect all arguments for the java command: +# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments, +# and any embedded shellness will be escaped. +# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be +# treated as '${Hostname}' itself on the command line. set -- \ "-Dorg.gradle.appname=$APP_BASE_NAME" \ @@ -205,6 +214,12 @@ set -- \ org.gradle.wrapper.GradleWrapperMain \ "$@" +# Stop when "xargs" is not available. +if ! command -v xargs >/dev/null 2>&1 +then + die "xargs is not available" +fi + # Use "xargs" to parse quoted args. # # With -n1 it outputs one arg per line, with the quotes and backslashes removed. diff --git a/gradlew.bat b/gradlew.bat index ac1b06f9..7101f8e4 100644 --- a/gradlew.bat +++ b/gradlew.bat @@ -14,7 +14,7 @@ @rem limitations under the License. @rem -@if "%DEBUG%" == "" @echo off +@if "%DEBUG%"=="" @echo off @rem ########################################################################## @rem @rem Gradle startup script for Windows @@ -25,7 +25,8 @@ if "%OS%"=="Windows_NT" setlocal set DIRNAME=%~dp0 -if "%DIRNAME%" == "" set DIRNAME=. +if "%DIRNAME%"=="" set DIRNAME=. +@rem This is normally unused set APP_BASE_NAME=%~n0 set APP_HOME=%DIRNAME% @@ -40,13 +41,13 @@ if defined JAVA_HOME goto findJavaFromJavaHome set JAVA_EXE=java.exe %JAVA_EXE% -version >NUL 2>&1 -if "%ERRORLEVEL%" == "0" goto execute +if %ERRORLEVEL% equ 0 goto execute -echo. -echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. +echo. 1>&2 +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 goto fail @@ -56,11 +57,11 @@ set JAVA_EXE=%JAVA_HOME%/bin/java.exe if exist "%JAVA_EXE%" goto execute -echo. -echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. +echo. 1>&2 +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 goto fail @@ -75,13 +76,15 @@ set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar :end @rem End local scope for the variables with windows NT shell -if "%ERRORLEVEL%"=="0" goto mainEnd +if %ERRORLEVEL% equ 0 goto mainEnd :fail rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of rem the _cmd.exe /c_ return code! -if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 -exit /b 1 +set EXIT_CODE=%ERRORLEVEL% +if %EXIT_CODE% equ 0 set EXIT_CODE=1 +if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE% +exit /b %EXIT_CODE% :mainEnd if "%OS%"=="Windows_NT" endlocal diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index f28ef03c..c0a2ecee 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -30,7 +30,7 @@ "depends": { "fabricloader": ">=0.15.3", "fabric-api": ">=0.97.0", - "minecraft": ">=1.21.2 <1.22", + "minecraft": ">=1.21.4 <1.22", "java": ">=21" } } diff --git a/worldgen/src/main/java/com/terraformersmc/terrestria/surfacebuilders/TerrestriaSurfaceBuilders.java b/worldgen/src/main/java/com/terraformersmc/terrestria/surfacebuilders/TerrestriaSurfaceBuilders.java index c7a89d40..f456e298 100644 --- a/worldgen/src/main/java/com/terraformersmc/terrestria/surfacebuilders/TerrestriaSurfaceBuilders.java +++ b/worldgen/src/main/java/com/terraformersmc/terrestria/surfacebuilders/TerrestriaSurfaceBuilders.java @@ -36,7 +36,7 @@ public static void init() { TerrestriaBlocks.ANDISOL.getGrassBlock().getDefaultState(), TerrestriaBlocks.ANDISOL.getDirt().getDefaultState(), TerrestriaBlocks.VOLCANIC_ROCK.plain.full.getDefaultState(), - TerrestriaBlocks.BLACK_SAND.getDefaultState(), + TerrestriaBlocks.VOLCANIC_SAND.getDefaultState(), Blocks.SAND.getDefaultState() ).setBiomeKey(TerrestriaBiomes.VOLCANIC_ISLAND)); }