added copper powder and its oxidized version with its items

This commit is contained in:
Jottyfan
2025-12-26 18:16:20 +01:00
parent 1856271617
commit b0ceac38cb
27 changed files with 162 additions and 1 deletions

View File

@@ -31,8 +31,12 @@ public class QuicklyItems {
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 OXIDIZEDCOPPERPOWDER = registerItem("oxidizedcopperpowder");
public static final Item COPPERSTRING = registerItem("copperstring");
public static final Item COPPERPOWDER = registerItem("copperpowder");
public static final Item COPPERSTUB = registerItem("copperstub");
public static final Item COPPERSTICK = registerItem("copperstick");
public static final Item ARMOR_TURQUOISE_BOOTS = registerItem("turquoise_boots", ArmorType.BOOTS);
public static final Item ARMOR_TURQUOISE_HELMET = registerItem("turquoise_helmet", ArmorType.HELMET);
@@ -75,6 +79,11 @@ public class QuicklyItems {
item.accept(CANOLABOTTLESTACK);
item.accept(RAWTURQUOISE);
item.accept(TURQUOISEINGOT);
item.accept(COPPERPOWDER);
item.accept(OXIDIZEDCOPPERPOWDER);
item.accept(COPPERSTRING);
item.accept(COPPERSTICK);
item.accept(COPPERSTUB);
item.accept(ARMOR_TURQUOISE_HELMET);
item.accept(ARMOR_TURQUOISE_CHESTPLATE);