fix git fuckup

This commit is contained in:
Jenny 2024-12-30 23:15:27 +01:00
parent d65b1019af
commit dd0d538afb
Signed by: Jenny
GPG Key ID: 2072A14E40940632
149 changed files with 905 additions and 299 deletions

View 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

View 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();

View File

@ -0,0 +1,6 @@
{
"variants": {
"": {
"model": "compressedblocks:block/andesite_1x"}
}
}

View File

@ -0,0 +1,6 @@
{
"variants": {
"": {
"model": "compressedblocks:block/andesite_2x"}
}
}

View File

@ -0,0 +1,6 @@
{
"variants": {
"": {
"model": "compressedblocks:block/andesite_3x"}
}
}

View File

@ -0,0 +1,6 @@
{
"variants": {
"": {
"model": "compressedblocks:block/andesite_4x"}
}
}

View File

@ -0,0 +1,6 @@
{
"variants": {
"": {
"model": "compressedblocks:block/cobblestone_1x"}
}
}

View File

@ -0,0 +1,6 @@
{
"variants": {
"": {
"model": "compressedblocks:block/cobblestone_2x"}
}
}

View File

@ -0,0 +1,6 @@
{
"variants": {
"": {
"model": "compressedblocks:block/cobblestone_3x"}
}
}

View File

@ -0,0 +1,6 @@
{
"variants": {
"": {
"model": "compressedblocks:block/cobblestone_4x"}
}
}

View File

@ -0,0 +1,6 @@
{
"variants": {
"": {
"model": "compressedblocks:block/diorite_1x"}
}
}

View File

@ -0,0 +1,6 @@
{
"variants": {
"": {
"model": "compressedblocks:block/diorite_2x"}
}
}

View File

@ -0,0 +1,6 @@
{
"variants": {
"": {
"model": "compressedblocks:block/diorite_3x"}
}
}

View File

@ -0,0 +1,6 @@
{
"variants": {
"": {
"model": "compressedblocks:block/diorite_4x"}
}
}

View File

@ -0,0 +1,6 @@
{
"variants": {
"": {
"model": "compressedblocks:block/granite_1x"}
}
}

View File

@ -0,0 +1,6 @@
{
"variants": {
"": {
"model": "compressedblocks:block/granite_2x"}
}
}

View File

@ -0,0 +1,6 @@
{
"variants": {
"": {
"model": "compressedblocks:block/granite_3x"}
}
}

View File

@ -0,0 +1,6 @@
{
"variants": {
"": {
"model": "compressedblocks:block/granite_4x"}
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "compressedblocks:block/andesite_1x"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "compressedblocks:block/andesite_2x"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "compressedblocks:block/andesite_3x"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "compressedblocks:block/andesite_4x"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "compressedblocks:block/cobblestone_1x"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "compressedblocks:block/cobblestone_2x"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "compressedblocks:block/cobblestone_3x"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "compressedblocks:block/cobblestone_4x"
}
}

View File

@ -1,6 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "examplemod:block/cobblestone_1x"
"all": "compressedblocks:block/diorite_1x"
}
}

View File

@ -1,6 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "examplemod:block/cobblestone_2x"
"all": "compressedblocks:block/diorite_2x"
}
}

View File

@ -1,6 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "examplemod:block/cobblestone_3x"
"all": "compressedblocks:block/diorite_3x"
}
}

View File

@ -1,6 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "examplemod:block/cobblestone_4x"
"all": "compressedblocks:block/diorite_4x"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "compressedblocks:block/granite_1x"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "compressedblocks:block/granite_2x"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "compressedblocks:block/granite_3x"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "compressedblocks:block/granite_4x"
}
}

View File

@ -0,0 +1,3 @@
{
"parent": "compressedblocks:block/andesite_1x"
}

View File

@ -0,0 +1,3 @@
{
"parent": "compressedblocks:block/andesite_2x"
}

View File

@ -0,0 +1,3 @@
{
"parent": "compressedblocks:block/andesite_3x"
}

View File

@ -0,0 +1,3 @@
{
"parent": "compressedblocks:block/andesite_4x"
}

View File

@ -0,0 +1,3 @@
{
"parent": "compressedblocks:block/cobblestone_1x"
}

View File

@ -0,0 +1,3 @@
{
"parent": "compressedblocks:block/cobblestone_2x"
}

View File

@ -0,0 +1,3 @@
{
"parent": "compressedblocks:block/cobblestone_3x"
}

View File

@ -0,0 +1,3 @@
{
"parent": "compressedblocks:block/cobblestone_4x"
}

View File

@ -0,0 +1,3 @@
{
"parent": "compressedblocks:block/diorite_1x"
}

View File

@ -0,0 +1,3 @@
{
"parent": "compressedblocks:block/diorite_2x"
}

View File

@ -0,0 +1,3 @@
{
"parent": "compressedblocks:block/diorite_3x"
}

View File

@ -0,0 +1,3 @@
{
"parent": "compressedblocks:block/diorite_4x"
}

View File

@ -0,0 +1,3 @@
{
"parent": "compressedblocks:block/granite_1x"
}

View File

