zh_cn:tutorial:tools
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
zh_cn:tutorial:tools [2021/07/25 01:37] – [创建工具] solidblock | zh_cn:tutorial:tools [2024/08/23 13:26] (current) – [添加工具] solidblock | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== 添加工具 ====== | ====== 添加工具 ====== | ||
+ | :!: 本教程自 1.20.5 之后可能已经过时,因为使用了物品组件。最新教程可见 Fabric Docs 上的对应页面。 | ||
==== 创建工具材料 ==== | ==== 创建工具材料 ==== | ||
Line 95: | Line 95: | ||
<code java [enable_line_numbers=true]> | <code java [enable_line_numbers=true]> | ||
- | public static ToolItem POTATO_SHOVEL = new ShovelItem(PotatoToolMaterial.INSTANCE, | + | public static ToolItem POTATO_SHOVEL = new ShovelItem(PotatoToolMaterial.INSTANCE, |
- | public static ToolItem POTATO_SWORD = new SwordItem(PotatoToolMaterial.INSTANCE, | + | public static ToolItem POTATO_SWORD = new SwordItem(PotatoToolMaterial.INSTANCE, |
</ | </ | ||
Line 110: | Line 110: | ||
使用自定义的子类: | 使用自定义的子类: | ||
<code java> | <code java> | ||
- | public static ToolItem POTATO_PICKAXE = new CustomPickaxeItem(PotatoToolMaterial.INSTANCE, | + | public static ToolItem POTATO_PICKAXE = new CustomPickaxeItem(PotatoToolMaterial.INSTANCE, |
- | public static ToolItem POTATO_AXE = new CustomAxeItem(PotatoToolMaterial.INSTANCE, | + | public static ToolItem POTATO_AXE = new CustomAxeItem(PotatoToolMaterial.INSTANCE, |
- | public static ToolItem POTATO_HOE = new CustomHoeItem(PotatoToolMaterial.INSTANCE, | + | public static ToolItem POTATO_HOE = new CustomHoeItem(PotatoToolMaterial.INSTANCE, |
</ | </ | ||
zh_cn/tutorial/tools.1627177060.txt.gz · Last modified: 2021/07/25 01:37 by solidblock