This commit is contained in:
2023-09-09 17:29:47 +02:00
parent d4875ea281
commit 0ea137dc58
17 changed files with 232 additions and 19 deletions

View File

@@ -0,0 +1,12 @@
// priority: 0
// Visit the wiki for more info - https://kubejs.com/
StartupEvents.registry('item', event => {
event.create('crushed_netherrack').material('clay').hardness(0.5).displayName('Crushed Netherrack');
event.create('crushed_end_stone').material('clay').hardness(0.5).displayName('Crushed End Stone');
event.create('dust').material('sand').hardness(0.5).displayName('Dust');
event.create('desh_mesh','createsifter:mesh').displayName('Desh Mesh').parentModel("createsifter:block/meshes/mesh").texture("mesh","kubejs:item/desh_mesh");
})