added carrot stack
This commit is contained in:
@@ -46,8 +46,8 @@ public class QuicklyItems {
|
|||||||
public static final Item MAGNIFIER = registerItem("magnifier");
|
public static final Item MAGNIFIER = registerItem("magnifier");
|
||||||
public static final Item SALPETER = registerItem("salpeter");
|
public static final Item SALPETER = registerItem("salpeter");
|
||||||
public static final Item SULFOR = registerItem("sulfor");
|
public static final Item SULFOR = registerItem("sulfor");
|
||||||
|
public static final Item CARROTSTACK = registerItem("carrotstack");
|
||||||
|
|
||||||
// TODO: carrot stack
|
|
||||||
// TODO: tools
|
// TODO: tools
|
||||||
|
|
||||||
public static final Item ARMOR_TURQUOISE_BOOTS = registerItem("turquoise_boots", ArmorType.BOOTS);
|
public static final Item ARMOR_TURQUOISE_BOOTS = registerItem("turquoise_boots", ArmorType.BOOTS);
|
||||||
@@ -85,6 +85,7 @@ public class QuicklyItems {
|
|||||||
item.accept(COTTON);
|
item.accept(COTTON);
|
||||||
item.accept(COTTONSEED);
|
item.accept(COTTONSEED);
|
||||||
item.accept(ROTTENFLESHSTRIPES);
|
item.accept(ROTTENFLESHSTRIPES);
|
||||||
|
item.accept(CARROTSTACK);
|
||||||
item.accept(CANOLA);
|
item.accept(CANOLA);
|
||||||
item.accept(CANOLASEED);
|
item.accept(CANOLASEED);
|
||||||
item.accept(CANOLABOTTLE);
|
item.accept(CANOLABOTTLE);
|
||||||
|
|||||||
6
src/main/resources/assets/quickly/items/carrotstack.json
Normal file
6
src/main/resources/assets/quickly/items/carrotstack.json
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"model": {
|
||||||
|
"type": "minecraft:model",
|
||||||
|
"model": "quickly:item/carrotstack"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -14,6 +14,7 @@
|
|||||||
"item.quickly.canolabottle": "Rapsöl",
|
"item.quickly.canolabottle": "Rapsöl",
|
||||||
"item.quickly.canolabottlestack": "Rapsölsammlung",
|
"item.quickly.canolabottlestack": "Rapsölsammlung",
|
||||||
"item.quickly.canolaseed": "Rapssaat",
|
"item.quickly.canolaseed": "Rapssaat",
|
||||||
|
"item.quickly.carrotstack": "Karottenbündel",
|
||||||
"item.quickly.copperpowder": "Kupferpulver",
|
"item.quickly.copperpowder": "Kupferpulver",
|
||||||
"item.quickly.copperstick": "Kupferstock",
|
"item.quickly.copperstick": "Kupferstock",
|
||||||
"item.quickly.copperstring": "Kupferband",
|
"item.quickly.copperstring": "Kupferband",
|
||||||
|
|||||||
@@ -14,6 +14,7 @@
|
|||||||
"item.quickly.canolabottle": "canola oil",
|
"item.quickly.canolabottle": "canola oil",
|
||||||
"item.quickly.canolabottlestack": "canola oil collection",
|
"item.quickly.canolabottlestack": "canola oil collection",
|
||||||
"item.quickly.canolaseed": "canola seed",
|
"item.quickly.canolaseed": "canola seed",
|
||||||
|
"item.quickly.carrotstack": "carrot bundle",
|
||||||
"item.quickly.copperpowder": "copper powder",
|
"item.quickly.copperpowder": "copper powder",
|
||||||
"item.quickly.copperstick": "copper stick",
|
"item.quickly.copperstick": "copper stick",
|
||||||
"item.quickly.copperstring": "copper string",
|
"item.quickly.copperstring": "copper string",
|
||||||
|
|||||||
@@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"parent": "item/generated",
|
||||||
|
"textures": {
|
||||||
|
"layer0": "quickly:item/carrotstack"
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
src/main/resources/assets/quickly/textures/item/carrotstack.png
Normal file
BIN
src/main/resources/assets/quickly/textures/item/carrotstack.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 604 B |
@@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"type": "crafting_shaped",
|
||||||
|
"pattern": [
|
||||||
|
"cc",
|
||||||
|
"cc"
|
||||||
|
],
|
||||||
|
"key": {
|
||||||
|
"c": "minecraft:carrot"
|
||||||
|
},
|
||||||
|
"result": {
|
||||||
|
"id": "quickly:carrotstack"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"type": "minecraft:crafting_shapeless",
|
||||||
|
"ingredients": [
|
||||||
|
"quickly:carrotstack"
|
||||||
|
],
|
||||||
|
"result": {
|
||||||
|
"id": "minecraft:carrot",
|
||||||
|
"count": 4
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user