fix git fuckup
							
								
								
									
										10
									
								
								src/main/java/com/example/examplemod/ExampleMod.java → src/main/java/com/jenny/compressedblocks/CompressedBlocks.java
									
									
									
									
									
										
										
										Normal file → Executable file
									
								
							
							
						
						@ -2,12 +2,18 @@ package com.jenny.compressedblocks;
 | 
			
		||||
 | 
			
		||||
import com.mojang.logging.LogUtils;
 | 
			
		||||
import net.minecraft.client.Minecraft;
 | 
			
		||||
import net.minecraft.client.resources.model.Material;
 | 
			
		||||
import net.minecraft.core.registries.Registries;
 | 
			
		||||
import net.minecraft.network.chat.Component;
 | 
			
		||||
import net.minecraft.world.flag.FeatureFlag;
 | 
			
		||||
import net.minecraft.world.flag.FeatureFlagSet;
 | 
			
		||||
import net.minecraft.world.flag.FeatureFlags;
 | 
			
		||||
import net.minecraft.world.item.*;
 | 
			
		||||
import net.minecraft.world.level.block.Block;
 | 
			
		||||
import net.minecraft.world.level.block.Blocks;
 | 
			
		||||
import net.minecraft.world.level.block.IronBarsBlock;
 | 
			
		||||
import net.minecraft.world.level.block.state.BlockBehaviour;
 | 
			
		||||
import net.minecraft.world.level.block.state.properties.NoteBlockInstrument;
 | 
			
		||||
import net.minecraft.world.level.material.MapColor;
 | 
			
		||||
import net.minecraftforge.api.distmarker.Dist;
 | 
			
		||||
import net.minecraftforge.common.MinecraftForge;
 | 
			
		||||
@ -97,9 +103,9 @@ public class CompressedBlocks
 | 
			
		||||
    public static final RegistryObject<Block> GRANITE_4X = BLOCKS.register("granite_4x", () -> new Block(BlockBehaviour.Properties.of().mapColor(MapColor.NONE).strength(5.0F, 11.0F).requiresCorrectToolForDrops()));
 | 
			
		||||
    public static final RegistryObject<Item> GRANITE_4X_ITEM = ITEMS.register("granite_4x", () -> new BlockItem(GRANITE_4X.get(), new Item.Properties()));
 | 
			
		||||
 | 
			
		||||
    /* Combined Blocks */
 | 
			
		||||
    /* Combined blocks */
 | 
			
		||||
 | 
			
		||||
    public static final RegistryObject<Block> CBLOCK_MINING= BLOCKS.register("cblock_mining", () -> new Block(BlockBehaviour.Properties.of().mapColor(MapColor.NONE).strength(6.0F, 12.0F).requiresCorrectToolForDrops()));
 | 
			
		||||
    public static final RegistryObject<Block> CBLOCK_MINING = BLOCKS.register("cblock_mining", () -> new Block(BlockBehaviour.Properties.of().mapColor(MapColor.NONE).strength(5.0F, 11.0F).requiresCorrectToolForDrops()));
 | 
			
		||||
    public static final RegistryObject<Item> CBLOCK_MINING_ITEM = ITEMS.register("cblock_mining", () -> new BlockItem(CBLOCK_MINING.get(), new Item.Properties()));
 | 
			
		||||
 | 
			
		||||
    // Creates a creative tab with the id "examplemod:example_tab" for the example item, that is placed after the combat tab
 | 
			
		||||
							
								
								
									
										5
									
								
								src/main/java/com/example/examplemod/Config.java → src/main/java/com/jenny/compressedblocks/Config.java
									
									
									
									
									
										
										
										Normal file → Executable file
									
								
							
							
						
						@ -1,4 +1,4 @@
 | 
			
		||||
package com.example.examplemod;
 | 
			
		||||
package com.jenny.compressedblocks;
 | 
			
		||||
 | 
			
		||||
import net.minecraft.resources.ResourceLocation;
 | 
			
		||||
import net.minecraft.world.item.Item;
 | 
			
		||||
@ -8,14 +8,13 @@ import net.minecraftforge.fml.common.Mod;
 | 
			
		||||
import net.minecraftforge.fml.event.config.ModConfigEvent;
 | 
			
		||||
import net.minecraftforge.registries.ForgeRegistries;
 | 
			
		||||
 | 
			
		||||
import java.util.Collections;
 | 
			
		||||
import java.util.List;
 | 
			
		||||
import java.util.Set;
 | 
			
		||||
import java.util.stream.Collectors;
 | 
			
		||||
 | 
			
		||||
// An example config class. This is not required, but it's a good idea to have one to keep your config organized.
 | 
			
		||||
// Demonstrates how to use Forge's config APIs
 | 
			
		||||
