added potato stack

This commit is contained in:
Jottyfan
2026-02-22 19:13:15 +01:00
parent a71c23cf28
commit 5bc14bb222
10 changed files with 41 additions and 1 deletions

View File

@@ -46,6 +46,7 @@ public class QuicklyItems {
public static final Item SALPETER = registerItem(ID.SALPETER);
public static final Item SULFOR = registerItem(ID.SULFOR);
public static final Item CARROTSTACK = registerItem(ID.CARROTSTACK);
public static final Item POTATOSTACK = registerItem(ID.POTATOSTACK);
// TODO: rename tools to speedaxe and quickaxe instead of the powder version
@@ -125,6 +126,7 @@ public class QuicklyItems {
set.add(SALPETER);
set.add(SULFOR);
set.add(CARROTSTACK);
set.add(POTATOSTACK);
set.add(SPEEDAXE);
set.add(SPEEDHOE);
set.add(SPEEDPICKAXE);

View File

@@ -38,6 +38,7 @@ public class ID {
public static final Identifier SALPETER = Identifier.fromNamespaceAndPath(Quickly.MOD_ID, "salpeter");
public static final Identifier SULFOR = Identifier.fromNamespaceAndPath(Quickly.MOD_ID, "sulfor");
public static final Identifier CARROTSTACK = Identifier.fromNamespaceAndPath(Quickly.MOD_ID, "carrotstack");
public static final Identifier POTATOSTACK = Identifier.fromNamespaceAndPath(Quickly.MOD_ID, "potatostack");
public static final Identifier SPEEDPOWDERAXE = Identifier.fromNamespaceAndPath(Quickly.MOD_ID, "speedpowderaxe");
public static final Identifier SPEEDPOWDERHOE = Identifier.fromNamespaceAndPath(Quickly.MOD_ID, "speedpowderhoe");
public static final Identifier SPEEDPOWDERPICKAXE = Identifier.fromNamespaceAndPath(Quickly.MOD_ID,