方块组件
跳转到导航
跳转到搜索
方块组件是基岩版我的世界数据驱动附加包中应用于方块的一些组件。
minecraft:breathability
minecraft:collision_box
minecraft:crafting_table
minecraft:destructible_by_explosion
minecraft:destructible_by_explosion 用以设置方块的爆炸抗性,值类型可以是布尔值或JSON对象:
"minecraft:destructible_by_explosion": true
// 或:
"minecraft:destructible_by_explosion": {
"explosion_resistance": 100
}
当使用JSON对象时,对象中可用字段仅有 explosion_resistance 用以设定爆炸抗性值,而使用布尔值时,设为false将会使其无法被爆炸破坏,设为true时则爆炸抗性为0,而默认值正是true。
minecraft:destructible_by_mining
minecraft:destructible_by_mining 用以设置方块的挖掘时间,值类型可以是布尔值或JSON对象:
"minecraft:destructible_by_explosion": true
// 或:
"minecraft:destructible_by_explosion": {
"seconds_to_destroy": 2
}
当使用JSON对象时,对象中可用字段仅有 seconds_to_destroy 用以设定挖掘时间,单位是秒;而使用布尔值时,设为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"
minecraft:map_color
minecraft:map_color 用以设置方块在地图中显示的颜色,值类型可以是字符串或JSON数组:
"minecraft:map_color": "#001122"
// 或:
"minecraft:map_color": [
0, // 红色值(R)
17, // 绿色值(G)
34 // 蓝色值(B)
]
当使用字符串时,值是以"#"开头的十六进制色值,而使用数组时,RGB值分别是第1、2、3个元素。