added rotten flesh stripes

This commit is contained in:
Jörg Henke 2020-10-09 18:22:30 +02:00
parent c82577587d
commit a848bdb857
10 changed files with 44 additions and 1 deletions

View File

@ -8,7 +8,7 @@ org.gradle.jvmargs=-Xmx1G
loader_version=0.9.3+build.207 loader_version=0.9.3+build.207
# Mod Properties # Mod Properties
mod_version = 1.16.3.2 mod_version = 1.16.3.3
maven_group = de.jottyfan.minecraft maven_group = de.jottyfan.minecraft
archives_base_name = quickiefabric archives_base_name = quickiefabric

View File

@ -67,6 +67,7 @@ public class RegistryManager {
stacks.add(new ItemStack(QuickieItems.SPEEDPOWDER)); stacks.add(new ItemStack(QuickieItems.SPEEDPOWDER));
stacks.add(new ItemStack(QuickieItems.LEVELUP)); stacks.add(new ItemStack(QuickieItems.LEVELUP));
stacks.add(new ItemStack(QuickieItems.PENCIL)); stacks.add(new ItemStack(QuickieItems.PENCIL));
stacks.add(new ItemStack(QuickieItems.ROTTEN_FLESH_STRIPES));
stacks.add(new ItemStack(QuickieItems.BACKPACK_BROWN)); stacks.add(new ItemStack(QuickieItems.BACKPACK_BROWN));
stacks.add(new ItemStack(QuickieItems.BACKPACK_WHITE)); stacks.add(new ItemStack(QuickieItems.BACKPACK_WHITE));
stacks.add(new ItemStack(QuickieItems.BACKPACK_BLACK)); stacks.add(new ItemStack(QuickieItems.BACKPACK_BLACK));
@ -129,6 +130,7 @@ public class RegistryManager {
registerItem(QuickieItems.PENCIL, "pencil"); registerItem(QuickieItems.PENCIL, "pencil");
registerItem(QuickieItems.SALPETER, "salpeter"); registerItem(QuickieItems.SALPETER, "salpeter");
registerItem(QuickieItems.SULPHOR, "sulphor"); registerItem(QuickieItems.SULPHOR, "sulphor");
registerItem(QuickieItems.ROTTEN_FLESH_STRIPES, "rotten_flesh_stripes");
registerItem(QuickieItems.BACKPACK_BROWN, "backpack_brown"); registerItem(QuickieItems.BACKPACK_BROWN, "backpack_brown");
registerItem(QuickieItems.BACKPACK_WHITE, "backpack_white"); registerItem(QuickieItems.BACKPACK_WHITE, "backpack_white");
registerItem(QuickieItems.BACKPACK_BLACK, "backpack_black"); registerItem(QuickieItems.BACKPACK_BLACK, "backpack_black");

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 ItemRottenFleshStripes extends Item {
public ItemRottenFleshStripes() {
super(new Item.Settings().group(RegistryManager.QUICKIEFABRIC_GROUP).maxCount(99));
}
}

View File

@ -20,4 +20,5 @@ public class QuickieItems {
public static final ItemBackpack BACKPACK_PINK = new ItemBackpack(); public static final ItemBackpack BACKPACK_PINK = new ItemBackpack();
public static final ItemBackpack BACKPACK_RED = new ItemBackpack(); public static final ItemBackpack BACKPACK_RED = new ItemBackpack();
public static final ItemBackpack BACKPACK_YELLOW = new ItemBackpack(); public static final ItemBackpack BACKPACK_YELLOW = new ItemBackpack();
public static final ItemRottenFleshStripes ROTTEN_FLESH_STRIPES = new ItemRottenFleshStripes();
} }

View File

@ -20,6 +20,7 @@
"item.quickiefabric.backpack_red": "roter Rucksack", "item.quickiefabric.backpack_red": "roter Rucksack",
"item.quickiefabric.backpack_white": "weißer Rucksack", "item.quickiefabric.backpack_white": "weißer Rucksack",
"item.quickiefabric.backpack_yellow": "gelber Rucksack", "item.quickiefabric.backpack_yellow": "gelber Rucksack",
"item.quickiefabric.rotten_flesh_stripes": "geschnittenes Gammelfleisch",
"block.quickiefabric.orenethersulphor": "Nether-Schwefel", "block.quickiefabric.orenethersulphor": "Nether-Schwefel",
"block.quickiefabric.oresalpeter": "Salpetererz", "block.quickiefabric.oresalpeter": "Salpetererz",
"block.quickiefabric.oresandsalpeter": "Salpetergestein", "block.quickiefabric.oresandsalpeter": "Salpetergestein",

View File

@ -20,6 +20,7 @@
"item.quickiefabric.backpack_red": "red backpack", "item.quickiefabric.backpack_red": "red backpack",
"item.quickiefabric.backpack_white": "white backpack", "item.quickiefabric.backpack_white": "white backpack",
"item.quickiefabric.backpack_yellow": "yellow backpack", "item.quickiefabric.backpack_yellow": "yellow backpack",
"item.quickiefabric.rotten_flesh_stripes": "rotten flesh stripes",
"block.quickiefabric.orenethersulphor": "nether sulfur", "block.quickiefabric.orenethersulphor": "nether sulfur",
"block.quickiefabric.oresalpeter": "salpeter ore", "block.quickiefabric.oresalpeter": "salpeter ore",
"block.quickiefabric.oresandsalpeter": "salpeter stone", "block.quickiefabric.oresandsalpeter": "salpeter stone",

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,8 @@
{
"type": "minecraft:stonecutting",
"ingredient": {
"item": "minecraft:rotten_flesh"
},
"result": "quickiefabric:rotten_flesh_stripes",
"count": 2
}

View File

@ -0,0 +1,9 @@
{
"type": "minecraft:smoking",
"ingredient": {
"item": "quickiefabric:rotten_flesh_stripes"
},
"result": "minecraft:leather",
"experience": 0,
"cookingtime": 100
}