added carrot stack

This commit is contained in:
Jottyfan
2026-01-01 22:18:32 +01:00
parent 0c43c116ee
commit 410f2fed12
8 changed files with 39 additions and 1 deletions

View File

@@ -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);

View File

@@ -0,0 +1,6 @@
{
"model": {
"type": "minecraft:model",
"model": "quickly:item/carrotstack"
}
}

View File

@@ -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",

View File

@@ -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",

View File

@@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "quickly:item/carrotstack"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 604 B

View File

@@ -0,0 +1,13 @@
{
"type": "crafting_shaped",
"pattern": [
"cc",
"cc"
],
"key": {
"c": "minecraft:carrot"
},
"result": {
"id": "quickly:carrotstack"
}
}

View File

@@ -0,0 +1,10 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
"quickly:carrotstack"
],
"result": {
"id": "minecraft:carrot",
"count": 4
}
}