@Mod.EventBusSubscriber(modid = ExampleMod.MODID, bus = Mod.EventBusSubscriber.Bus.MOD)
 | 
			
		||||
@Mod.EventBusSubscriber(modid = CompressedBlocks.MODID, bus = Mod.EventBusSubscriber.Bus.MOD)
 | 
			
		||||
public class Config
 | 
			
		||||
{
 | 
			
		||||
    private static final ForgeConfigSpec.Builder BUILDER = new ForgeConfigSpec.Builder();
 | 
			
		||||
							
								
								
									
										6
									
								
								src/main/resources/assets/compressedblocks/blockstates/andesite_1x.json
									
									
									
									
									
										Executable file
									
								
							
							
						
						@ -0,0 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "variants": {
 | 
			
		||||
    "": {
 | 
			
		||||
      "model": "compressedblocks:block/andesite_1x"}
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										6
									
								
								src/main/resources/assets/compressedblocks/blockstates/andesite_2x.json
									
									
									
									
									
										Executable file
									
								
							
							
						
						@ -0,0 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "variants": {
 | 
			
		||||
    "": {
 | 
			
		||||
      "model": "compressedblocks:block/andesite_2x"}
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										6
									
								
								src/main/resources/assets/compressedblocks/blockstates/andesite_3x.json
									
									
									
									
									
										Executable file
									
								
							
							
						
						@ -0,0 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "variants": {
 | 
			
		||||
    "": {
 | 
			
		||||
      "model": "compressedblocks:block/andesite_3x"}
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										6
									
								
								src/main/resources/assets/compressedblocks/blockstates/andesite_4x.json
									
									
									
									
									
										Executable file
									
								
							
							
						
						@ -0,0 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "variants": {
 | 
			
		||||
    "": {
 | 
			
		||||
      "model": "compressedblocks:block/andesite_4x"}
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
@ -0,0 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "variants": {
 | 
			
		||||
    "": {
 | 
			
		||||
      "model": "compressedblocks:block/cobblestone_1x"}
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
@ -0,0 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "variants": {
 | 
			
		||||
    "": {
 | 
			
		||||
      "model": "compressedblocks:block/cobblestone_2x"}
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
@ -0,0 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "variants": {
 | 
			
		||||
    "": {
 | 
			
		||||
      "model": "compressedblocks:block/cobblestone_3x"}
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
@ -0,0 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "variants": {
 | 
			
		||||
    "": {
 | 
			
		||||
      "model": "compressedblocks:block/cobblestone_4x"}
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										6
									
								
								src/main/resources/assets/compressedblocks/blockstates/diorite_1x.json
									
									
									
									
									
										Executable file
									
								
							
							
						
						@ -0,0 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "variants": {
 | 
			
		||||
    "": {
 | 
			
		||||
      "model": "compressedblocks:block/diorite_1x"}
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										6
									
								
								src/main/resources/assets/compressedblocks/blockstates/diorite_2x.json
									
									
									
									
									
										Executable file
									
								
							
							
						
						@ -0,0 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "variants": {
 | 
			
		||||
    "": {
 | 
			
		||||
      "model": "compressedblocks:block/diorite_2x"}
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										6
									
								
								src/main/resources/assets/compressedblocks/blockstates/diorite_3x.json
									
									
									
									
									
										Executable file
									
								
							
							
						
						@ -0,0 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "variants": {
 | 
			
		||||
    "": {
 | 
			
		||||
      "model": "compressedblocks:block/diorite_3x"}
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										6
									
								
								src/main/resources/assets/compressedblocks/blockstates/diorite_4x.json
									
									
									
									
									
										Executable file
									
								
							
							
						
						@ -0,0 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "variants": {
 | 
			
		||||
    "": {
 | 
			
		||||
      "model": "compressedblocks:block/diorite_4x"}
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										6
									
								
								src/main/resources/assets/compressedblocks/blockstates/granite_1x.json
									
									
									
									
									
										Executable file
									
								
							
							
						
						@ -0,0 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "variants": {
 | 
			
		||||
    "": {
 | 
			
		||||
      "model": "compressedblocks:block/granite_1x"}
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										6
									
								
								src/main/resources/assets/compressedblocks/blockstates/granite_2x.json
									
									
									
									
									
										Executable file
									
								
							
							
						
						@ -0,0 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "variants": {
 | 
			
		||||
    "": {
 | 
			
		||||
      "model": "compressedblocks:block/granite_2x"}
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										6
									
								
								src/main/resources/assets/compressedblocks/blockstates/granite_3x.json
									
									
									
									
									
										Executable file
									
								
							
							
						
						@ -0,0 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "variants": {
 | 
			
		||||
    "": {
 | 
			
		||||
      "model": "compressedblocks:block/granite_3x"}
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										6
									
								
								src/main/resources/assets/compressedblocks/blockstates/granite_4x.json
									
									
									
									
									
										Executable file
									
								
							
							
						
						@ -0,0 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "variants": {
 | 
			
		||||
    "": {
 | 
			
		||||
      "model": "compressedblocks:block/granite_4x"}
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										6
									
								
								src/main/resources/assets/compressedblocks/models/block/andesite_1x.json
									
									
									
									
									
										Executable file
									
								
							
							
						
						@ -0,0 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "parent": "minecraft:block/cube_all",
 | 
			
		||||
  "textures": {
 | 
			
		||||
    "all": "compressedblocks:block/andesite_1x"
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										6
									
								
								src/main/resources/assets/compressedblocks/models/block/andesite_2x.json
									
									
									
									
									
										Executable file
									
								
							
							
						
						@ -0,0 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "parent": "minecraft:block/cube_all",
 | 
			
		||||
  "textures": {
 | 
			
		||||
    "all": "compressedblocks:block/andesite_2x"
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										6
									
								
								src/main/resources/assets/compressedblocks/models/block/andesite_3x.json
									
									
									
									
									
										Executable file
									
								
							
							
						
						@ -0,0 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "parent": "minecraft:block/cube_all",
 | 
			
		||||
  "textures": {
 | 
			
		||||
    "all": "compressedblocks:block/andesite_3x"
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										6
									
								
								src/main/resources/assets/compressedblocks/models/block/andesite_4x.json
									
									
									
									
									
										Executable file
									
								
							
							
						
						@ -0,0 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "parent": "minecraft:block/cube_all",
 | 
			
		||||
  "textures": {
 | 
			
		||||
    "all": "compressedblocks:block/andesite_4x"
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
@ -0,0 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "parent": "minecraft:block/cube_all",
 | 
			
		||||
  "textures": {
 | 
			
		||||
    "all": "compressedblocks:block/cobblestone_1x"
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
@ -0,0 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "parent": "minecraft:block/cube_all",
 | 
			
		||||
  "textures": {
 | 
			
		||||
    "all": "compressedblocks:block/cobblestone_2x"
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
@ -0,0 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "parent": "minecraft:block/cube_all",
 | 
			
		||||
  "textures": {
 | 
			
		||||
    "all": "compressedblocks:block/cobblestone_3x"
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
@ -0,0 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "parent": "minecraft:block/cube_all",
 | 
			
		||||
  "textures": {
 | 
			
		||||
    "all": "compressedblocks:block/cobblestone_4x"
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
@ -1,6 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "parent": "minecraft:block/cube_all",
 | 
			
		||||
  "textures": {
 | 
			
		||||
    "all": "examplemod:block/cobblestone_1x"
 | 
			
		||||
    "all": "compressedblocks:block/diorite_1x"
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
@ -1,6 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "parent": "minecraft:block/cube_all",
 | 
			
		||||
  "textures": {
 | 
			
		||||
    "all": "examplemod:block/cobblestone_2x"
 | 
			
		||||
    "all": "compressedblocks:block/diorite_2x"
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
@ -1,6 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "parent": "minecraft:block/cube_all",
 | 
			
		||||
  "textures": {
 | 
			
		||||
    "all": "examplemod:block/cobblestone_3x"
 | 
			
		||||
    "all": "compressedblocks:block/diorite_3x"
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
@ -1,6 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "parent": "minecraft:block/cube_all",
 | 
			
		||||
  "textures": {
 | 
			
		||||
    "all": "examplemod:block/cobblestone_4x"
 | 
			
		||||
    "all": "compressedblocks:block/diorite_4x"
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										6
									
								
								src/main/resources/assets/compressedblocks/models/block/granite_1x.json
									
									
									
									
									
										Executable file
									
								
							
							
						
						@ -0,0 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "parent": "minecraft:block/cube_all",
 | 
			
		||||
  "textures": {
 | 
			
		||||
    "all": "compressedblocks:block/granite_1x"
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										6
									
								
								src/main/resources/assets/compressedblocks/models/block/granite_2x.json
									
									
									
									
									
										Executable file
									
								
							
							
						
						@ -0,0 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "parent": "minecraft:block/cube_all",
 | 
			
		||||
  "textures": {
 | 
			
		||||
    "all": "compressedblocks:block/granite_2x"
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										6
									
								
								src/main/resources/assets/compressedblocks/models/block/granite_3x.json
									
									
									
									
									
										Executable file
									
								
							
							
						
						@ -0,0 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "parent": "minecraft:block/cube_all",
 | 
			
		||||
  "textures": {
 | 
			
		||||
    "all": "compressedblocks:block/granite_3x"
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										6
									
								
								src/main/resources/assets/compressedblocks/models/block/granite_4x.json
									
									
									
									
									
										Executable file
									
								
							
							
						
						@ -0,0 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "parent": "minecraft:block/cube_all",
 | 
			
		||||
  "textures": {
 | 
			
		||||
    "all": "compressedblocks:block/granite_4x"
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										3
									
								
								src/main/resources/assets/compressedblocks/models/item/andesite_1x.json
									
									
									
									
									
										Executable file
									
								
							
							
						
						@ -0,0 +1,3 @@
 | 
			
		||||
{
 | 
			
		||||
  "parent": "compressedblocks:block/andesite_1x"
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										3
									
								
								src/main/resources/assets/compressedblocks/models/item/andesite_2x.json
									
									
									
									
									
										Executable file
									
								
							
							
						
						@ -0,0 +1,3 @@
 | 
			
		||||
{
 | 
			
		||||
  "parent": "compressedblocks:block/andesite_2x"
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										3
									
								
								src/main/resources/assets/compressedblocks/models/item/andesite_3x.json
									
									
									
									
									
										Executable file
									
								
							
							
						
						@ -0,0 +1,3 @@
 | 
			
		||||
{
 | 
			
		||||
  "parent": "compressedblocks:block/andesite_3x"
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										3
									
								
								src/main/resources/assets/compressedblocks/models/item/andesite_4x.json
									
									
									
									
									
										Executable file
									
								
							
							
						
						@ -0,0 +1,3 @@
 | 
			
		||||
{
 | 
			
		||||
  "parent": "compressedblocks:block/andesite_4x"
 | 
			
		||||
}
 | 
			
		||||
@ -0,0 +1,3 @@
 | 
			
		||||
{
 | 
			
		||||
  "parent": "compressedblocks:block/cobblestone_1x"
 | 
			
		||||
}
 | 
			
		||||
@ -0,0 +1,3 @@
 | 
			
		||||
{
 | 
			
		||||
  "parent": "compressedblocks:block/cobblestone_2x"
 | 
			
		||||
}
 | 
			
		||||
@ -0,0 +1,3 @@
 | 
			
		||||
{
 | 
			
		||||
  "parent": "compressedblocks:block/cobblestone_3x"
 | 
			
		||||
}
 | 
			
		||||
@ -0,0 +1,3 @@
 | 
			
		||||
{
 | 
			
		||||
  "parent": "compressedblocks:block/cobblestone_4x"
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										3
									
								
								src/main/resources/assets/compressedblocks/models/item/diorite_1x.json
									
									
									
									
									
										Executable file
									
								
							
							
						
						@ -0,0 +1,3 @@
 | 
			
		||||
{
 | 
			
		||||
  "parent": "compressedblocks:block/diorite_1x"
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										3
									
								
								src/main/resources/assets/compressedblocks/models/item/diorite_2x.json
									
									
									
									
									
										Executable file
									
								
							
							
						
						@ -0,0 +1,3 @@
 | 
			
		||||
{
 | 
			
		||||
  "parent": "compressedblocks:block/diorite_2x"
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										3
									
								
								src/main/resources/assets/compressedblocks/models/item/diorite_3x.json
									
									
									
									
									
										Executable file
									
								
							
							
						
						@ -0,0 +1,3 @@
 | 
			
		||||
{
 | 
			
		||||
  "parent": "compressedblocks:block/diorite_3x"
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										3
									
								
								src/main/resources/assets/compressedblocks/models/item/diorite_4x.json
									
									
									
									
									
										Executable file
									
								
							
							
						
						@ -0,0 +1,3 @@
 | 
			
		||||
{
 | 
			
		||||
  "parent": "compressedblocks:block/diorite_4x"
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										3
									
								
								src/main/resources/assets/compressedblocks/models/item/granite_1x.json
									
									
									
									
									
										Executable file
									
								
							
							
						
						@ -0,0 +1,3 @@
 | 
			
		||||
{
 | 
			
		||||
  "parent": "compressedblocks:block/granite_1x"
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										3
									
								
								src/main/resources/assets/compressedblocks/models/item/granite_2x.json
									
									
									
									
									
										Executable file
									
								
							
							
						
						@ -0,0 +1,3 @@
 | 
			
		||||
{
 | 
			
		||||
  "parent": "compressedblocks:block/granite_2x"
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										3
									
								
								src/main/resources/assets/compressedblocks/models/item/granite_3x.json
									
									
									
									
									
										Executable file
									
								
							
							
						
						@ -0,0 +1,3 @@
 | 
			
		||||
{
 | 
			
		||||
  "parent": "compressedblocks:block/granite_3x"
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										3
									
								
								src/main/resources/assets/compressedblocks/models/item/granite_4x.json
									
									
									
									
									
										Executable file
									
								
							
							
						
						@ -0,0 +1,3 @@
 | 
			
		||||
{
 | 
			
		||||
  "parent": "compressedblocks:block/granite_4x"
 | 
			
		||||
}
 | 
			
		||||
@ -1,6 +0,0 @@
 | 
			
		||||
{
 | 
			
		||||
  "variants": {
 | 
			
		||||
    "": {
 | 
			
		||||
      "model": "examplemod:block/cobblestone_1x"}
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
@ -1,6 +0,0 @@
 | 
			
		||||
{
 | 
			
		||||
  "variants": {
 | 
			
		||||
    "": {
 | 
			
		||||
      "model": "examplemod:block/cobblestone_2x"}
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
@ -1,6 +0,0 @@
 | 
			
		||||
{
 | 
			
		||||
  "variants": {
 | 
			
		||||
    "": {
 | 
			
		||||
      "model": "examplemod:block/cobblestone_3x"}
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
@ -1,6 +0,0 @@
 | 
			
		||||
{
 | 
			
		||||
  "variants": {
 | 
			
		||||
    "": {
 | 
			
		||||
      "model": "examplemod:block/cobblestone_4x"}
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
@ -1,6 +0,0 @@
 | 
			
		||||
{
 | 
			
		||||
  "variants": {
 | 
			
		||||
    "": {
 | 
			
		||||
      "model": "examplemod:block/cobblestone_5x"}
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
@ -1,6 +0,0 @@
 | 
			
		||||
{
 | 
			
		||||
  "variants": {
 | 
			
		||||
    "": {
 | 
			
		||||
      "model": "examplemod:block/cobblestone_6x"}
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
@ -1,6 +0,0 @@
 | 
			
		||||
{
 | 
			
		||||
  "variants": {
 | 
			
		||||
    "": {
 | 
			
		||||
      "model": "examplemod:block/cobblestone_7x"}
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
@ -1,6 +0,0 @@
 | 
			
		||||
{
 | 
			
		||||
  "variants": {
 | 
			
		||||
    "": {
 | 
			
		||||
      "model": "examplemod:block/cobblestone_8x"}
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
@ -1,6 +0,0 @@
 | 
			
		||||
{
 | 
			
		||||
  "variants": {
 | 
			
		||||
    "": {
 | 
			
		||||
      "model": "examplemod:block/cobblestone_9x"}
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
@ -1,11 +0,0 @@
 | 
			
		||||
{
 | 
			
		||||
  "block.examplemod.cobblestone_1x": "Cobblestone¹",
 | 
			
		||||
  "block.examplemod.cobblestone_2x": "Cobblestone²",
 | 
			
		||||
  "block.examplemod.cobblestone_3x": "Cobblestone³",
 | 
			
		||||
  "block.examplemod.cobblestone_4x": "Cobblestone⁴",
 | 
			
		||||
  "block.examplemod.cobblestone_5x": "Cobblestone⁵",
 | 
			
		||||
  "block.examplemod.cobblestone_6x": "Cobblestone⁶",
 | 
			
		||||
  "block.examplemod.cobblestone_7x": "Cobblestone⁷",
 | 
			
		||||
  "block.examplemod.cobblestone_8x": "Cobblestone⁸",
 | 
			
		||||
  "block.examplemod.cobblestone_9x": "Cobblestone⁹"
 | 
			
		||||
}
 | 
			
		||||
@ -1,6 +0,0 @@
 | 
			
		||||
{
 | 
			
		||||
  "parent": "minecraft:block/cube_all",
 | 
			
		||||
  "textures": {
 | 
			
		||||
    "all": "examplemod:block/cobblestone_5x"
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
@ -1,6 +0,0 @@
 | 
			
		||||
{
 | 
			
		||||
  "parent": "minecraft:block/cube_all",
 | 
			
		||||
  "textures": {
 | 
			
		||||
    "all": "examplemod:block/cobblestone_6x"
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
@ -1,6 +0,0 @@
 | 
			
		||||
{
 | 
			
		||||
  "parent": "minecraft:block/cube_all",
 | 
			
		||||
  "textures": {
 | 
			
		||||
    "all": "examplemod:block/cobblestone_7x"
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
@ -1,6 +0,0 @@
 | 
			
		||||
{
 | 
			
		||||
  "parent": "minecraft:block/cube_all",
 | 
			
		||||
  "textures": {
 | 
			
		||||
    "all": "examplemod:block/cobblestone_8x"
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
@ -1,6 +0,0 @@
 | 
			
		||||
{
 | 
			
		||||
  "parent": "minecraft:block/cube_all",
 | 
			
		||||
  "textures": {
 | 
			
		||||
    "all": "examplemod:block/cobblestone_9x"
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
@ -1,3 +0,0 @@
 | 
			
		||||
{
 | 
			
		||||
  "parent": "examplemod:block/cobblestone_1x"
 | 
			
		||||
}
 | 
			
		||||
@ -1,3 +0,0 @@
 | 
			
		||||
{
 | 
			
		||||
  "parent": "examplemod:block/cobblestone_2x"
 | 
			
		||||
}
 | 
			
		||||
@ -1,3 +0,0 @@
 | 
			
		||||
{
 | 
			
		||||
  "parent": "examplemod:block/cobblestone_3x"
 | 
			
		||||
}
 | 
			
		||||
@ -1,3 +0,0 @@
 | 
			
		||||
{
 | 
			
		||||
  "parent": "examplemod:block/cobblestone_4x"
 | 
			
		||||
}
 | 
			
		||||
@ -1,3 +0,0 @@
 | 
			
		||||
{
 | 
			
		||||
  "parent": "examplemod:block/cobblestone_5x"
 | 
			
		||||
}
 | 
			
		||||
@ -1,3 +0,0 @@
 | 
			
		||||
{
 | 
			
		||||
  "parent": "examplemod:block/cobblestone_6x"
 | 
			
		||||
}
 | 
			
		||||
@ -1,3 +0,0 @@
 | 
			
		||||
{
 | 
			
		||||
  "parent": "examplemod:block/cobblestone_7x"
 | 
			
		||||
}
 | 
			
		||||
@ -1,3 +0,0 @@
 | 
			
		||||
{
 | 
			
		||||
  "parent": "examplemod:block/cobblestone_8x"
 | 
			
		||||
}
 | 
			
		||||
@ -1,3 +0,0 @@
 | 
			
		||||
{
 | 
			
		||||
  "parent": "examplemod:block/cobblestone_9x"
 | 
			
		||||
}
 | 
			
		||||
| 
		 Before Width: | Height: | Size: 661 B  | 
| 
		 Before Width: | Height: | Size: 625 B  | 
| 
		 Before Width: | Height: | Size: 625 B  | 
| 
		 Before Width: | Height: | Size: 609 B  | 
| 
		 Before Width: | Height: | Size: 576 B  | 
| 
		 Before Width: | Height: | Size: 542 B  | 
| 
		 Before Width: | Height: | Size: 582 B  | 
| 
		 Before Width: | Height: | Size: 610 B  | 
| 
		 Before Width: | Height: | Size: 582 B  | 
							
								
								
									
										14
									
								
								src/main/resources/data/compressedblocks/loot_tables/blocks/andesite_1x.json
									
									
									
									
									
										Executable file
									
								
							
							
						
						@ -0,0 +1,14 @@
 | 
			
		||||
{
 | 
			
		||||
  "type": "minecraft:block",
 | 
			
		||||
  "pools": [
 | 
			
		||||
    {
 | 
			
		||||
      "rolls": 1,
 | 
			
		||||
      "entries": [
 | 
			
		||||
        {
 | 
			
		||||
          "type": "minecraft:item",
 | 
			
		||||
          "name": "compressedblocks:andesite_1x"
 | 
			
		||||
        }
 | 
			
		||||
      ]
 | 
			
		||||
    }
 | 
			
		||||
  ]
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										14
									
								
								src/main/resources/data/compressedblocks/loot_tables/blocks/andesite_2x.json
									
									
									
									
									
										Executable file
									
								
							
							
						
						@ -0,0 +1,14 @@
 | 
			
		||||
{
 | 
			
		||||
  "type": "minecraft:block",
 | 
			
		||||
  "pools": [
 | 
			
		||||
    {
 | 
			
		||||
      "rolls": 1,
 | 
			
		||||
      "entries": [
 | 
			
		||||
        {
 | 
			
		||||
          "type": "minecraft:item",
 | 
			
		||||
          "name": "compressedblocks:andesite_2x"
 | 
			
		||||
        }
 | 
			
		||||
      ]
 | 
			
		||||
    }
 | 
			
		||||
  ]
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										14
									
								
								src/main/resources/data/compressedblocks/loot_tables/blocks/andesite_3x.json
									
									
									
									
									
										Executable file
									
								
							
							
						
						@ -0,0 +1,14 @@
 | 
			
		||||
{
 | 
			
		||||
  "type": "minecraft:block",
 | 
			
		||||
  "pools": [
 | 
			
		||||
    {
 | 
			
		||||
      "rolls": 1,
 | 
			
		||||
      "entries": [
 | 
			
		||||
        {
 | 
			
		||||
          "type": "minecraft:item",
 | 
			
		||||
          "name": "compressedblocks:andesite_3x"
 | 
			
		||||
        }
 | 
			
		||||
      ]
 | 
			
		||||
    }
 | 
			
		||||
  ]
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										14
									
								
								src/main/resources/data/compressedblocks/loot_tables/blocks/andesite_4x.json
									
									
									
									
									
										Executable file
									
								
							
							
						
						@ -0,0 +1,14 @@
 | 
			
		||||
{
 | 
			
		||||
  "type": "minecraft:block",
 | 
			
		||||
  "pools": [
 | 
			
		||||
    {
 | 
			
		||||
      "rolls": 1,
 | 
			
		||||
      "entries": [
 | 
			
		||||
        {
 | 
			
		||||
          "type": "minecraft:item",
 | 
			
		||||
          "name": "compressedblocks:andesite_4x"
 | 
			
		||||
        }
 | 
			
		||||
      ]
 | 
			
		||||
    }
 | 
			
		||||
  ]
 | 
			
		||||
}
 | 
			
		||||
@ -0,0 +1,14 @@
 | 
			
		||||
{
 | 
			
		||||
  "type": "minecraft:block",
 | 
			
		||||
  "pools": [
 | 
			
		||||
    {
 | 
			
		||||
      "rolls": 1,
 | 
			
		||||
      "entries": [
 | 
			
		||||
        {
 | 
			
		||||
          "type": "minecraft:item",
 | 
			
		||||
          "name": "compressedblocks:cobblestone_1x"
 | 
			
		||||
        }
 | 
			
		||||
      ]
 | 
			
		||||
    }
 | 
			
		||||
  ]
 | 
			
		||||
}
 | 
			
		||||
@ -0,0 +1,14 @@
 | 
			
		||||
{
 | 
			
		||||
  "type": "minecraft:block",
 | 
			
		||||
  "pools": [
 | 
			
		||||
    {
 | 
			
		||||
      "rolls": 1,
 | 
			
		||||
      "entries": [
 | 
			
		||||
        {
 | 
			
		||||
          "type": "minecraft:item",
 | 
			
		||||
          "name": "compressedblocks:cobblestone_2x"
 | 
			
		||||
        }
 | 
			
		||||
      ]
 | 
			
		||||
    }
 | 
			
		||||
  ]
 | 
			
		||||
}
 | 
			
		||||
@ -0,0 +1,14 @@
 | 
			
		||||
{
 | 
			
		||||
  "type": "minecraft:block",
 | 
			
		||||
  "pools": [
 | 
			
		||||
    {
 | 
			
		||||
      "rolls": 1,
 | 
			
		||||
      "entries": [
 | 
			
		||||
        {
 | 
			
		||||
          "type": "minecraft:item",
 | 
			
		||||
          "name": "compressedblocks:cobblestone_3x"
 | 
			
		||||
        }
 | 
			
		||||
      ]
 | 
			
		||||
    }
 | 
			
		||||
  ]
 | 
			
		||||
}
 | 
			
		||||
@ -0,0 +1,14 @@
 | 
			
		||||
{
 | 
			
		||||
  "type": "minecraft:block",
 | 
			
		||||
  "pools": [
 | 
			
		||||
    {
 | 
			
		||||
      "rolls": 1,
 | 
			
		||||
      "entries": [
 | 
			
		||||
        {
 | 
			
		||||
          "type": "minecraft:item",
 | 
			
		||||
          "name": "compressedblocks:cobblestone_4x"
 | 
			
		||||
        }
 | 
			
		||||
      ]
 | 
			
		||||
    }
 | 
			
		||||
  ]
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										14
									
								
								src/main/resources/data/compressedblocks/loot_tables/blocks/diorite_1x.json
									
									
									
									
									
										Executable file
									
								
							
							
						
						@ -0,0 +1,14 @@
 | 
			
		||||
{
 | 
			
		||||
  "type": "minecraft:block",
 | 
			
		||||
  "pools": [
 | 
			
		||||
    {
 | 
			
		||||
      "rolls": 1,
 | 
			
		||||
      "entries": [
 | 
			
		||||
        {
 | 
			
		||||
          "type": "minecraft:item",
 | 
			
		||||
          "name": "compressedblocks:diorite_1x"
 | 
			
		||||
        }
 | 
			
		||||
      ]
 | 
			
		||||
    }
 | 
			
		||||
  ]
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										14
									
								
								src/main/resources/data/compressedblocks/loot_tables/blocks/diorite_2x.json
									
									
									
									
									
										Executable file
									
								
							
							
						
						@ -0,0 +1,14 @@
 | 
			
		||||
{
 | 
			
		||||
  "type": "minecraft:block",
 | 
			
		||||
  "pools": [
 | 
			
		||||
    {
 | 
			
		||||
      "rolls": 1,
 | 
			
		||||
      "entries": [
 | 
			
		||||
        {
 | 
			
		||||
          "type": "minecraft:item",
 | 
			
		||||
          "name": "compressedblocks:diorite_2x"
 | 
			
		||||
        }
 | 
			
		||||
      ]
 | 
			
		||||
    }
 | 
			
		||||
  ]
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										14
									
								
								src/main/resources/data/compressedblocks/loot_tables/blocks/diorite_3x.json
									
									
									
									
									
										Executable file
									
								
							
							
						
						@ -0,0 +1,14 @@
 | 
			
		||||
{
 | 
			
		||||
  "type": "minecraft:block",
 | 
			
		||||
  "pools": [
 | 
			
		||||
    {
 | 
			
		||||
      "rolls": 1,
 | 
			
		||||
      "entries": [
 | 
			
		||||
        {
 | 
			
		||||
          "type": "minecraft:item",
 | 
			
		||||
          "name": "compressedblocks:diorite_3x"
 | 
			
		||||
        }
 | 
			
		||||
      ]
 | 
			
		||||
    }
 | 
			
		||||
  ]
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										14
									
								
								src/main/resources/data/compressedblocks/loot_tables/blocks/diorite_4x.json
									
									
									
									
									
										Executable file
									
								
							
							
						
						@ -0,0 +1,14 @@
 | 
			
		||||
{
 | 
			
		||||
  "type": "minecraft:block",
 | 
			
		||||
  "pools": [
 | 
			
		||||
    {
 | 
			
		||||
      "rolls": 1,
 | 
			
		||||
      "entries": [
 | 
			
		||||
        {
 | 
			
		||||
          "type": "minecraft:item",
 | 
			
		||||
          "name": "compressedblocks:diorite_4x"
 | 
			
		||||
        }
 | 
			
		||||
      ]
 | 
			
		||||
    }
 | 
			
		||||
  ]
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										14
									
								
								src/main/resources/data/compressedblocks/loot_tables/blocks/granite_1x.json
									
									
									
									
									
										Executable file
									
								
							
							
						
						@ -0,0 +1,14 @@
 | 
			
		||||
{
 | 
			
		||||
  "type": "minecraft:block",
 | 
			
		||||
  "pools": [
 | 
			
		||||
    {
 | 
			
		||||
      "rolls": 1,
 | 
			
		||||
      "entries": [
 | 
			
		||||
        {
 | 
			
		||||
          "type": "minecraft:item",
 | 
			
		||||
          "name": "compressedblocks:granite_1x"
 | 
			
		||||
        }
 | 
			
		||||
      ]
 | 
			
		||||
    }
 | 
			
		||||
  ]
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										14
									
								
								src/main/resources/data/compressedblocks/loot_tables/blocks/granite_2x.json
									
									
									
									
									
										Executable file
									
								
							
							
						
						@ -0,0 +1,14 @@
 | 
			
		||||
{
 | 
			
		||||
  "type": "minecraft:block",
 | 
			
		||||
  "pools": [
 | 
			
		||||
    {
 | 
			
		||||
      "rolls": 1,
 | 
			
		||||
      "entries": [
 | 
			
		||||
        {
 | 
			
		||||
          "type": "minecraft:item",
 | 
			
		||||
          "name": "compressedblocks:granite_2x"
 | 
			
		||||
        }
 | 
			
		||||
      ]
 | 
			
		||||
    }
 | 
			
		||||
  ]
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										14
									
								
								src/main/resources/data/compressedblocks/loot_tables/blocks/granite_3x.json
									
									
									
									
									
										Executable file
									
								
							
							
						
						@ -0,0 +1,14 @@
 | 
			
		||||
{
 | 
			
		||||
  "type": "minecraft:block",
 | 
			
		||||
  "pools": [
 | 
			
		||||
    {
 | 
			
		||||
      "rolls": 1,
 | 
			
		||||
      "entries": [
 | 
			
		||||
        {
 | 
			
		||||
          "type": "minecraft:item",
 | 
			
		||||
          "name": "compressedblocks:granite_3x"
 | 
			
		||||
        }
 | 
			
		||||
      ]
 | 
			
		||||
    }
 | 
			
		||||
  ]
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										14
									
								
								src/main/resources/data/compressedblocks/loot_tables/blocks/granite_4x.json
									
									
									
									
									
										Executable file
									
								
							
							
						
						@ -0,0 +1,14 @@
 | 
			
		||||
{
 | 
			
		||||
  "type": "minecraft:block",
 | 
			
		||||
  "pools": [
 | 
			
		||||
    {
 | 
			
		||||
      "rolls": 1,
 | 
			
		||||
      "entries": [
 | 
			
		||||
        {
 | 
			
		||||
          "type": "minecraft:item",
 | 
			
		||||
          "name": "compressedblocks:granite_4x"
 | 
			
		||||
        }
 | 
			
		||||
      ]
 | 
			
		||||
    }
 | 
			
		||||
  ]
 | 
			
		||||
}
 | 
			
		||||