Skip to content

Commit

Permalink
ブロック破壊処理つくった
Browse files Browse the repository at this point in the history
  • Loading branch information
Chuzume committed Jun 26, 2023
1 parent 4e51f58 commit 3bdc421
Showing 1 changed file with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 3bdc421

Please sign in to comment.