tutorial:tools
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
tutorial:tools [2022/12/16 00:32] – [Creating Tools] no item groups now solidblock | tutorial:tools [2024/08/23 13:25] (current) – [Adding Tools] solidblock | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Adding Tools ====== | ====== Adding Tools ====== | ||
+ | :!: This tutorial may be **outdated** as since 1.20.5, item components are used. For latest tutorial see [[https:// | ||
- | ==== Creating a Tool Material ==== | + | ===== Creating a Tool Material |
Tools require a ''< | Tools require a ''< | ||
Line 17: | Line 18: | ||
< | < | ||
public class PotatoToolMaterial implements class_1832 { | public class PotatoToolMaterial implements class_1832 { | ||
- | | ||
[...] | [...] | ||
} | } | ||
Line 27: | Line 27: | ||
''< | ''< | ||
< | < | ||
- | @Override | + | |
- | public int method_8025() { | + | public int method_8025() { |
- | return 500; | + | return 500; |
- | } | + | } |
</ | </ | ||
Line 36: | Line 36: | ||
''< | ''< | ||
< | < | ||
- | @Override | + | |
- | public float method_8027() { | + | public float method_8027() { |
- | return 5.0F; | + | return 5.0F; |
- | } | + | } |
</ | </ | ||
Line 45: | Line 45: | ||
''< | ''< | ||
< | < | ||
- | @Override | + | |
- | public float method_8028() { | + | public float method_8028() { |
- | return 3.0F; | + | return 3.0F; |
- | } | + | } |
</ | </ | ||
Line 54: | Line 54: | ||
''< | ''< | ||
< | < | ||
- | @Override | + | |
- | public int method_8024() { | + | public int method_8024() { |
- | return 2; | + | return 2; |
- | } | + | } |
</ | </ | ||
Line 63: | Line 63: | ||
''< | ''< | ||
< | < | ||
- | @Override | + | |
- | public int method_8026() { | + | public int method_8026() { |
- | return 15; | + | return 15; |
- | } | + | } |
</ | </ | ||
Line 72: | Line 72: | ||
''< | ''< | ||
< | < | ||
- | @Override | + | |
- | public class_1856 method_8023() { | + | public class_1856 method_8023() { |
- | return class_1856.method_8091(class_1802.field_8567); | + | return class_1856.method_8091(class_1802.field_8567); |
- | } | + | } |
</ | </ | ||
- | ''< | + | ''< |
< | < | ||
public class PotatoToolMaterial implements class_1832 { | public class PotatoToolMaterial implements class_1832 { | ||
- | |||
public static final PotatoToolMaterial INSTANCE = new PotatoToolMaterial(); | public static final PotatoToolMaterial INSTANCE = new PotatoToolMaterial(); | ||
| | ||
Line 88: | Line 87: | ||
</ | </ | ||
- | '' | + | '' |
- | ==== Creating Tools ==== | + | ===== Creating Tools Items ===== |
- | All base tool classes (''< | + | **In newer versions, all base tool class constructors are public and can be used directly to register the item.** This constructor lets you specify attack damage and attack speed of the tool. Remember they should be registered |
- | < | + | < |
- | public static class_1831 | + | public final class TutorialItems { |
- | public static class_1831 | + | |
+ | public static class_1831 POTATO_AXE = new AxeItem(PotatoToolMaterial.INSTANCE, | ||
+ | public static class_1831 | ||
+ | } | ||
</ | </ | ||
+ | |||
+ | ===== Creating Tool Subclasses ===== | ||
+ | |||
+ | **This section is not necessary in the current version of Fabric.** This is a good way to implement special attributes or behaviors for your tool, however. | ||
+ | |||
+ | In older versions, all base tool classes (''< | ||
''< | ''< | ||
Line 110: | Line 118: | ||
Using the public classes: | Using the public classes: | ||
< | < | ||
- | public static class_1831 POTATO_PICKAXE = new CustomPickaxeItem(PotatoToolMaterial.INSTANCE, | + | |
- | public static class_1831 POTATO_AXE = new CustomAxeItem(PotatoToolMaterial.INSTANCE, | + | public static class_1831 POTATO_AXE = new CustomAxeItem(PotatoToolMaterial.INSTANCE, |
- | public static class_1831 POTATO_HOE = new CustomHoeItem(PotatoToolMaterial.INSTANCE, | + | public static class_1831 POTATO_HOE = new CustomHoeItem(PotatoToolMaterial.INSTANCE, |
</ | </ | ||
- | If you want to add any special attributes or behaviors to your tool, create a subclass that extends one of the base tool classes, and override any required methods. | + | ===== Making your tool work with non-vanilla blocks |
- | + | ||
- | ==== Registering Tools ==== | + | |
- | + | ||
- | For a recap on registering items, read through the item tutorial [[tutorial: | + | |
- | + | ||
- | ==== Making your tool work with non-vanilla blocks ==== | + | |
- | Visit the last section of https:// | + | See [[mining_levels]]. |
tutorial/tools.1671150771.txt.gz · Last modified: 2022/12/16 00:32 by solidblock