@ -0,0 +1,3 @@
{
"parent": "compressedblocks:block/granite_2x"
}

View File

@ -0,0 +1,3 @@
{
"parent": "compressedblocks:block/granite_3x"
}

View File

@ -0,0 +1,3 @@
{
"parent": "compressedblocks:block/granite_4x"
}

View File

@ -1,6 +0,0 @@
{
"variants": {
"": {
"model": "examplemod:block/cobblestone_1x"}
}
}

View File

@ -1,6 +0,0 @@
{
"variants": {
"": {
"model": "examplemod:block/cobblestone_2x"}
}
}

View File

@ -1,6 +0,0 @@
{
"variants": {
"": {
"model": "examplemod:block/cobblestone_3x"}
}
}

View File

@ -1,6 +0,0 @@
{
"variants": {
"": {
"model": "examplemod:block/cobblestone_4x"}
}
}

View File

@ -1,6 +0,0 @@
{
"variants": {
"": {
"model": "examplemod:block/cobblestone_5x"}
}
}

View File

@ -1,6 +0,0 @@
{
"variants": {
"": {
"model": "examplemod:block/cobblestone_6x"}
}
}

View File

@ -1,6 +0,0 @@
{
"variants": {
"": {
"model": "examplemod:block/cobblestone_7x"}
}
}

View File

@ -1,6 +0,0 @@
{
"variants": {
"": {
"model": "examplemod:block/cobblestone_8x"}
}
}

View File

@ -1,6 +0,0 @@
{
"variants": {
"": {
"model": "examplemod:block/cobblestone_9x"}
}
}

View File

@ -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⁹"
}

View File

@ -1,6 +0,0 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "examplemod:block/cobblestone_5x"
}
}

View File

@ -1,6 +0,0 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "examplemod:block/cobblestone_6x"
}
}

View File

@ -1,6 +0,0 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "examplemod:block/cobblestone_7x"
}
}

View File

@ -1,6 +0,0 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "examplemod:block/cobblestone_8x"
}
}

View File

@ -1,6 +0,0 @@
{
"parent": "minecraft:block/cube_all",
"textures": {
"all": "examplemod:block/cobblestone_9x"
}
}

View File

@ -1,3 +0,0 @@
{
"parent": "examplemod:block/cobblestone_1x"
}

View File

@ -1,3 +0,0 @@
{
"parent": "examplemod:block/cobblestone_2x"
}

View File

@ -1,3 +0,0 @@
{
"parent": "examplemod:block/cobblestone_3x"
}

View File

@ -1,3 +0,0 @@
{
"parent": "examplemod:block/cobblestone_4x"
}

View File

@ -1,3 +0,0 @@
{
"parent": "examplemod:block/cobblestone_5x"
}

View File

@ -1,3 +0,0 @@
{
"parent": "examplemod:block/cobblestone_6x"
}

View File

@ -1,3 +0,0 @@
{
"parent": "examplemod:block/cobblestone_7x"
}

View File

@ -1,3 +0,0 @@
{
"parent": "examplemod:block/cobblestone_8x"
}

View File

@ -1,3 +0,0 @@
{
"parent": "examplemod:block/cobblestone_9x"
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 661 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 625 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 625 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 609 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 576 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 542 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 582 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 610 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 582 B

View File

@ -0,0 +1,14 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"name": "compressedblocks:andesite_1x"
}
]
}
]
}

View File

@ -0,0 +1,14 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"name": "compressedblocks:andesite_2x"
}
]
}
]
}

View File

@ -0,0 +1,14 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"name": "compressedblocks:andesite_3x"
}
]
}
]
}

View File

@ -0,0 +1,14 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"name": "compressedblocks:andesite_4x"
}
]
}
]
}

View File

@ -0,0 +1,14 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"name": "compressedblocks:cobblestone_1x"
}
]
}
]
}

View File

@ -0,0 +1,14 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"name": "compressedblocks:cobblestone_2x"
}
]
}
]
}

View File

@ -0,0 +1,14 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"name": "compressedblocks:cobblestone_3x"
}
]
}
]
}

View File

@ -0,0 +1,14 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"name": "compressedblocks:cobblestone_4x"
}
]
}
]
}

View File

@ -0,0 +1,14 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"name": "compressedblocks:diorite_1x"
}
]
}
]
}

View File

@ -0,0 +1,14 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"name": "compressedblocks:diorite_2x"
}
]
}
]
}

View File

@ -0,0 +1,14 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"name": "compressedblocks:diorite_3x"
}
]
}
]
}

View File

@ -0,0 +1,14 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"name": "compressedblocks:diorite_4x"
}
]
}
]
}

View File

@ -0,0 +1,14 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"name": "compressedblocks:granite_1x"
}
]
}
]
}

View File

@ -0,0 +1,14 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"name": "compressedblocks:granite_2x"
}
]
}
]
}

View File

@ -0,0 +1,14 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"name": "compressedblocks:granite_3x"
}
]
}
]
}

View File

@ -0,0 +1,14 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"name": "compressedblocks:granite_4x"
}
]
}
]
}

Some files were not shown because too many files have changed in this diff Show More