added canola flasks

This commit is contained in:
Jottyfan
2025-12-26 17:46:22 +01:00
parent 3f7eaf48e3
commit 1856271617
12 changed files with 72 additions and 2 deletions

View File

@@ -29,6 +29,8 @@ public class QuicklyItems {
public static final Item CANOLA = registerItem("canola"); public static final Item CANOLA = registerItem("canola");
public static final Item CANOLAPLANT = registerItem("canolaplant"); public static final Item CANOLAPLANT = registerItem("canolaplant");
public static final Item CANOLASEED = registerItem("canolaseed", properties -> new Plant(properties, "blockcanolaplant")); public static final Item CANOLASEED = registerItem("canolaseed", properties -> new Plant(properties, "blockcanolaplant"));
public static final Item CANOLABOTTLE = registerItem("canolabottle");
public static final Item CANOLABOTTLESTACK = registerItem("canolabottlestack");
public static final Item ROTTENFLESHSTRIPES = registerItem("rotten_flesh_stripes"); public static final Item ROTTENFLESHSTRIPES = registerItem("rotten_flesh_stripes");
@@ -64,11 +66,15 @@ public class QuicklyItems {
public static void registerModItems() { public static void registerModItems() {
ItemGroupEvents.modifyEntriesEvent(CreativeModeTabs.TOOLS_AND_UTILITIES).register(item -> { ItemGroupEvents.modifyEntriesEvent(CreativeModeTabs.TOOLS_AND_UTILITIES).register(item -> {
item.accept(STUB); item.accept(STUB);
item.accept(RAWTURQUOISE);
item.accept(TURQUOISEINGOT);
item.accept(COTTON); item.accept(COTTON);
item.accept(COTTONSEED); item.accept(COTTONSEED);
item.accept(ROTTENFLESHSTRIPES); item.accept(ROTTENFLESHSTRIPES);
item.accept(CANOLA);
item.accept(CANOLASEED);
item.accept(CANOLABOTTLE);
item.accept(CANOLABOTTLESTACK);
item.accept(RAWTURQUOISE);
item.accept(TURQUOISEINGOT);
item.accept(ARMOR_TURQUOISE_HELMET); item.accept(ARMOR_TURQUOISE_HELMET);
item.accept(ARMOR_TURQUOISE_CHESTPLATE); item.accept(ARMOR_TURQUOISE_CHESTPLATE);

View File

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

View File

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

View File

@@ -3,6 +3,8 @@
"item.quickly.blockcottonplant": "Baumwollpflanze", "item.quickly.blockcottonplant": "Baumwollpflanze",
"item.quickly.blockturquoise": "Türkisblock", "item.quickly.blockturquoise": "Türkisblock",
"item.quickly.canola": "Raps", "item.quickly.canola": "Raps",
"item.quickly.canolabottle": "Rapsöl",
"item.quickly.canolabottlestack": "Rapsölsammlung",
"item.quickly.canolaseed": "Rapssaat", "item.quickly.canolaseed": "Rapssaat",
"item.quickly.cotton": "Baumwolle", "item.quickly.cotton": "Baumwolle",
"item.quickly.cottonseed": "Baumwollsaat", "item.quickly.cottonseed": "Baumwollsaat",

View File

@@ -3,6 +3,8 @@
"item.quickly.blockcottonplant": "cotton plant", "item.quickly.blockcottonplant": "cotton plant",
"item.quickly.blockturquoise": "block of turquoise", "item.quickly.blockturquoise": "block of turquoise",
"item.quickly.canola": "canola", "item.quickly.canola": "canola",
"item.quickly.canolabottle": "canola oil",
"item.quickly.canolabottlestack": "canola oil collection",
"item.quickly.canolaseed": "canola seed", "item.quickly.canolaseed": "canola seed",
"item.quickly.cotton": "cotton", "item.quickly.cotton": "cotton",
"item.quickly.cottonseed": "cotton seed", "item.quickly.cottonseed": "cotton seed",

View File

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

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

View File

@@ -0,0 +1,15 @@
{
"type": "crafting_shaped",
"pattern": [
"ccc",
"ccc",
"ccc"
],
"key": {
"c":"quickly:canolabottle"
},
"result": {
"id": "quickly:canolabottlestack",
"count": 1
}
}

View File

@@ -0,0 +1,11 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
"minecraft:glass_bottle",
"quickly:canola"
],
"result": {
"id": "quickly:canolabottle",
"count": 1
}
}

View File

@@ -0,0 +1,10 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
"quickly:canolabottlestack"
],
"result": {
"id": "quickly:canolabottle",
"count": 9
}
}