added stub

This commit is contained in:
Jörg Henke 2021-12-07 22:42:03 +01:00
parent 4d66c701d8
commit 856ab79543
6 changed files with 7 additions and 2 deletions

View File

@ -9,7 +9,7 @@
loader_version=0.12.8
# Mod Properties
mod_version = 1.18.1
mod_version = 1.18.2
maven_group = de.jottyfan.minecraft
archives_base_name = quickiefabric

View File

@ -125,6 +125,7 @@ public class RegistryManager {
stacks.add(new ItemStack(QuickieItems.BACKPACK_ORANGE));
stacks.add(new ItemStack(QuickieItems.BACKPACK_PURPLE));
stacks.add(new ItemStack(QuickieItems.BACKPACK_LIGHTBLUE));
stacks.add(new ItemStack(QuickieItems.STUB));
stacks.add(new ItemStack(QuickieTools.SPEEDPOWDERAXE));
stacks.add(new ItemStack(QuickieTools.SPEEDPOWDERPICKAXE));
stacks.add(new ItemStack(QuickieTools.SPEEDPOWDERSHOVEL));
@ -239,6 +240,7 @@ public class RegistryManager {
registerItem(QuickieItems.BACKPACK_ORANGE, "backpack_orange");
registerItem(QuickieItems.BACKPACK_PURPLE, "backpack_purple");
registerItem(QuickieItems.BACKPACK_LIGHTBLUE, "backpack_lightblue");
registerItem(QuickieItems.STUB, "stub");
ComposterBlock.ITEM_TO_LEVEL_INCREASE_CHANCE.put(QuickieItems.COTTONSEED, 0.5f);
ComposterBlock.ITEM_TO_LEVEL_INCREASE_CHANCE.put(QuickieItems.COTTON, 0.75f);

View File

@ -31,4 +31,5 @@ public class QuickieItems {
public static final ItemCarrotstack CARROTSTACK = new ItemCarrotstack();
public static final ItemCotton COTTON = new ItemCotton();
public static final ItemCottonseed COTTONSEED = new ItemCottonseed();
public static final ItemStub STUB = new ItemStub();
}

View File

@ -32,6 +32,7 @@
"item.quickiefabric.carrotstack": "Karottenbündel",
"item.quickiefabric.cotton": "Baumwolle",
"item.quickiefabric.cottonseed": "Baumwollsaat",
"item.quickiefabric.stub": "Stummel",
"block.quickiefabric.orenethersulphor": "Nether-Schwefel",
"block.quickiefabric.oresalpeter": "Salpetererz",
"block.quickiefabric.oresandsalpeter": "Salpetergestein",

View File

@ -32,6 +32,7 @@
"item.quickiefabric.carrotstack": "a bundle of carrots",
"item.quickiefabric.cotton": "cotton",
"item.quickiefabric.cottonseed": "cotton seed",
"item.quickiefabric.stub": "stub",
"block.quickiefabric.orenethersulphor": "nether sulfur",
"block.quickiefabric.oresalpeter": "salpeter ore",
"block.quickiefabric.oresandsalpeter": "salpeter stone",

View File

@ -1,7 +1,7 @@
{
"type": "minecraft:campfire_cooking",
"ingredient": {
"item": "minecraft:stick"
"item": "quickiefabric:stub"
},
"result": "minecraft:torch",
"experience": 0,