added pillow

This commit is contained in:
Jottyfan
2026-03-24 21:59:37 +01:00
parent 4dd604926e
commit 026e42ce0f
10 changed files with 47 additions and 2 deletions
+2 -2
View File
@@ -7,12 +7,12 @@ org.gradle.configuration-cache=false
# Fabric Properties # Fabric Properties
# check these on https://fabricmc.net/develop # check these on https://fabricmc.net/develop
minecraft_version=26.1-rc-3 minecraft_version=26.1
loader_version=0.18.4 loader_version=0.18.4
loom_version=1.15-SNAPSHOT loom_version=1.15-SNAPSHOT
# Mod Properties # Mod Properties
mod_version=26.1-rc-3 mod_version=26.1.0
maven_group=de.jottyfan.minecraft maven_group=de.jottyfan.minecraft
archives_base_name=quickly archives_base_name=quickly
@@ -27,6 +27,7 @@ public class QuicklyItems {
public static final Item COTTON = registerItem(ID.COTTON); public static final Item COTTON = registerItem(ID.COTTON);
public static final Item COTTONPLANT = registerItem(ID.COTTONPLANT); public static final Item COTTONPLANT = registerItem(ID.COTTONPLANT);
public static final Item COTTONSEED = registerItem(ID.COTTONSEED, QIP.of(ID.BLOCKCOTTONPLANT), Plant::new); public static final Item COTTONSEED = registerItem(ID.COTTONSEED, QIP.of(ID.BLOCKCOTTONPLANT), Plant::new);
public static final Item PILLOW = registerItem(ID.PILLOW);
public static final Item CANOLA = registerItem(ID.CANOLA); public static final Item CANOLA = registerItem(ID.CANOLA);
public static final Item CANOLAPLANT = registerItem(ID.CANOLAPLANT); public static final Item CANOLAPLANT = registerItem(ID.CANOLAPLANT);
public static final Item CANOLASEED = registerItem(ID.CANOLASEED, QIP.of(ID.BLOCKCANOLAPLANT), Plant::new); public static final Item CANOLASEED = registerItem(ID.CANOLASEED, QIP.of(ID.BLOCKCANOLAPLANT), Plant::new);
@@ -108,6 +109,7 @@ public class QuicklyItems {
set.add(TURQUOISEINGOT); set.add(TURQUOISEINGOT);
set.add(COTTON); set.add(COTTON);
set.add(COTTONSEED); set.add(COTTONSEED);
set.add(PILLOW);
set.add(CANOLA); set.add(CANOLA);
set.add(CANOLASEED); set.add(CANOLASEED);
set.add(CANOLABOTTLE); set.add(CANOLABOTTLE);
@@ -16,6 +16,7 @@ public class ID {
public static final Identifier COTTON = Identifier.fromNamespaceAndPath(Quickly.MOD_ID, "cotton"); public static final Identifier COTTON = Identifier.fromNamespaceAndPath(Quickly.MOD_ID, "cotton");
public static final Identifier COTTONPLANT = Identifier.fromNamespaceAndPath(Quickly.MOD_ID, "cottonplant"); public static final Identifier COTTONPLANT = Identifier.fromNamespaceAndPath(Quickly.MOD_ID, "cottonplant");
public static final Identifier COTTONSEED = Identifier.fromNamespaceAndPath(Quickly.MOD_ID, "cottonseed"); public static final Identifier COTTONSEED = Identifier.fromNamespaceAndPath(Quickly.MOD_ID, "cottonseed");
public static final Identifier PILLOW = Identifier.fromNamespaceAndPath(Quickly.MOD_ID, "pillow");
public static final Identifier CANOLA = Identifier.fromNamespaceAndPath(Quickly.MOD_ID, "canola"); public static final Identifier CANOLA = Identifier.fromNamespaceAndPath(Quickly.MOD_ID, "canola");
public static final Identifier CANOLAPLANT = Identifier.fromNamespaceAndPath(Quickly.MOD_ID, "canolaplant"); public static final Identifier CANOLAPLANT = Identifier.fromNamespaceAndPath(Quickly.MOD_ID, "canolaplant");
public static final Identifier CANOLASEED = Identifier.fromNamespaceAndPath(Quickly.MOD_ID, "canolaseed"); public static final Identifier CANOLASEED = Identifier.fromNamespaceAndPath(Quickly.MOD_ID, "canolaseed");
@@ -0,0 +1,6 @@
{
"model": {
"type": "minecraft:model",
"model": "quickly:item/pillow"
}
}
@@ -38,6 +38,7 @@
"item.quickly.oresulfor": "Schwefelgestein", "item.quickly.oresulfor": "Schwefelgestein",
"item.quickly.oreturquoise": "Türkiserz", "item.quickly.oreturquoise": "Türkiserz",
"item.quickly.oxidizedcopperpowder": "oxidiertes Kupferpulver", "item.quickly.oxidizedcopperpowder": "oxidiertes Kupferpulver",
"item.quickly.pillow": "Kissen",
"item.quickly.potatostack": "Kartoffelbündel", "item.quickly.potatostack": "Kartoffelbündel",
"item.quickly.quickieingot": "Eilpulverbarren", "item.quickly.quickieingot": "Eilpulverbarren",
"item.quickly.quickiepowder": "Eilpulver", "item.quickly.quickiepowder": "Eilpulver",
@@ -38,6 +38,7 @@
"item.quickly.oresulfor": "sulfor stone", "item.quickly.oresulfor": "sulfor stone",
"item.quickly.oreturquoise": "turquoise ore", "item.quickly.oreturquoise": "turquoise ore",
"item.quickly.oxidizedcopperpowder": "oxidized copper powder", "item.quickly.oxidizedcopperpowder": "oxidized copper powder",
"item.quickly.pillow": "pillow",
"item.quickly.potatostack": "potato bundle", "item.quickly.potatostack": "potato bundle",
"item.quickly.quickieingot": "quickie powder ingot", "item.quickly.quickieingot": "quickie powder ingot",
"item.quickly.quickiepowder": "quickie powder", "item.quickly.quickiepowder": "quickie powder",
@@ -0,0 +1,6 @@
{
"parent": "item/generated",
"textures": {
"layer0": "quickly:item/pillow"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 597 B

@@ -0,0 +1,15 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"ppp",
"www"
],
"key": {
"p": "quickly:pillow",
"w": "#minecraft:planks"
},
"result": {
"id": "minecraft:white_bed",
"count": 1
}
}
@@ -0,0 +1,13 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
"quickly:cotton",
"quickly:cotton",
"quickly:cotton",
"quickly:cotton"
],
"result": {
"id": "quickly:pillow",
"count": 1
}
}