added potato stack
This commit is contained in:
@@ -46,6 +46,7 @@ public class QuicklyItems {
|
||||
public static final Item SALPETER = registerItem(ID.SALPETER);
|
||||
public static final Item SULFOR = registerItem(ID.SULFOR);
|
||||
public static final Item CARROTSTACK = registerItem(ID.CARROTSTACK);
|
||||
public static final Item POTATOSTACK = registerItem(ID.POTATOSTACK);
|
||||
|
||||
// TODO: rename tools to speedaxe and quickaxe instead of the powder version
|
||||
|
||||
@@ -125,6 +126,7 @@ public class QuicklyItems {
|
||||
set.add(SALPETER);
|
||||
set.add(SULFOR);
|
||||
set.add(CARROTSTACK);
|
||||
set.add(POTATOSTACK);
|
||||
set.add(SPEEDAXE);
|
||||
set.add(SPEEDHOE);
|
||||
set.add(SPEEDPICKAXE);
|
||||
|
||||
@@ -38,6 +38,7 @@ public class ID {
|
||||
public static final Identifier SALPETER = Identifier.fromNamespaceAndPath(Quickly.MOD_ID, "salpeter");
|
||||
public static final Identifier SULFOR = Identifier.fromNamespaceAndPath(Quickly.MOD_ID, "sulfor");
|
||||
public static final Identifier CARROTSTACK = Identifier.fromNamespaceAndPath(Quickly.MOD_ID, "carrotstack");
|
||||
public static final Identifier POTATOSTACK = Identifier.fromNamespaceAndPath(Quickly.MOD_ID, "potatostack");
|
||||
public static final Identifier SPEEDPOWDERAXE = Identifier.fromNamespaceAndPath(Quickly.MOD_ID, "speedpowderaxe");
|
||||
public static final Identifier SPEEDPOWDERHOE = Identifier.fromNamespaceAndPath(Quickly.MOD_ID, "speedpowderhoe");
|
||||
public static final Identifier SPEEDPOWDERPICKAXE = Identifier.fromNamespaceAndPath(Quickly.MOD_ID,
|
||||
|
||||
6
src/main/resources/assets/quickly/items/potatostack.json
Normal file
6
src/main/resources/assets/quickly/items/potatostack.json
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"model": {
|
||||
"type": "minecraft:model",
|
||||
"model": "quickly:item/potatostack"
|
||||
}
|
||||
}
|
||||
@@ -38,6 +38,7 @@
|
||||
"item.quickly.oresulfor": "Schwefelgestein",
|
||||
"item.quickly.oreturquoise": "Türkiserz",
|
||||
"item.quickly.oxidizedcopperpowder": "oxidiertes Kupferpulver",
|
||||
"item.quickly.potatostack": "Kartoffelbündel",
|
||||
"item.quickly.quickieingot": "Eilpulverbarren",
|
||||
"item.quickly.quickiepowder": "Eilpulver",
|
||||
"item.quickly.quickiepowderaxe": "Eilaxt",
|
||||
|
||||
@@ -38,6 +38,7 @@
|
||||
"item.quickly.oresulfor": "sulfor stone",
|
||||
"item.quickly.oreturquoise": "turquoise ore",
|
||||
"item.quickly.oxidizedcopperpowder": "oxidized copper powder",
|
||||
"item.quickly.potatostack": "potato bundle",
|
||||
"item.quickly.quickieingot": "quickie powder ingot",
|
||||
"item.quickly.quickiepowder": "quickie powder",
|
||||
"item.quickly.quickiepowderaxe": "hurry axe",
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "quickly:item/potatostack"
|
||||
}
|
||||
}
|
||||
BIN
src/main/resources/assets/quickly/textures/item/potatostack.png
Normal file
BIN
src/main/resources/assets/quickly/textures/item/potatostack.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 642 B |
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"type": "crafting_shaped",
|
||||
"pattern": [
|
||||
"cc",
|
||||
"cc"
|
||||
],
|
||||
"key": {
|
||||
"c": "minecraft:potato"
|
||||
},
|
||||
"result": {
|
||||
"id": "quickly:potatostack"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"ingredients": [
|
||||
"quickly:potatostack"
|
||||
],
|
||||
"result": {
|
||||
"id": "minecraft:potato",
|
||||
"count": 4
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user