Skip to content

Commit

Permalink
split categories + fuel buff
Browse files Browse the repository at this point in the history
  • Loading branch information
tiagodefendi committed Nov 17, 2024
1 parent 18c652f commit 10d36cc
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/defendi/crazyideas/item/ModItems.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class ModItems {
public static final RegistryObject<Item> ANGEL_BLADE = ITEMS.register(
"angel_blade",
() -> new AngelBladeItem(
ModToolTiers.HOLY_METAL,
ModToolTiers.ANGEL_TOOL,
new Item.Properties()
.attributes(SwordItem.createAttributes(
ModToolTiers.HOLY_METAL,
Expand Down Expand Up @@ -69,7 +69,7 @@ public class ModItems {
"hell_fuel",
() -> new FuelItem(
new Item.Properties(),
4800
25600
)
);

Expand Down
16 changes: 13 additions & 3 deletions src/main/java/com/defendi/crazyideas/item/tool/ModToolTiers.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,20 @@

public class ModToolTiers {
public static final Tier HOLY_METAL = new ForgeTier(
4000,
8,
11f,
35,
ModTags.Blocks.NEED_HOLY_METAL_TOOL,
() -> Ingredient.of(ModItems.HOLY_METAL.get()),
ModTags.Blocks.INCORRECT_FOR_HOLY_METAL_TOOL
);

public static final Tier ANGEL_TOOL = new ForgeTier(
-1,
4,
6f,
30,
10,
16f,
45,
ModTags.Blocks.NEED_HOLY_METAL_TOOL,
() -> Ingredient.of(ModItems.HOLY_METAL.get()),
ModTags.Blocks.INCORRECT_FOR_HOLY_METAL_TOOL
Expand Down

0 comments on commit 10d36cc

Please sign in to comment.