Set de armadura completo
Crea un set de armadura personalizado completo (casco, peto, pantalones y botas) con texturas propias.
Tipo de item: armadura Plugins: ItemsAdder, Nexo, Oraxen, CraftEngine Versión mínima de MC: 1.20+
ItemsAdder
info:
namespace: my_namespace
items:
ruby_helmet:
display_name: "&cRuby Helmet"
resource:
material: LEATHER_HELMET
generate: true
textures:
- my_namespace/ruby_helmet
specific_properties:
armor:
slot: head
color: "#e74c3c"
custom_armor: ruby_armor
ruby_chestplate:
display_name: "&cRuby Chestplate"
resource:
material: LEATHER_CHESTPLATE
generate: true
textures:
- my_namespace/ruby_chestplate
specific_properties:
armor:
slot: chest
color: "#e74c3c"
custom_armor: ruby_armor
ruby_leggings:
display_name: "&cRuby Leggings"
resource:
material: LEATHER_LEGGINGS
generate: true
textures:
- my_namespace/ruby_leggings
specific_properties:
armor:
slot: legs
color: "#e74c3c"
custom_armor: ruby_armor
ruby_boots:
display_name: "&cRuby Boots"
resource:
material: LEATHER_BOOTS
generate: true
textures:
- my_namespace/ruby_boots
specific_properties:
armor:
slot: feet
color: "#e74c3c"
custom_armor: ruby_armorNexo
ruby_helmet:
itemname: "<red>Ruby Helmet"
material: LEATHER_HELMET
color: "#e74c3c"
Pack:
generate_model: true
Components:
equippable:
slot: head
model: my_namespace/ruby_armor
attribute_modifiers:
modifiers:
- type: armor
amount: 3.0
operation: add_value
slot: head
- type: armor_toughness
amount: 2.0
operation: add_value
slot: head
ruby_chestplate:
itemname: "<red>Ruby Chestplate"
material: LEATHER_CHESTPLATE
color: "#e74c3c"
Pack:
generate_model: true
Components:
equippable:
slot: chest
model: my_namespace/ruby_armor
attribute_modifiers:
modifiers:
- type: armor
amount: 8.0
operation: add_value
slot: chest
- type: armor_toughness
amount: 2.0
operation: add_value
slot: chest
ruby_leggings:
itemname: "<red>Ruby Leggings"
material: LEATHER_LEGGINGS
color: "#e74c3c"
Pack:
generate_model: true
Components:
equippable:
slot: legs
model: my_namespace/ruby_armor
attribute_modifiers:
modifiers:
- type: armor
amount: 6.0
operation: add_value
slot: legs
- type: armor_toughness
amount: 2.0
operation: add_value
slot: legs
ruby_boots:
itemname: "<red>Ruby Boots"
material: LEATHER_BOOTS
color: "#e74c3c"
Pack:
generate_model: true
Components:
equippable:
slot: feet
model: my_namespace/ruby_armor
attribute_modifiers:
modifiers:
- type: armor
amount: 3.0
operation: add_value
slot: feet
- type: armor_toughness
amount: 2.0
operation: add_value
slot: feetAssets necesarios
| Archivo | Dimensiones | Descripción |
|---|---|---|
ruby_helmet.png | 16x16 | Icono de inventario del casco |
ruby_chestplate.png | 16x16 | Icono de inventario del peto |
ruby_leggings.png | 16x16 | Icono de inventario de los pantalones |
ruby_boots.png | 16x16 | Icono de inventario de las botas |
ruby_armor_layer_1.png | 64x32 | Textura puesta (casco, peto y botas) |
ruby_armor_layer_2.png | 64x32 | Textura puesta (pantalones) |
Referencia de valores de armadura
Para que tengas una referencia, estos son los valores de las armaduras vanilla:
| Material | Casco | Peto | Pantalones | Botas | Dureza |
|---|---|---|---|---|---|
| Cuero | 1 | 3 | 2 | 1 | 0 |
| Hierro | 2 | 6 | 5 | 2 | 0 |
| Diamante | 3 | 8 | 6 | 3 | 2 |
| Netherita | 3 | 8 | 6 | 3 | 3 |
| Rubí (esta receta) | 3 | 8 | 6 | 3 | 2 |
Notas
- La propiedad
colortiñe la base de la armadura de cuero. Úsala junto acustom_armorpara sobrescribir la textura puesta - Las 4 piezas apuntan al mismo
custom_armor(o modelo de armadura) para que se vean como un set a juego al llevarlas - Para diseños de casco 3D, usa el tipo de item Helmet 3D en lugar de armadura normal
- El componente
equippable(Nexo y CraftEngine) está disponible en MC 1.21.1+ - Usa el formulario de armaduras del generador simple si prefieres una experiencia guiada y sin YAML