Whistling Petals
作者:rebot | 分类:模组
Minecraft 版本: 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21 1.21.1 1.21.2 1.21.3 1.21.4 1.21.5 1.21.6 1.21.7 1.21.8 1.21.9 1.21.10 1.21.11
平台: fabric
标签: game-mechanics utility
Default effect:


Configuration files:
- Path: config\whistling_petals.json
- op permission Thermal heavy load command: /whistling_petals reload
Arrow Destruction (canDestroy)
- Arrows can destroy hit or pass blocks.
- Uses the same block syntax as Minecraft's /setblock command, supporting block states.
Example:
"canDestroy": [
"minecraft:spore_blossom",
"minecraft:mangrove_propagule[hanging=true,age=4]"
]
- 1: destroys default state spore_blossom.
- 2: destroys mangrove_propagules that are hanging and have age=4
Arrow Plucking (canPluck)
- When an arrow passes through a block, it can pluck fruits or crops and generate drops.
- Format: Define one or more plucking rules for each block.
Example:
"canPluck": {
"minecraft:cave_vines": [
{
"state": "berries",
"pluck": true,
"after": false,
"drops": [
{ "item": "minecraft:glow_berries" },
{ "item": "minecraft:glow_berries", "min": 1, "max": 2 }
]
}
]
}
- state: The block state name to check
- pluck: The value that triggers plucking (when the state equals this value)
- after: The value to set the state to after plucking
- drops: List of items to drop, supports random count (min/max). Defaults to 1 if omitted
Tip:
- Press F3 + I to copy the /setblock command for the block you're looking at.
- The command includes the block's registry name and full state — you can directly copy the block part from it to use in your configuration.
请登录后举报
暂无评论,抢个沙发吧~