zh_cn:tutorial:armor
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
zh_cn:tutorial:armor [2021/07/25 01:14] – created solidblock | zh_cn:tutorial:armor [2024/08/23 13:24] (current) – solidblock | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ~~REDIRECT> | ||
+ | :!: 本页已过时,请看上面的 Fabric Docs 教程。 | ||
====== 添加盔甲 ====== | ====== 添加盔甲 ====== | ||
==== 介绍 ==== | ==== 介绍 ==== | ||
- | 盔甲是比一般的方块或者物品更复杂一点的实现,但是只要了解了,实现还是很简单的。如需添加盔甲,需要先做一个CustomArmorMaterial类,然后注册物品。无门还需要看看如何为盔甲提供材质。There' | + | 盔甲是比一般的方块或者物品更复杂一点的实现,但是只要了解了,实现还是很简单的。如需添加盔甲,需要先实现 |
- | 本文档的一个例子可以在[[https:// | + | 本文档的一个例子可以在[[https:// |
==== 创建盔甲材料类 ==== | ==== 创建盔甲材料类 ==== | ||
- | 新的盔甲需要和一个新的名称(以及额外的一些内容,例如盔甲点和耐久度)一起设置,我们需要为我们的CustomArmorMaterial创建一个新的类。 | + | 新的盔甲需要和一个新的名称(以及额外的一些内容,例如盔甲点和耐久度)一起设置,我们需要为我们的 CustomArmorMaterial 创建一个新的类。 |
- | 本类实现ArmorMaterial,并以指定值为盔甲点(称为PROTECTION_VALUES)开始。所有这些参数都会充分利用 @Override。 | + | 本类实现 |
<code java [enable_line_numbers=" | <code java [enable_line_numbers=" | ||
Line 18: | Line 20: | ||
private static final int[] PROTECTION_VALUES = new int[] {A, B, C, D}; | private static final int[] PROTECTION_VALUES = new int[] {A, B, C, D}; | ||
- | // 其中A是头盔,B是胸甲,C是护腿,D是靴子。 | + | // 其中A是头盔,B是护腿,C是胸甲,D是靴子。 |
// 例如,皮革使用{1, | // 例如,皮革使用{1, | ||
} | } | ||
Line 25: | Line 27: | ||
接下来的变量如下定义(无需担心名称,下面你会看到如何实现): | 接下来的变量如下定义(无需担心名称,下面你会看到如何实现): | ||
- | - getDurability: how many hits can armor take before breaking. Uses the int we wrote on ' | + | - <yarn method_7696> |
- | - getProtectionAmount: | + | **计算你的盔甲在损坏之前能承受多少次打击,利用的是你在'BASE_DURABILITY'里所写的int值。皮革是5,钻石33,下届合金的是37。** |
- | - getEnchantability: | + | |
- | - SoundEvent getEquipSound: | + | |
- | - Ingredient getRepairIngredient: | + | |
- | - String getName: what the parent item of the armor is. In Diamond armor, it'd be " | + | |
- | - getToughness: | + | |
- | 在1.16引入的新值 | + | |
- | | + | **调用以获取我们之前定义的'PROTECTION_VALUES'.** |
+ | - <yarn method_7699>: | ||
+ | **获取关于这件盔甲能够在一本附魔书中被附魔到多高等级、多少种类的附魔** | ||
+ | |||
+ | - <yarn class_3414 method_7698>: | ||
+ | **在原版盔甲中,这个标准是''< | ||
+ | |||
+ | - <yarn class_1856 method_7695>: | ||
+ | **获取我们应该在铁砧中用什么来修复这件盔甲,材料可以是原版的,也可以是你自己的模组中的物品** | ||
+ | |||
+ | - String <yarn method_7694>: | ||
+ | - <yarn method_7700>: | ||
+ | **这是第二个保护数值,表示装甲在面对高伤害攻击时更耐用。数值为' | ||
+ | 在1.16引入的新值 | ||
+ | - <yarn method_24355>: | ||
+ | **将这个值保留为0。如果你想实现它,写上' | ||
接下来所有的参数都会写成 X 或者 A、B、C、D。加上这些参数之后,效果应该如下: | 接下来所有的参数都会写成 X 或者 A、B、C、D。加上这些参数之后,效果应该如下: | ||
- | <code java [enable_line_numbers=" | + | <yarncode |
- | public class CustomArmorMaterial implements | + | public class CustomArmorMaterial implements |
private static final int[] BASE_DURABILITY = new int[] {13, 15, 16, 11}; | private static final int[] BASE_DURABILITY = new int[] {13, 15, 16, 11}; | ||
private static final int[] PROTECTION_VALUES = new int[] {A, B, C, D}; | private static final int[] PROTECTION_VALUES = new int[] {A, B, C, D}; | ||
@Override | @Override | ||
- | public int getDurability(EquipmentSlot | + | public int method_7696(class_1304 |
- | return BASE_DURABILITY[slot.getEntitySlotId()] * X; | + | return BASE_DURABILITY[slot.method_5927()] * X; |
} | } | ||
@Override | @Override | ||
- | public int getProtectionAmount(EquipmentSlot | + | public int method_7697(class_1304 |
- | return PROTECTION_VALUES[slot.getEntitySlotId()]; | + | return PROTECTION_VALUES[slot.method_5927()]; |
} | } | ||
@Override | @Override | ||
- | public int getEnchantability() { | + | public int method_7699() { |
return X; | return X; | ||
} | } | ||
@Override | @Override | ||
- | public | + | public |
- | return | + | return |
} | } | ||
@Override | @Override | ||
- | public | + | public |
- | return | + | return |
} | } | ||
@Override | @Override | ||
- | public String | + | public String |
+ | // Must be all lowercase | ||
return " | return " | ||
} | } | ||
@Override | @Override | ||
- | public float getToughness() { | + | public float method_7700() { |
return X.0F; | return X.0F; | ||
} | } | ||
@Override | @Override | ||
- | public float getKnockbackResistance() { | + | public float method_24355() { |
return 0.XF; | return 0.XF; | ||
} | } | ||
} | } | ||
- | </code> | + | </yarncode> |
- | + | 注意你有盔甲材料类的基础了,所以在新的类中注册你的盔甲物品,即 RegisterItems。 | |
- | 注意你有盔甲材料类的基础了,所以在新的类中注册你的盔甲物品,即RegisterItems。 | + | |
==== 创建盔甲物品 ==== | ==== 创建盔甲物品 ==== | ||
- | 我们准备创建一个叫做RegisterItems的新的类以实现新的盔甲物件。这也会是注册工具的地方,如果你准备制作像锭这样的新物品(我们简单称为Custom_Material)。这一步同时还会将这些物品放在创造模式物品栏中,如果需要也可以删除这一部分。 | + | 我们准备创建一个叫做 RegisterItems 的新的类以实现新的盔甲物件。这也会是注册工具的地方,如果你准备制作像锭这样的新物品(我们简单称为 Custom_Material)。 |
- | 物品分组的语法为 // | + | <yarncode |
- | + | ||
- | <code java [enable_line_numbers=" | + | |
public class RegisterItems { | public class RegisterItems { | ||
- | public static final ArmorMaterial | + | public static final class_1741 |
- | public static final Item CUSTOM_MATERIAL = new CustomMaterialItem(new | + | public static final class_1792 |
// 如果创建了新的材料,则你需要注意这里。 | // 如果创建了新的材料,则你需要注意这里。 | ||
- | public static final Item CUSTOM_MATERIAL_HELMET = new ArmorItem(CUSTOM_ARMOR_MATERIAL, | + | public static final class_1792 |
- | public static final Item CUSTOM_MATERIAL_CHESTPLATE = new ArmorItem(CUSTOM_ARMOR_MATERIAL, | + | public static final class_1792 |
- | public static final Item CUSTOM_MATERIAL_LEGGINGS = new ArmorItem(CUSTOM_ARMOR_MATERIAL, | + | public static final class_1792 |
- | public static final Item CUSTOM_MATERIAL_BOOTS = new ArmorItem(CUSTOM_ARMOR_MATERIAL, | + | public static final class_1792 |
} | } | ||
- | </code> | + | </yarncode> |
- | 现在物品创建好了,将其注册并给予适当的名称,你的第一个参数是名字空间,也就是你的模组ID,第二个是你需要给予你的物品的名称。 | + | 现在物品创建好了,将其注册并给予适当的名称,你的第一个参数是名字空间,也就是你的模组 ID,第二个是你需要给予你的物品的名称。 |
我们会在最后一个ArmorItem的下面写这些。 | 我们会在最后一个ArmorItem的下面写这些。 | ||
- | <code java [enable_line_numbers=" | + | <yarncode |
public static void register() { | public static void register() { | ||
- | Registry.register(Registry.ITEM, new Identifier("examplemod", " | + | class_2378.method_10230(class_7923.field_41178, new class_2960("tutorial", " |
- | Registry.register(Registry.ITEM, new Identifier("examplemod", " | + | |
- | Registry.register(Registry.ITEM, new Identifier("examplemod", " | + | |
- | Registry.register(Registry.ITEM, new Identifier("examplemod", " | + | |
- | Registry.register(Registry.ITEM, new Identifier("examplemod", " | + | |
} | } | ||
- | </code> | + | </yarncode> |
- | 你的盔甲物品已完成。现在我们在主类中调用Registry。 | + | 你的盔甲物品已完成。现在我们在主类中调用 Registry。 |
- | <code java [enable_line_numbers=" | + | <yarncode |
public static final ItemGroup EXAMPLE_MOD_GROUP = FabricItemGroupBuilder.create( | public static final ItemGroup EXAMPLE_MOD_GROUP = FabricItemGroupBuilder.create( | ||
new Identifier(" | new Identifier(" | ||
Line 135: | Line 145: | ||
RegisterItems.register(); | RegisterItems.register(); | ||
} | } | ||
- | </code> | + | </yarncode> |
- | 好了!你的盔甲现在应该存在于游戏中,虽然还没有材质,但是已经可以通过/ | + | 好了!你的盔甲现在应该存在于游戏中,虽然还没有纹理,但是已经可以通过 /give 来获得了。 |
- | 现在分配材质。 | + | 现在分配纹理。 |
- | + | ==== 提供纹理 | |
- | ==== 提供材质 | + | |
假定你已经: | 假定你已经: | ||
- | * 有了每一个盔甲物品的材质(x_helmet.png、x_chestplate.png等) | + | * 有了每一个盔甲物品的纹理(x_helmet.png、x_chestplate.png等) |
- | * 有了穿着的每个盔甲的材质(x_layer_1.png和x_layer_2.png) | + | * 有了穿着的每个盔甲的纹理(x_layer_1.png和x_layer_2.png) |
将其分配到每一个盔甲物品。 | 将其分配到每一个盔甲物品。 | ||
Line 153: | Line 162: | ||
下列过程对于所有盔甲物品都是一样的,只需要修改我们使用的部分。这里以头盔为例。 | 下列过程对于所有盔甲物品都是一样的,只需要修改我们使用的部分。这里以头盔为例。 | ||
- | <code JSON resources/ | + | <code JSON resources/ |
{ | { | ||
" | " | ||
" | " | ||
- | " | + | " |
} | } | ||
} | } | ||
Line 164: | Line 173: | ||
重复上述过程,完成其他物品。 | 重复上述过程,完成其他物品。 | ||
- | 要给予穿着的盔甲的材质,只需要将X_layer_1.png和X_layer_2.png(其中X是你在你的盔甲材料类中选择的参数)放到' | + | 要给予穿着的盔甲的纹理,只需要将X_layer_1.png和X_layer_2.png(其中X是你在你的盔甲材料类中重载的getName方法的返回值)放到 ' |
Line 170: | Line 179: | ||
做完上述步骤,你应该会有一套完整的盔甲! | 做完上述步骤,你应该会有一套完整的盔甲! | ||
- | ==== 添加击退保护 ==== | ||
- | |||
- | And here comes the so very cursed! | ||
- | |||
- | Mojang decided that they were not only going to hardcode getKnockbackResistance, | ||
- | |||
- | To get around this, we're gonna make a mixin that goes into ArmorItem. If this is your first time, [[tutorial: | ||
- | |||
- | We'll make a class called ArmorItemMixin, | ||
- | |||
- | <code java [enable_line_numbers:" | ||
- | @Mixin (ArmorItem.class) | ||
- | public abstract class ArmorItemMixin { | ||
- | |||
- | } | ||
- | </ | ||
- | |||
- | Now we have to make a @Shadow to modify knockbackResistance, | ||
- | |||
- | <code java [enable_line_numbers:" | ||
- | @Mixin (ArmorItem.class) | ||
- | public abstract class ArmorItemMixin { | ||
- | @Shadow @Final private static UUID[] MODIFIERS; | ||
- | @Shadow @Final @Mutable private Multimap< | ||
- | @Shadow @Final protected float knockbackResistance; | ||
- | } | ||
- | </ | ||
- | |||
- | Next we @Inject our GENERIC_KNOCKBACK_RESISTANCE into the ArmorMaterial constructor. | ||
- | |||
- | <code java [enable_line_numbers:" | ||
- | @Mixin (ArmorItem.class) | ||
- | public abstract class ArmorItemMixin { | ||
- | |||
- | @Shadow @Final private static UUID[] MODIFIERS; | ||
- | @Shadow @Final @Mutable private Multimap< | ||
- | @Shadow @Final protected float knockbackResistance; | ||
- | | ||
- | @Inject(method = "< | ||
- | private void constructor(ArmorMaterial material, EquipmentSlot slot, Item.Settings settings, CallbackInfo ci) { | ||
- | UUID uUID = MODIFIERS[slot.getEntitySlotId()]; | ||
- | |||
- | if (material == RegisterItems.customArmorMaterial) { | ||
- | ImmutableMultimap.Builder< | ||
- | |||
- | this.attributeModifiers.forEach(builder:: | ||
- | |||
- | builder.put( | ||
- | EntityAttributes.GENERIC_KNOCKBACK_RESISTANCE, | ||
- | new EntityAttributeModifier(uUID, | ||
- | "Armor knockback resistance", | ||
- | this.knockbackResistance, | ||
- | EntityAttributeModifier.Operation.ADDITION | ||
- | ) | ||
- | ); | ||
- | |||
- | this.attributeModifiers = builder.build(); | ||
- | } | ||
- | } | ||
- | | ||
- | } | ||
- | </ | ||
- | |||
- | Now your armor has the knockback resistance value you assigned to it back on CustomArmorMaterial. |
zh_cn/tutorial/armor.1627175694.txt.gz · Last modified: 2021/07/25 01:14 by solidblock