added canola flasks
This commit is contained in:
@@ -29,6 +29,8 @@ public class QuicklyItems {
|
||||
public static final Item CANOLA = registerItem("canola");
|
||||
public static final Item CANOLAPLANT = registerItem("canolaplant");
|
||||
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");
|
||||
|
||||
@@ -64,11 +66,15 @@ public class QuicklyItems {
|
||||
public static void registerModItems() {
|
||||
ItemGroupEvents.modifyEntriesEvent(CreativeModeTabs.TOOLS_AND_UTILITIES).register(item -> {
|
||||
item.accept(STUB);
|
||||
item.accept(RAWTURQUOISE);
|
||||
item.accept(TURQUOISEINGOT);
|
||||
item.accept(COTTON);
|
||||
item.accept(COTTONSEED);
|
||||
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_CHESTPLATE);
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"model": {
|
||||
"type": "minecraft:model",
|
||||
"model": "quickly:item/canolabottle"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"model": {
|
||||
"type": "minecraft:model",
|
||||
"model": "quickly:item/canolabottlestack"
|
||||
}
|
||||
}
|
||||
@@ -3,6 +3,8 @@
|
||||
"item.quickly.blockcottonplant": "Baumwollpflanze",
|
||||
"item.quickly.blockturquoise": "Türkisblock",
|
||||
"item.quickly.canola": "Raps",
|
||||
"item.quickly.canolabottle": "Rapsöl",
|
||||
"item.quickly.canolabottlestack": "Rapsölsammlung",
|
||||
"item.quickly.canolaseed": "Rapssaat",
|
||||
"item.quickly.cotton": "Baumwolle",
|
||||
"item.quickly.cottonseed": "Baumwollsaat",
|
||||
|
||||
@@ -3,6 +3,8 @@
|
||||
"item.quickly.blockcottonplant": "cotton plant",
|
||||
"item.quickly.blockturquoise": "block of turquoise",
|
||||
"item.quickly.canola": "canola",
|
||||
"item.quickly.canolabottle": "canola oil",
|
||||
"item.quickly.canolabottlestack": "canola oil collection",
|
||||
"item.quickly.canolaseed": "canola seed",
|
||||
"item.quickly.cotton": "cotton",
|
||||
"item.quickly.cottonseed": "cotton seed",
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "quickly:item/canolabottle"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "quickly:item/canolabottlestack"
|
||||
}
|
||||
}
|
||||
BIN
src/main/resources/assets/quickly/textures/item/canolabottle.png
Normal file
BIN
src/main/resources/assets/quickly/textures/item/canolabottle.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.4 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 4.7 KiB |
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"type": "crafting_shaped",
|
||||
"pattern": [
|
||||
"ccc",
|
||||
"ccc",
|
||||
"ccc"
|
||||
],
|
||||
"key": {
|
||||
"c":"quickly:canolabottle"
|
||||
},
|
||||
"result": {
|
||||
"id": "quickly:canolabottlestack",
|
||||
"count": 1
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"ingredients": [
|
||||
"minecraft:glass_bottle",
|
||||
"quickly:canola"
|
||||
],
|
||||
"result": {
|
||||
"id": "quickly:canolabottle",
|
||||
"count": 1
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"ingredients": [
|
||||
"quickly:canolabottlestack"
|
||||
],
|
||||
"result": {
|
||||
"id": "quickly:canolabottle",
|
||||
"count": 9
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user