diff --git a/Asset/data/asset/functions/mob/0331.blazing_inferno/tick/skill/dash_punch/break_block.mcfunction b/Asset/data/asset/functions/mob/0331.blazing_inferno/tick/skill/dash_punch/break_block.mcfunction new file mode 100644 index 0000000000..f57752fdfc --- /dev/null +++ b/Asset/data/asset/functions/mob/0331.blazing_inferno/tick/skill/dash_punch/break_block.mcfunction @@ -0,0 +1,18 @@ +#> asset:mob/0331.blazing_inferno/tick/skill/dash_punch/break_block +# +# 壁を壊す +# +# @within function asset:mob/0331.blazing_inferno/tick/skill/dash_punch/explosion + +# + execute positioned ^ ^ ^ unless block ~ ~ ~ #lib:unbreakable run setblock ~ ~ ~ air destroy + execute positioned ^1 ^ ^ unless block ~ ~ ~ #lib:unbreakable run setblock ~ ~ ~ air destroy + execute positioned ^-1 ^ ^ unless block ~ ~ ~ #lib:unbreakable run setblock ~ ~ ~ air destroy + + execute positioned ^ ^1 ^ unless block ~ ~ ~ #lib:unbreakable run setblock ~ ~ ~ air destroy + execute positioned ^1 ^1 ^ unless block ~ ~ ~ #lib:unbreakable run setblock ~ ~ ~ air destroy + execute positioned ^-1 ^1 ^ unless block ~ ~ ~ #lib:unbreakable run setblock ~ ~ ~ air destroy + + execute positioned ^ ^-1 ^ unless block ~ ~ ~ #lib:unbreakable run setblock ~ ~ ~ air destroy + execute positioned ^1 ^-1 ^ unless block ~ ~ ~ #lib:unbreakable run setblock ~ ~ ~ air destroy + execute positioned ^-1 ^-1 ^ unless block ~ ~ ~ #lib:unbreakable run setblock ~ ~ ~ air destroy \ No newline at end of file