物品模板和子级物品
什么是物品模板?
什么是 variants(子级物品)?
示例配置
template_wood_park_bench:
template: true # <---- 在这里可以看到我将此项设置为 "template"
display_name: ""
lore:
- 'lore-decorative-item'
resource:
material: PAPER
generate: false
model_path: item/oak_wood_park_bench
behaviours:
furniture:
entity: armor_stand
small: true
solid: true
fixed_rotation: true
hitbox:
length: 1
width: 2
height: 1
width_offset: 0.5
placeable_on:
walls: false
ceiling: false
floor: true
furniture_sit:
sit_height: 0.5
sit_all_solid_blocks: true
oak_wood_park_bench:
variant_of: template_wood_park_bench # <-- 这里是指定我要继承的物品模板
display_name: "Oak wood Park Bench"
permission: oak_wood_park_bench
lore:
- 'lore-decorative-item'
resource:
material: PAPER
generate: false
model_path: item/oak_wood_park_bench
spruce_wood_park_bench:
variant_of: template_wood_park_bench # <-- 这里是指定我要继承的物品模板
display_name: "Spruce wood Park Bench"
permission: spruce_wood_park_bench
lore:
- 'lore-decorative-item'
resource:
material: PAPER
generate: false
model_path: item/spruce_wood_park_bench
birch_wood_park_bench:
variant_of: template_wood_park_bench # <-- 这里是指定我要继承的物品模板
display_name: "Birch wood Park Bench"
permission: birch_wood_park_bench
lore:
- 'lore-decorative-item'
resource:
material: PAPER
generate: false
model_path: item/birch_wood_park_bench最后更新于