Rename Concentrated Diamond Ore to Deepslate Diamond Ore

- Renamed ConcentrateddiamondoreBlock to DeepslatediamondoreBlock
- Updated registry references (CONCENTRATEDDIAMONDORE → DEEPSLATEDIAMONDORE)
- Renamed all JSON resource files
- Updated display name: "Concentrated diamond ore" → "Deepslate diamond ore"
- Updated minecraft tags and biome modifiers

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
feldenr
2026-01-14 13:31:36 +01:00
parent 0d3805f654
commit 8699a36294
15 changed files with 22 additions and 22 deletions
@@ -16,8 +16,8 @@ import net.minecraft.core.BlockPos;
import net.mcreator.customoregen.procedures.OreexperienceProcedure; import net.mcreator.customoregen.procedures.OreexperienceProcedure;
import net.mcreator.customoregen.init.CustomOreGenModBlocks; import net.mcreator.customoregen.init.CustomOreGenModBlocks;
public class ConcentrateddiamondoreBlock extends Block { public class DeepslatediamondoreBlock extends Block {
public ConcentrateddiamondoreBlock() { public DeepslatediamondoreBlock() {
super(BlockBehaviour.Properties.of().sound(SoundType.STONE).strength(3f, 11f).requiresCorrectToolForDrops()); super(BlockBehaviour.Properties.of().sound(SoundType.STONE).strength(3f, 11f).requiresCorrectToolForDrops());
} }
@@ -28,7 +28,7 @@ public class ConcentrateddiamondoreBlock extends Block {
@Override @Override
public ItemStack getCloneItemStack(BlockState state, HitResult target, BlockGetter world, BlockPos pos, Player player) { public ItemStack getCloneItemStack(BlockState state, HitResult target, BlockGetter world, BlockPos pos, Player player) {
return new ItemStack(CustomOreGenModBlocks.CONCENTRATEDDIAMONDORE.get()); return new ItemStack(CustomOreGenModBlocks.DEEPSLATEDIAMONDORE.get());
} }
@Override @Override
@@ -24,7 +24,7 @@ import net.mcreator.customoregen.block.DeepslatelapisoreBlock;
import net.mcreator.customoregen.block.DeepslateironoreBlock; import net.mcreator.customoregen.block.DeepslateironoreBlock;
import net.mcreator.customoregen.block.CopperloweroreBlock; import net.mcreator.customoregen.block.CopperloweroreBlock;
import net.mcreator.customoregen.block.CopperhighoreBlock; import net.mcreator.customoregen.block.CopperhighoreBlock;
import net.mcreator.customoregen.block.ConcentrateddiamondoreBlock; import net.mcreator.customoregen.block.DeepslatediamondoreBlock;
import net.mcreator.customoregen.block.ConcentratedcoaloreBlock; import net.mcreator.customoregen.block.ConcentratedcoaloreBlock;
import net.mcreator.customoregen.CustomOreGenMod; import net.mcreator.customoregen.CustomOreGenMod;
@@ -35,7 +35,7 @@ public class CustomOreGenModBlocks {
public static final RegistryObject<Block> DEEPSLATEPUREGOLDENORE = REGISTRY.register("deepslatepuregoldenore", () -> new DeepslatepuregoldenoreBlock()); public static final RegistryObject<Block> DEEPSLATEPUREGOLDENORE = REGISTRY.register("deepslatepuregoldenore", () -> new DeepslatepuregoldenoreBlock());
public static final RegistryObject<Block> CONCENTRATEDCOALORE = REGISTRY.register("concentratedcoalore", () -> new ConcentratedcoaloreBlock()); public static final RegistryObject<Block> CONCENTRATEDCOALORE = REGISTRY.register("concentratedcoalore", () -> new ConcentratedcoaloreBlock());
public static final RegistryObject<Block> DEEPSLATESHARDDIAMONDORE = REGISTRY.register("deepslatesharddiamondore", () -> new DeepslatesharddiamondoreBlock()); public static final RegistryObject<Block> DEEPSLATESHARDDIAMONDORE = REGISTRY.register("deepslatesharddiamondore", () -> new DeepslatesharddiamondoreBlock());
public static final RegistryObject<Block> CONCENTRATEDDIAMONDORE = REGISTRY.register("concentrateddiamondore", () -> new ConcentrateddiamondoreBlock()); public static final RegistryObject<Block> DEEPSLATEDIAMONDORE = REGISTRY.register("deepslatediamondore", () -> new DeepslatediamondoreBlock());
public static final RegistryObject<Block> LAPISORE = REGISTRY.register("lapisore", () -> new LapisoreBlock()); public static final RegistryObject<Block> LAPISORE = REGISTRY.register("lapisore", () -> new LapisoreBlock());
public static final RegistryObject<Block> DEEPSLATELAPISORE = REGISTRY.register("deepslatelapisore", () -> new DeepslatelapisoreBlock()); public static final RegistryObject<Block> DEEPSLATELAPISORE = REGISTRY.register("deepslatelapisore", () -> new DeepslatelapisoreBlock());
public static final RegistryObject<Block> REDSTONEORE = REGISTRY.register("redstoneore", () -> new RedstoneoreBlock()); public static final RegistryObject<Block> REDSTONEORE = REGISTRY.register("redstoneore", () -> new RedstoneoreBlock());
@@ -32,7 +32,7 @@ public class CustomOreGenModItems {
public static final RegistryObject<Item> DEEPSLATEPUREGOLDENORE = block(CustomOreGenModBlocks.DEEPSLATEPUREGOLDENORE); public static final RegistryObject<Item> DEEPSLATEPUREGOLDENORE = block(CustomOreGenModBlocks.DEEPSLATEPUREGOLDENORE);
public static final RegistryObject<Item> CONCENTRATEDCOALORE = block(CustomOreGenModBlocks.CONCENTRATEDCOALORE); public static final RegistryObject<Item> CONCENTRATEDCOALORE = block(CustomOreGenModBlocks.CONCENTRATEDCOALORE);
public static final RegistryObject<Item> DEEPSLATESHARDDIAMONDORE = block(CustomOreGenModBlocks.DEEPSLATESHARDDIAMONDORE); public static final RegistryObject<Item> DEEPSLATESHARDDIAMONDORE = block(CustomOreGenModBlocks.DEEPSLATESHARDDIAMONDORE);
public static final RegistryObject<Item> CONCENTRATEDDIAMONDORE = block(CustomOreGenModBlocks.CONCENTRATEDDIAMONDORE); public static final RegistryObject<Item> DEEPSLATEDIAMONDORE = block(CustomOreGenModBlocks.DEEPSLATEDIAMONDORE);
public static final RegistryObject<Item> LAPISORE = block(CustomOreGenModBlocks.LAPISORE); public static final RegistryObject<Item> LAPISORE = block(CustomOreGenModBlocks.LAPISORE);
public static final RegistryObject<Item> DEEPSLATELAPISORE = block(CustomOreGenModBlocks.DEEPSLATELAPISORE); public static final RegistryObject<Item> DEEPSLATELAPISORE = block(CustomOreGenModBlocks.DEEPSLATELAPISORE);
public static final RegistryObject<Item> REDSTONEORE = block(CustomOreGenModBlocks.REDSTONEORE); public static final RegistryObject<Item> REDSTONEORE = block(CustomOreGenModBlocks.REDSTONEORE);
@@ -30,7 +30,7 @@ public class CustomOreGenModTabs {
.displayItems((parameters, output) -> { .displayItems((parameters, output) -> {
// Minerais // Minerais
output.accept(CustomOreGenModBlocks.DEEPSLATESHARDDIAMONDORE.get().asItem()); output.accept(CustomOreGenModBlocks.DEEPSLATESHARDDIAMONDORE.get().asItem());
output.accept(CustomOreGenModBlocks.CONCENTRATEDDIAMONDORE.get().asItem()); output.accept(CustomOreGenModBlocks.DEEPSLATEDIAMONDORE.get().asItem());
output.accept(CustomOreGenModBlocks.PUREGOLDENORE.get().asItem()); output.accept(CustomOreGenModBlocks.PUREGOLDENORE.get().asItem());
output.accept(CustomOreGenModBlocks.DEEPSLATEPUREGOLDENORE.get().asItem()); output.accept(CustomOreGenModBlocks.DEEPSLATEPUREGOLDENORE.get().asItem());
output.accept(CustomOreGenModBlocks.CONCENTRATEDCOALORE.get().asItem()); output.accept(CustomOreGenModBlocks.CONCENTRATEDCOALORE.get().asItem());
@@ -1,7 +0,0 @@
{
"variants": {
"": {
"model": "custom_ore_gen:block/concentrateddiamondore"
}
}
}
@@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "custom_ore_gen:block/deepslatediamondore"
}
}
}
@@ -14,7 +14,7 @@
"block.custom_ore_gen.deepslateironore": "Deepslate iron ore", "block.custom_ore_gen.deepslateironore": "Deepslate iron ore",
"item.custom_ore_gen.sharddiamondaxe": "Sharddiamondaxe", "item.custom_ore_gen.sharddiamondaxe": "Sharddiamondaxe",
"block.custom_ore_gen.deepslatesharddiamondore": "Deepslate shard diamond ore", "block.custom_ore_gen.deepslatesharddiamondore": "Deepslate shard diamond ore",
"block.custom_ore_gen.concentrateddiamondore": "Concentrated diamond ore", "block.custom_ore_gen.deepslatediamondore": "Deepslate diamond ore",
"item.custom_ore_gen.shardironore": "Shard iron ore", "item.custom_ore_gen.shardironore": "Shard iron ore",
"item.custom_ore_gen.diamondshard": "Diamond shard", "item.custom_ore_gen.diamondshard": "Diamond shard",
"block.custom_ore_gen.deepslatepuregoldenore": "Deepslate pure golden ore", "block.custom_ore_gen.deepslatepuregoldenore": "Deepslate pure golden ore",
@@ -1,5 +1,5 @@
{ {
"parent": "custom_ore_gen:block/concentrateddiamondore", "parent": "custom_ore_gen:block/deepslatediamondore",
"display": { "display": {
"thirdperson": { "thirdperson": {
"rotation": [ "rotation": [
@@ -1,6 +1,6 @@
{ {
"type": "forge:add_features", "type": "forge:add_features",
"biomes": "#custom_ore_gen:cold_biomes", "biomes": "#custom_ore_gen:cold_biomes",
"features": "custom_ore_gen:concentrateddiamondore", "features": "custom_ore_gen:deepslatediamondore",
"step": "underground_ores" "step": "underground_ores"
} }
@@ -78,5 +78,5 @@
] ]
} }
], ],
"random_sequence": "custom_ore_gen:blocks/concentrateddiamondore" "random_sequence": "custom_ore_gen:blocks/deepslatediamondore"
} }
@@ -10,7 +10,7 @@
"tag": "forge:stone" "tag": "forge:stone"
}, },
"state": { "state": {
"Name": "custom_ore_gen:concentrateddiamondore" "Name": "custom_ore_gen:deepslatediamondore"
} }
} }
] ]
@@ -1,5 +1,5 @@
{ {
"feature": "custom_ore_gen:concentrateddiamondore", "feature": "custom_ore_gen:deepslatediamondore",
"placement": [ "placement": [
{ {
"type": "minecraft:count", "type": "minecraft:count",
@@ -11,7 +11,7 @@
"custom_ore_gen:redstoneore", "custom_ore_gen:redstoneore",
"custom_ore_gen:deepslatelapisore", "custom_ore_gen:deepslatelapisore",
"custom_ore_gen:lapisore", "custom_ore_gen:lapisore",
"custom_ore_gen:concentrateddiamondore", "custom_ore_gen:deepslatediamondore",
"custom_ore_gen:deepslatesharddiamondore", "custom_ore_gen:deepslatesharddiamondore",
"custom_ore_gen:concentratedcoalore", "custom_ore_gen:concentratedcoalore",
"custom_ore_gen:deepslatepuregoldenore", "custom_ore_gen:deepslatepuregoldenore",
@@ -6,7 +6,7 @@
"custom_ore_gen:copperhighore", "custom_ore_gen:copperhighore",
"custom_ore_gen:deepslateredstoneore", "custom_ore_gen:deepslateredstoneore",
"custom_ore_gen:redstoneore", "custom_ore_gen:redstoneore",
"custom_ore_gen:concentrateddiamondore", "custom_ore_gen:deepslatediamondore",
"custom_ore_gen:deepslatesharddiamondore", "custom_ore_gen:deepslatesharddiamondore",
"custom_ore_gen:deepslatepuregoldenore", "custom_ore_gen:deepslatepuregoldenore",
"custom_ore_gen:sharddiamondblockore" "custom_ore_gen:sharddiamondblockore"