方块组件:修订间差异
跳转到导航
跳转到搜索
删除的内容 添加的内容
Created page with "'''方块组件'''是基岩版我的世界数据驱动附加包中应用于方块的一些组件。 == minecraft:breathability == == minecraft:collision_box == == minecraft:crafting_table == == minecraft:destructible_by_explosion == == minecraft:destructible_by_mining == == minecraft:display_name == == minecraft:flammable == == minecraft:friction == == minecraft:geometry == == minecraft:light_dampening == == minecraft:light_emission == == minecraft:loot =..." |
小无编辑摘要 |
||
第8行: | 第8行: | ||
== minecraft:destructible_by_explosion == |
== minecraft:destructible_by_explosion == |
||
minecraft:destructible_by_explosion 用以设置方块的[[爆炸抗性_(我的世界)|爆炸抗性]],值类型可以是布尔值或JSON对象;当使用JSON对象时,对象中可用字段仅有 explosion_resistance 用以设定爆炸抗性值: |
|||
<syntaxhighlight lang="json"> |
|||
"minecraft:destructible_by_explosion": { |
|||
"explosion_resistance": 100 |
|||
} |
|||
</syntaxhighlight> |
|||
当使用布尔值时,设为false将会使其无法被爆炸破坏,设为true时则爆炸抗性为0,而默认值正是true。 |
|||
== minecraft:destructible_by_mining == |
== minecraft:destructible_by_mining == |
||
minecraft:destructible_by_mining 用以设置方块的挖掘时间,单位是秒,值类型可以是布尔值或JSON对象;当使用JSON对象时,对象中可用字段仅有 seconds_to_destroy 用以设定挖掘时间: |
|||
<syntaxhighlight lang="json"> |
|||
"minecraft:destructible_by_explosion": { |
|||
"seconds_to_destroy": 2 |
|||
} |
|||
</syntaxhighlight> |
|||
当使用布尔值时,设为false将会使其无法被挖掘,设为true时则挖掘时间为0,而默认值正是true。 |
|||
== minecraft:display_name == |
== minecraft:display_name == |
||
第24行: | 第42行: | ||
== minecraft:loot == |
== minecraft:loot == |
||
minecraft:loot 用以设置方块的[[战利品表_(我的世界)|战利品表]]。 |
minecraft:loot 用以设置方块的[[战利品表_(我的世界)|战利品表]],值类型是字符串,使用相对路径,起始点为行为包的根目录。 |
||
<syntaxhighlight lang="json"> |
|||
"minecraft:loot": "loot_tables/blocks/example_block.json" |
|||
</syntaxhighlight> |
|||
== minecraft:map_color == |
== minecraft:map_color == |
2023年11月22日 (三) 00:30的版本
方块组件是基岩版我的世界数据驱动附加包中应用于方块的一些组件。
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"