added stub
This commit is contained in:
parent
4d66c701d8
commit
856ab79543
@ -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
|
||||
|
||||
|
@ -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);
|
||||
|
@ -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();
|
||||
}
|
||||
|
@ -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",
|
||||
|
@ -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",
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"type": "minecraft:campfire_cooking",
|
||||
"ingredient": {
|
||||
"item": "minecraft:stick"
|
||||
"item": "quickiefabric:stub"
|
||||
},
|
||||
"result": "minecraft:torch",
|
||||
"experience": 0,
|
||||
|
Loading…
x
Reference in New Issue
Block a user