added missing new files

This commit is contained in:
Jörg Henke 2021-12-07 22:44:48 +01:00
parent 856ab79543
commit d4bdb67c87
4 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,15 @@
package de.jottyfan.minecraft.quickiefabric.items;
import de.jottyfan.minecraft.quickiefabric.init.RegistryManager;
import net.minecraft.item.Item;
/**
*
* @author jotty
*
*/
public class ItemStub extends Item {
public ItemStub() {
super(new Item.Settings().group(RegistryManager.QUICKIEFABRIC_GROUP).maxCount(99));
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "item/stick",
"textures": {
"layer0": "quickiefabric:item/stub"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

View File

@ -0,0 +1,12 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "minecraft:stick"
}
],
"result": {
"item": "quickiefabric:stub",
"count": 4
}
}