Working on adding a Block of Dust

This commit is contained in:
dragonruler1000 2025-05-09 08:46:18 -05:00
parent 5f94c642db
commit 6115aeb503
11 changed files with 79 additions and 4 deletions

View file

@ -0,0 +1,5 @@
{
"variants": {
"": {"model": "hdm_mod:blocks/block_of_dust" }
}
}

View file

@ -4,5 +4,6 @@
"item.hdm_mod.knife": "Subtle Knife",
"item.hdm_mod.omelet": "Omelet",
"item.hdm_mod.dust": "Dust"
"item.hdm_mod.dust": "Dust",
"block.hdm_mod.block_of_dust": "Block of Dust"
}

View file

@ -0,0 +1,6 @@
{
"parent": "block/cube_all",
"textures" : {
"all": "hdm_mod:block/block_of_dust"
}
}

View file

@ -0,0 +1,3 @@
{
"parent": "hdm_mod:block/block_of_dust"
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 307 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 307 B

View file

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