deepslate ore added
This commit is contained in:
@@ -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);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "gtamfmd:block/ruby_deepslate_ore"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"model": {
|
||||
"type": "minecraft:model",
|
||||
"model": "gtamfmd:block/ruby_deepslate_ore"
|
||||
}
|
||||
}
|
||||
@@ -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"
|
||||
}
|
||||
|
||||
@@ -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"
|
||||
}
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "minecraft:block/cube_all",
|
||||
"textures": {
|
||||
"all": "gtamfmd:block/ruby_deepslate_ore"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"parent": "gtamfmd:block/ruby_deepslate_ore"
|
||||
}
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 5.1 KiB |
@@ -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
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -2,6 +2,7 @@
|
||||
"replace": false,
|
||||
"values": [
|
||||
"gtamfmd:ruby_block",
|
||||
"gtamfmd:ruby_ore"
|
||||
"gtamfmd:ruby_ore",
|
||||
"gtamfmd:ruby_deepslate_ore"
|
||||
]
|
||||
}
|
||||
@@ -2,6 +2,7 @@
|
||||
"replace": false,
|
||||
"values": [
|
||||
"gtamfmd:ruby_block",
|
||||
"gtamfmd:ruby_ore"
|
||||
"gtamfmd:ruby_ore",
|
||||
"gtamfmd:ruby_deepslate_ore"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user