方块组件
方块组件是基岩版我的世界数据驱动附加包中应用于方块的一些组件。
minecraft:breathability
minecraft:collision_box
minecraft:crafting_table
minecraft:destructible_by_explosion
minecraft:destructible_by_explosion 用以设置方块的爆炸抗性,值类型可以是布尔值或JSON对象;当使用JSON对象时,对象中可用字段仅有 explosion_resistance 用以设定爆炸抗性值:
"minecraft:destructible_by_explosion": {
"explosion_resistance": 100
}
当使用布尔值时,设为false将会使其无法被爆炸破坏,设为true时则爆炸抗性为0,而默认值正是true。
minecraft:destructible_by_mining
minecraft:destructible_by_mining 用以设置方块的挖掘时间,单位是秒,值类型可以是布尔值或JSON对象;当使用JSON对象时,对象中可用字段仅有 seconds_to_destroy 用以设定挖掘时间:
"minecraft:destructible_by_explosion": {
"seconds_to_destroy": 2
}
当使用布尔值时,设为false将会使其无法被挖掘,设为true时则挖掘时间为0,而默认值正是true。
minecraft:display_name
minecraft:flammable
minecraft:friction
minecraft:geometry
minecraft:light_dampening
minecraft:light_emission
minecraft:loot
minecraft:loot 用以设置方块的战利品表,值类型是字符串,使用相对路径,起始点为行为包的根目录。
"minecraft:loot": "loot_tables/blocks/example_block.json"