added brown and white backpack
This commit is contained in:
parent
372ded9a20
commit
f4155073c5
@ -8,7 +8,7 @@ org.gradle.jvmargs=-Xmx1G
|
||||
loader_version=0.8.8+build.202
|
||||
|
||||
# Mod Properties
|
||||
mod_version = 1.16.1.9
|
||||
mod_version = 1.16.1.10
|
||||
maven_group = de.jottyfan.minecraft
|
||||
archives_base_name = quickiefabric
|
||||
|
||||
|
@ -58,7 +58,8 @@ public class RegistryManager {
|
||||
stacks.add(new ItemStack(QuickieItems.SPEEDPOWDER));
|
||||
stacks.add(new ItemStack(QuickieItems.LEVELUP));
|
||||
stacks.add(new ItemStack(QuickieItems.PENCIL));
|
||||
stacks.add(new ItemStack(QuickieItems.BACKPACK));
|
||||
stacks.add(new ItemStack(QuickieItems.BACKPACK_BROWN));
|
||||
stacks.add(new ItemStack(QuickieItems.BACKPACK_WHITE));
|
||||
stacks.add(new ItemStack(QuickieTools.SPEEDPOWDERAXE));
|
||||
stacks.add(new ItemStack(QuickieTools.SPEEDPOWDERPICKAXE));
|
||||
stacks.add(new ItemStack(QuickieTools.SPEEDPOWDERSHOVEL));
|
||||
@ -109,7 +110,8 @@ public class RegistryManager {
|
||||
registerItem(QuickieItems.PENCIL, "pencil");
|
||||
registerItem(QuickieItems.SALPETER, "salpeter");
|
||||
registerItem(QuickieItems.SULPHOR, "sulphor");
|
||||
registerItem(QuickieItems.BACKPACK, "backpack");
|
||||
registerItem(QuickieItems.BACKPACK_BROWN, "backpack_brown");
|
||||
registerItem(QuickieItems.BACKPACK_WHITE, "backpack_white");
|
||||
}
|
||||
|
||||
public static final void registerTools() {
|
||||
|
@ -11,5 +11,6 @@ public class QuickieItems {
|
||||
public static final ItemPencil PENCIL = new ItemPencil();
|
||||
public static final ItemSalpeter SALPETER = new ItemSalpeter();
|
||||
public static final ItemSulphor SULPHOR = new ItemSulphor();
|
||||
public static final ItemBackpack BACKPACK = new ItemBackpack();
|
||||
public static final ItemBackpack BACKPACK_BROWN = new ItemBackpack();
|
||||
public static final ItemBackpack BACKPACK_WHITE = new ItemBackpack();
|
||||
}
|
||||
|
@ -11,7 +11,8 @@
|
||||
"item.quickiefabric.construction2": "fertiger Bauplan",
|
||||
"item.quickiefabric.pencil": "Bleistift",
|
||||
"item.quickiefabric.levelup": "Aufwerter",
|
||||
"item.quickiefabric.backpack": "Rucksack",
|
||||
"item.quickiefabric.backpack_brown": "brauner Rucksack",
|
||||
"item.quickiefabric.backpack_white": "weißer Rucksack",
|
||||
"block.quickiefabric.orenethersulphor": "Nether-Schwefel",
|
||||
"block.quickiefabric.oresalpeter": "Salpetererz",
|
||||
"block.quickiefabric.oresandsalpeter": "Salpetergestein",
|
||||
|
@ -11,7 +11,8 @@
|
||||
"item.quickiefabric.construction2": "finished building plan",
|
||||
"item.quickiefabric.pencil": "pencil",
|
||||
"item.quickiefabric.levelup": "level up",
|
||||
"item.quickiefabric.backpack": "backpack",
|
||||
"item.quickiefabric.backpack_brown": "brown backpack",
|
||||
"item.quickiefabric.backpack_white": "white backpack",
|
||||
"block.quickiefabric.orenethersulphor": "nether sulfur",
|
||||
"block.quickiefabric.oresalpeter": "salpeter ore",
|
||||
"block.quickiefabric.oresandsalpeter": "salpeter stone",
|
||||
|
@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "quickiefabric:item/backpack_white"
|
||||
}
|
||||
}
|
@ -0,0 +1,22 @@
|
||||
{
|
||||
"type": "crafting_shaped",
|
||||
"pattern": [
|
||||
"wlw",
|
||||
"lsl",
|
||||
"wlw"
|
||||
],
|
||||
"key": {
|
||||
"s": {
|
||||
"item": "minecraft:string"
|
||||
},
|
||||
"l": {
|
||||
"item": "minecraft:leather"
|
||||
},
|
||||
"w": {
|
||||
"item": "minecraft:brown_wool"
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"item": "quickiefabric:backpack_brown"
|
||||
}
|
||||
}
|
@ -17,6 +17,6 @@
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"item": "quickiefabric:backpack"
|
||||
"item": "quickiefabric:backpack_white"
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user