deepslate ore added

This commit is contained in:
Jottyfan
2026-01-24 15:15:27 +01:00
parent d7c85d04bb
commit 4d6301ce95
11 changed files with 53 additions and 4 deletions

View File

@@ -21,6 +21,8 @@ public class ModBlocks {
public static final Block RUBY_BLOCK = registerBlock(Identifier.of(Gtamfmd.MOD_ID, "ruby_block"), x -> new Block(x));
public static final Block RUBY_ORE = registerBlock(Identifier.of(Gtamfmd.MOD_ID, "ruby_ore"),
x -> new Block(x.strength(4).requiresTool()));
public static final Block RUBY_DEEPSLATE_ORE = registerBlock(Identifier.of(Gtamfmd.MOD_ID, "ruby_deepslate_ore"),
x -> new Block(x.strength(4).requiresTool()));
public static final Block CHRISTMASTREE = registerBlock(Identifier.of(Gtamfmd.MOD_ID, "christmastree"),
x -> new ChristmasTree(x));
@@ -45,6 +47,7 @@ public class ModBlocks {
ItemGroupEvents.modifyEntriesEvent(ItemGroups.BUILDING_BLOCKS).register(entries -> {
entries.add(RUBY_BLOCK);
entries.add(RUBY_ORE);
entries.add(RUBY_DEEPSLATE_ORE);
});
}
}

View File

@@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "gtamfmd:block/ruby_deepslate_ore"
}
}
}

View File

@@ -0,0 +1,6 @@
{
"model": {
"type": "minecraft:model",
"model": "gtamfmd:block/ruby_deepslate_ore"
}
}

View File

@@ -8,5 +8,6 @@
"item.gtamfmd.ruby_helmet": "Rubinhelm",
"item.gtamfmd.ruby_chestplate": "Rubinbrustpanzer",
"item.gtamfmd.ruby_leggings": "Rubinhose",
"item.gtamfmd.ruby_boots": "Rubinschuhe"
"item.gtamfmd.ruby_boots": "Rubinschuhe",
"item.gtamfmd.ruby_deepslate_ore": "Rubinerzklumpen"
}

View File

@@ -8,5 +8,6 @@
"item.gtamfmd.ruby_helmet": "ruby helmet",
"item.gtamfmd.ruby_chestplate": "ruby chestplate",
"item.gtamfmd.ruby_leggings": "ruby leggings",
"item.gtamfmd.ruby_boots": "ruby boots"
"item.gtamfmd.ruby_boots": "ruby boots",
"item.gtamfmd.ruby_deepslate_ore": "ruby deepslate ore"
}

View File

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

View File

@@ -0,0 +1,3 @@
{
"parent": "gtamfmd:block/ruby_deepslate_ore"
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

View File

@@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
],
"entries": [
{
"type": "minecraft:item",
"name": "gtamfmd:ruby_ore"
}
],
"rolls": 1.0
}
]
}

View File

@@ -2,6 +2,7 @@
"replace": false,
"values": [
"gtamfmd:ruby_block",
"gtamfmd:ruby_ore"
"gtamfmd:ruby_ore",
"gtamfmd:ruby_deepslate_ore"
]
}

View File

@@ -2,6 +2,7 @@
"replace": false,
"values": [
"gtamfmd:ruby_block",
"gtamfmd:ruby_ore"
"gtamfmd:ruby_ore",
"gtamfmd:ruby_deepslate_ore"
]
}